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.1.0-beta.1 (Unreleased)
## 1.0.0-beta.1 (2023-11-30)

- Azure Resource Manager HybridNetwork client library for Java. This package contains Microsoft Azure SDK for HybridNetwork Management SDK. The definitions in this swagger specification will be used to manage the Hybrid Network resources. Package tag package-2023-10-01. 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 @@ -2,7 +2,7 @@

Azure Resource Manager HybridNetwork client library for Java.

This package contains Microsoft Azure SDK for HybridNetwork Management SDK. The definitions in this swagger specification will be used to manage the Hybrid Network resources. Package tag package-2023-09-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
This package contains Microsoft Azure SDK for HybridNetwork Management SDK. The definitions in this swagger specification will be used to manage the Hybrid Network resources. Package tag package-2023-10-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

## We'd love to hear your feedback

Expand Down Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-hybridnetwork</artifactId>
<version>1.0.0</version>
<version>1.1.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
190 changes: 95 additions & 95 deletions sdk/hybridnetwork/azure-resourcemanager-hybridnetwork/SAMPLE.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<packaging>jar</packaging>

<name>Microsoft Azure SDK for HybridNetwork Management</name>
<description>This package contains Microsoft Azure SDK for HybridNetwork Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The definitions in this swagger specification will be used to manage the Hybrid Network resources. Package tag package-2023-09-01.</description>
<description>This package contains Microsoft Azure SDK for HybridNetwork Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The definitions in this swagger specification will be used to manage the Hybrid Network resources. Package tag package-2023-10-01.</description>
<url>https://github.com/Azure/azure-sdk-for-java</url>

<licenses>
Expand All @@ -45,6 +45,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jacoco.min.linecoverage>0</jacoco.min.linecoverage>
<jacoco.min.branchcoverage>0</jacoco.min.branchcoverage>
<revapi.skip>true</revapi.skip>
</properties>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public HybridNetworkManager authenticate(TokenCredential credential, AzureProfil

StringBuilder userAgentBuilder = new StringBuilder();
userAgentBuilder.append("azsdk-java").append("-").append("com.azure.resourcemanager.hybridnetwork")
.append("/").append("1.0.0");
.append("/").append("1.0.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder.append(" (").append(Configuration.getGlobalConfiguration().get("java.version"))
.append("; ").append(Configuration.getGlobalConfiguration().get("os.name")).append("; ")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Mono<Response<ConfigurationGroupSchemaListResult>> listByPublisher(@HostParam("$

@Headers({ "Content-Type: application/json" })
@Delete("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HybridNetwork/publishers/{publisherName}/configurationGroupSchemas/{configurationGroupSchemaName}")
@ExpectedResponses({ 202, 204 })
@ExpectedResponses({ 200, 202, 204 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono<Response<Flux<ByteBuffer>>> delete(@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName, @PathParam("publisherName") String publisherName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public SiteNetworkServicesClient getSiteNetworkServices() {
this.defaultPollInterval = defaultPollInterval;
this.subscriptionId = subscriptionId;
this.endpoint = endpoint;
this.apiVersion = "2023-09-01";
this.apiVersion = "2023-10-01";
this.configurationGroupSchemas = new ConfigurationGroupSchemasClientImpl(this);
this.configurationGroupValues = new ConfigurationGroupValuesClientImpl(this);
this.networkFunctions = new NetworkFunctionsClientImpl(this);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public final class HelmInstallOptions {
* The helm deployment wait options
*/
@JsonProperty(value = "wait")
private String waitOption;
private String wait;

/*
* The helm deployment timeout options
Expand Down Expand Up @@ -57,22 +57,22 @@ public HelmInstallOptions withAtomic(String atomic) {
}

/**
* Get the waitOption property: The helm deployment wait options.
* Get the wait property: The helm deployment wait options.
*
* @return the waitOption value.
* @return the wait value.
*/
public String waitOption() {
return this.waitOption;
public String wait() {
return this.wait;
}

/**
* Set the waitOption property: The helm deployment wait options.
* Set the wait property: The helm deployment wait options.
*
* @param waitOption the waitOption value to set.
* @param wait the wait value to set.
* @return the HelmInstallOptions object itself.
*/
public HelmInstallOptions withWaitOption(String waitOption) {
this.waitOption = waitOption;
public HelmInstallOptions withWait(String wait) {
this.wait = wait;
return this;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public final class HelmUpgradeOptions {
* The helm deployment wait options
*/
@JsonProperty(value = "wait")
private String waitOption;
private String wait;

/*
* The helm deployment timeout options
Expand Down Expand Up @@ -57,22 +57,22 @@ public HelmUpgradeOptions withAtomic(String atomic) {
}

/**
* Get the waitOption property: The helm deployment wait options.
* Get the wait property: The helm deployment wait options.
*
* @return the waitOption value.
* @return the wait value.
*/
public String waitOption() {
return this.waitOption;
public String wait() {
return this.wait;
}

/**
* Set the waitOption property: The helm deployment wait options.
* Set the wait property: The helm deployment wait options.
*
* @param waitOption the waitOption value to set.
* @param wait the wait value to set.
* @return the HelmUpgradeOptions object itself.
*/
public HelmUpgradeOptions withWaitOption(String waitOption) {
this.waitOption = waitOption;
public HelmUpgradeOptions withWait(String wait) {
this.wait = wait;
return this;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public final class ArtifactManifestsCreateOrUpdateSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ArtifactManifestCreate.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ArtifactManifestsDeleteSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ArtifactManifestDelete.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ArtifactManifestsGetSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ArtifactManifestGet.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ArtifactManifestsListByArtifactStoreSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ArtifactManifestListByArtifactStore.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ArtifactManifestsListCredentialSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ArtifactManifestListCredential.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public final class ArtifactManifestsUpdateSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ArtifactManifestUpdateTags.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
public final class ArtifactManifestsUpdateStateSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ArtifactManifestUpdateState.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public final class ArtifactStoresCreateOrUpdateSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ArtifactStoreCreate.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ArtifactStoresDeleteSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ArtifactStoreDelete.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ArtifactStoresGetSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/ArtifactStoreGet.
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/ArtifactStoreGet.
* json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ArtifactStoresListByPublisherSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ArtifactStoresListByPublisherName.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public final class ArtifactStoresUpdateSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ArtifactStoreUpdateTags.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ComponentsGetSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/ComponentGet.json
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/ComponentGet.json
*/
/**
* Sample code: Get component resource.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ComponentsListByNetworkFunctionSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ComponentListByNetworkFunction.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
public final class ConfigurationGroupSchemasCreateOrUpdateSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupSchemaCreate.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ConfigurationGroupSchemasDeleteSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupSchemaDelete.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ConfigurationGroupSchemasGetSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupSchemaGet.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ConfigurationGroupSchemasListByPublisherSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupSchemaListByPublisherName.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public final class ConfigurationGroupSchemasUpdateSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupSchemaUpdateTags.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
public final class ConfigurationGroupSchemasUpdateStateSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupSchemaVersionUpdateState.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public final class ConfigurationGroupValuesCreateOrUpdateSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupValueCreate.json
*/
/**
Expand All @@ -37,7 +37,7 @@ public final class ConfigurationGroupValuesCreateOrUpdateSamples {

/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupValueFirstPartyCreate.json
*/
/**
Expand All @@ -59,7 +59,7 @@ public static void createOrUpdateFirstPartyConfigurationGroupValue(

/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupValueCreateSecret.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ConfigurationGroupValuesDeleteSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupValueDelete.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ConfigurationGroupValuesGetByResourceGroupSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupValueGet.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ConfigurationGroupValuesListByResourceGroupSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupValueListByResourceGroup.json
*/
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public final class ConfigurationGroupValuesListSamples {
/*
* x-ms-original-file:
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-09-01/examples/
* specification/hybridnetwork/resource-manager/Microsoft.HybridNetwork/stable/2023-10-01/examples/
* ConfigurationGroupValueListBySubscription.json
*/
/**
Expand Down
Loading