diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/CHANGELOG.md b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/CHANGELOG.md index 7be52e0e1186..b77794927102 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/CHANGELOG.md +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/CHANGELOG.md @@ -1,6 +1,8 @@ # Release History -## 1.1.0-beta.3 (Unreleased) +## 1.0.0-beta.1 (2022-08-04) + +- Azure Resource Manager IotDps client library for Java. This package contains Microsoft Azure SDK for IotDps Management SDK. API for using the Azure IoT Hub Device Provisioning Service features. Package tag package-2022-02. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt). ### Features Added diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/README.md b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/README.md index fe126747b2ff..c496c23fa27e 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/README.md +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/README.md @@ -32,7 +32,7 @@ Various documentation is available to help you get started com.azure.resourcemanager azure-resourcemanager-deviceprovisioningservices - 1.1.0-beta.2 + 1.1.0-beta.3 ``` [//]: # ({x-version-update-end}) diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/pom.xml b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/pom.xml index b689354b976b..aec5db9c37b3 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/pom.xml +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/pom.xml @@ -39,7 +39,6 @@ UTF-8 true - true diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/IotDpsManager.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/IotDpsManager.java index ef38a1884297..cc0c5aac2c70 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/IotDpsManager.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/IotDpsManager.java @@ -211,7 +211,7 @@ public IotDpsManager authenticate(TokenCredential credential, AzureProfile profi .append("-") .append("com.azure.resourcemanager.deviceprovisioningservices") .append("/") - .append("1.1.0-beta.2"); + .append("1.0.0-beta.1"); if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) { userAgentBuilder .append(" (") diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/DpsCertificatesClient.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/DpsCertificatesClient.java index ae35b989b065..79393db852fc 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/DpsCertificatesClient.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/DpsCertificatesClient.java @@ -55,7 +55,9 @@ Response getWithResponse( Context context); /** - * Add new certificate or update an existing certificate. + * Upload the certificate to the provisioning service. + * + *

Add new certificate or update an existing certificate. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName The name of the provisioning service. @@ -75,7 +77,9 @@ CertificateResponseInner createOrUpdate( CertificateResponseInner certificateDescription); /** - * Add new certificate or update an existing certificate. + * Upload the certificate to the provisioning service. + * + *

Add new certificate or update an existing certificate. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName The name of the provisioning service. @@ -100,7 +104,9 @@ Response createOrUpdateWithResponse( Context context); /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param ifMatch ETag of the certificate. @@ -116,7 +122,9 @@ Response createOrUpdateWithResponse( void delete(String resourceGroupName, String ifMatch, String provisioningServiceName, String certificateName); /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param ifMatch ETag of the certificate. @@ -244,8 +252,10 @@ Response generateVerificationCodeWithResponse( Context context); /** - * Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded - * certificate. + * Verify certificate's private key possession. + * + *

Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre + * uploaded certificate. * * @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to * access. @@ -268,8 +278,10 @@ CertificateResponseInner verifyCertificate( VerificationCodeRequest request); /** - * Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded - * certificate. + * Verify certificate's private key possession. + * + *

Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre + * uploaded certificate. * * @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to * access. diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/IotDpsResourcesClient.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/IotDpsResourcesClient.java index 6a0df9175123..e401a2bffdb2 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/IotDpsResourcesClient.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/IotDpsResourcesClient.java @@ -26,7 +26,9 @@ /** An instance of this class provides access to all the operations defined in IotDpsResourcesClient. */ public interface IotDpsResourcesClient { /** - * Get the metadata of the provisioning service without SAS keys. + * Get the non-security related metadata of the provisioning service. + * + *

Get the metadata of the provisioning service without SAS keys. * * @param resourceGroupName Resource group name. * @param provisioningServiceName Name of the provisioning service to retrieve. @@ -40,7 +42,9 @@ public interface IotDpsResourcesClient { ProvisioningServiceDescriptionInner getByResourceGroup(String resourceGroupName, String provisioningServiceName); /** - * Get the metadata of the provisioning service without SAS keys. + * Get the non-security related metadata of the provisioning service. + * + *

Get the metadata of the provisioning service without SAS keys. * * @param resourceGroupName Resource group name. * @param provisioningServiceName Name of the provisioning service to retrieve. @@ -56,9 +60,11 @@ Response getByResourceGroupWithResponse( String resourceGroupName, String provisioningServiceName, Context context); /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -77,9 +83,11 @@ Response getByResourceGroupWithResponse( ProvisioningServiceDescriptionInner iotDpsDescription); /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -100,9 +108,11 @@ Response getByResourceGroupWithResponse( Context context); /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -120,9 +130,11 @@ ProvisioningServiceDescriptionInner createOrUpdate( ProvisioningServiceDescriptionInner iotDpsDescription); /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -142,7 +154,9 @@ ProvisioningServiceDescriptionInner createOrUpdate( Context context); /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -157,7 +171,9 @@ SyncPoller, ProvisioningServiceD String resourceGroupName, String provisioningServiceName, TagsResource provisioningServiceTags); /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -176,7 +192,9 @@ SyncPoller, ProvisioningServiceD Context context); /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -191,7 +209,9 @@ ProvisioningServiceDescriptionInner update( String resourceGroupName, String provisioningServiceName, TagsResource provisioningServiceTags); /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -210,7 +230,9 @@ ProvisioningServiceDescriptionInner update( Context context); /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -224,7 +246,9 @@ ProvisioningServiceDescriptionInner update( SyncPoller, Void> beginDelete(String resourceGroupName, String provisioningServiceName); /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -240,7 +264,9 @@ SyncPoller, Void> beginDelete( String resourceGroupName, String provisioningServiceName, Context context); /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -253,7 +279,9 @@ SyncPoller, Void> beginDelete( void delete(String resourceGroupName, String provisioningServiceName); /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -267,7 +295,9 @@ SyncPoller, Void> beginDelete( void delete(String resourceGroupName, String provisioningServiceName, Context context); /** - * List all the provisioning services for a given subscription id. + * Get all the provisioning services in a subscription. + * + *

List all the provisioning services for a given subscription id. * * @throws com.azure.resourcemanager.deviceprovisioningservices.models.ErrorDetailsException thrown if the request * is rejected by server. @@ -278,7 +308,9 @@ SyncPoller, Void> beginDelete( PagedIterable list(); /** - * List all the provisioning services for a given subscription id. + * Get all the provisioning services in a subscription. + * + *

List all the provisioning services for a given subscription id. * * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -362,7 +394,9 @@ Response getOperationResultWithResponse( Context context); /** - * Gets the list of valid SKUs and tiers for a provisioning service. + * Get the list of valid SKUs for a provisioning service. + * + *

Gets the list of valid SKUs and tiers for a provisioning service. * * @param provisioningServiceName Name of provisioning service. * @param resourceGroupName Name of resource group. @@ -377,7 +411,9 @@ Response getOperationResultWithResponse( PagedIterable listValidSkus(String provisioningServiceName, String resourceGroupName); /** - * Gets the list of valid SKUs and tiers for a provisioning service. + * Get the list of valid SKUs for a provisioning service. + * + *

Gets the list of valid SKUs and tiers for a provisioning service. * * @param provisioningServiceName Name of provisioning service. * @param resourceGroupName Name of resource group. @@ -394,8 +430,10 @@ PagedIterable listValidSkus( String provisioningServiceName, String resourceGroupName, Context context); /** - * Check if a provisioning service name is available. This will validate if the name is syntactically valid and if - * the name is usable. + * Check if a provisioning service name is available. + * + *

Check if a provisioning service name is available. This will validate if the name is syntactically valid and + * if the name is usable. * * @param arguments Set the name parameter in the OperationInputs structure to the name of the provisioning service * to check. @@ -409,8 +447,10 @@ PagedIterable listValidSkus( NameAvailabilityInfoInner checkProvisioningServiceNameAvailability(OperationInputs arguments); /** - * Check if a provisioning service name is available. This will validate if the name is syntactically valid and if - * the name is usable. + * Check if a provisioning service name is available. + * + *

Check if a provisioning service name is available. This will validate if the name is syntactically valid and + * if the name is usable. * * @param arguments Set the name parameter in the OperationInputs structure to the name of the provisioning service * to check. @@ -426,7 +466,9 @@ Response checkProvisioningServiceNameAvailabilityWith OperationInputs arguments, Context context); /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @param provisioningServiceName The provisioning service name to get the shared access keys for. * @param resourceGroupName resource group name. @@ -441,7 +483,9 @@ PagedIterable listKeys( String provisioningServiceName, String resourceGroupName); /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @param provisioningServiceName The provisioning service name to get the shared access keys for. * @param resourceGroupName resource group name. @@ -457,7 +501,9 @@ PagedIterable listKeys( String provisioningServiceName, String resourceGroupName, Context context); /** - * List primary and secondary keys for a specific key name. + * Get a shared access policy by name from a provisioning service. + * + *

List primary and secondary keys for a specific key name. * * @param provisioningServiceName Name of the provisioning service. * @param keyName Logical key name to get key-values for. @@ -473,7 +519,9 @@ SharedAccessSignatureAuthorizationRuleInner listKeysForKeyName( String provisioningServiceName, String keyName, String resourceGroupName); /** - * List primary and secondary keys for a specific key name. + * Get a shared access policy by name from a provisioning service. + * + *

List primary and secondary keys for a specific key name. * * @param provisioningServiceName Name of the provisioning service. * @param keyName Logical key name to get key-values for. @@ -490,7 +538,9 @@ Response listKeysForKeyNameWithResp String provisioningServiceName, String keyName, String resourceGroupName, Context context); /** - * List private link resources for the given provisioning service. + * List private link resources + * + *

List private link resources for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -504,7 +554,9 @@ Response listKeysForKeyNameWithResp PrivateLinkResourcesInner listPrivateLinkResources(String resourceGroupName, String resourceName); /** - * List private link resources for the given provisioning service. + * List private link resources + * + *

List private link resources for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -520,7 +572,9 @@ Response listPrivateLinkResourcesWithResponse( String resourceGroupName, String resourceName, Context context); /** - * Get the specified private link resource for the given provisioning service. + * Get the specified private link resource + * + *

Get the specified private link resource for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -535,7 +589,9 @@ Response listPrivateLinkResourcesWithResponse( GroupIdInformationInner getPrivateLinkResources(String resourceGroupName, String resourceName, String groupId); /** - * Get the specified private link resource for the given provisioning service. + * Get the specified private link resource + * + *

Get the specified private link resource for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -552,7 +608,9 @@ Response getPrivateLinkResourcesWithResponse( String resourceGroupName, String resourceName, String groupId, Context context); /** - * List private endpoint connection properties. + * List private endpoint connections + * + *

List private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -566,7 +624,9 @@ Response getPrivateLinkResourcesWithResponse( List listPrivateEndpointConnections(String resourceGroupName, String resourceName); /** - * List private endpoint connection properties. + * List private endpoint connections + * + *

List private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -582,7 +642,9 @@ Response> listPrivateEndpointConnectionsWit String resourceGroupName, String resourceName, Context context); /** - * Get private endpoint connection properties. + * Get private endpoint connection + * + *

Get private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -598,7 +660,9 @@ PrivateEndpointConnectionInner getPrivateEndpointConnection( String resourceGroupName, String resourceName, String privateEndpointConnectionName); /** - * Get private endpoint connection properties. + * Get private endpoint connection + * + *

Get private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -615,7 +679,9 @@ Response getPrivateEndpointConnectionWithRespons String resourceGroupName, String resourceName, String privateEndpointConnectionName, Context context); /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -636,7 +702,9 @@ Response getPrivateEndpointConnectionWithRespons PrivateEndpointConnectionInner privateEndpointConnection); /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -659,7 +727,9 @@ Response getPrivateEndpointConnectionWithRespons Context context); /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -679,7 +749,9 @@ PrivateEndpointConnectionInner createOrUpdatePrivateEndpointConnection( PrivateEndpointConnectionInner privateEndpointConnection); /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -701,7 +773,9 @@ PrivateEndpointConnectionInner createOrUpdatePrivateEndpointConnection( Context context); /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -718,7 +792,9 @@ PrivateEndpointConnectionInner createOrUpdatePrivateEndpointConnection( String resourceGroupName, String resourceName, String privateEndpointConnectionName); /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -736,7 +812,9 @@ PrivateEndpointConnectionInner createOrUpdatePrivateEndpointConnection( String resourceGroupName, String resourceName, String privateEndpointConnectionName, Context context); /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -752,7 +830,9 @@ PrivateEndpointConnectionInner deletePrivateEndpointConnection( String resourceGroupName, String resourceName, String privateEndpointConnectionName); /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/models/ProvisioningServiceDescriptionInner.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/models/ProvisioningServiceDescriptionInner.java index ecbb41e97f90..0aecfebe1e8a 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/models/ProvisioningServiceDescriptionInner.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/fluent/models/ProvisioningServiceDescriptionInner.java @@ -17,9 +17,8 @@ @Fluent public final class ProvisioningServiceDescriptionInner extends Resource { /* - * The Etag field is *not* required. If it is provided in the response - * body, it must also be provided as a header per the normal ETag - * convention. + * The Etag field is *not* required. If it is provided in the response body, it must also be provided as a header + * per the normal ETag convention. */ @JsonProperty(value = "etag") private String etag; diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/DpsCertificatesClientImpl.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/DpsCertificatesClientImpl.java index 08a69bb2550c..a52e998eee1b 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/DpsCertificatesClientImpl.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/DpsCertificatesClientImpl.java @@ -390,7 +390,9 @@ public Response getWithResponse( } /** - * Add new certificate or update an existing certificate. + * Upload the certificate to the provisioning service. + * + *

Add new certificate or update an existing certificate. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName The name of the provisioning service. @@ -462,7 +464,9 @@ private Mono> createOrUpdateWithResponseAsync } /** - * Add new certificate or update an existing certificate. + * Upload the certificate to the provisioning service. + * + *

Add new certificate or update an existing certificate. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName The name of the provisioning service. @@ -533,7 +537,9 @@ private Mono> createOrUpdateWithResponseAsync } /** - * Add new certificate or update an existing certificate. + * Upload the certificate to the provisioning service. + * + *

Add new certificate or update an existing certificate. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName The name of the provisioning service. @@ -559,7 +565,9 @@ private Mono createOrUpdateAsync( } /** - * Add new certificate or update an existing certificate. + * Upload the certificate to the provisioning service. + * + *

Add new certificate or update an existing certificate. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName The name of the provisioning service. @@ -583,7 +591,9 @@ private Mono createOrUpdateAsync( } /** - * Add new certificate or update an existing certificate. + * Upload the certificate to the provisioning service. + * + *

Add new certificate or update an existing certificate. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName The name of the provisioning service. @@ -607,7 +617,9 @@ public CertificateResponseInner createOrUpdate( } /** - * Add new certificate or update an existing certificate. + * Upload the certificate to the provisioning service. + * + *

Add new certificate or update an existing certificate. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName The name of the provisioning service. @@ -635,7 +647,9 @@ public Response createOrUpdateWithResponse( } /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param ifMatch ETag of the certificate. @@ -725,7 +739,9 @@ private Mono> deleteWithResponseAsync( } /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param ifMatch ETag of the certificate. @@ -814,7 +830,9 @@ private Mono> deleteWithResponseAsync( } /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param ifMatch ETag of the certificate. @@ -865,7 +883,9 @@ private Mono deleteAsync( } /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param ifMatch ETag of the certificate. @@ -905,7 +925,9 @@ private Mono deleteAsync( } /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param ifMatch ETag of the certificate. @@ -944,7 +966,9 @@ public void delete( } /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param ifMatch ETag of the certificate. @@ -1518,8 +1542,10 @@ public Response generateVerificationCodeWithRespo } /** - * Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded - * certificate. + * Verify certificate's private key possession. + * + *

Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre + * uploaded certificate. * * @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to * access. @@ -1617,8 +1643,10 @@ private Mono> verifyCertificateWithResponseAs } /** - * Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded - * certificate. + * Verify certificate's private key possession. + * + *

Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre + * uploaded certificate. * * @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to * access. @@ -1715,8 +1743,10 @@ private Mono> verifyCertificateWithResponseAs } /** - * Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded - * certificate. + * Verify certificate's private key possession. + * + *

Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre + * uploaded certificate. * * @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to * access. @@ -1770,8 +1800,10 @@ private Mono verifyCertificateAsync( } /** - * Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded - * certificate. + * Verify certificate's private key possession. + * + *

Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre + * uploaded certificate. * * @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to * access. @@ -1817,8 +1849,10 @@ private Mono verifyCertificateAsync( } /** - * Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded - * certificate. + * Verify certificate's private key possession. + * + *

Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre + * uploaded certificate. * * @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to * access. @@ -1864,8 +1898,10 @@ public CertificateResponseInner verifyCertificate( } /** - * Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded - * certificate. + * Verify certificate's private key possession. + * + *

Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre + * uploaded certificate. * * @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to * access. diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/IotDpsClientBuilder.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/IotDpsClientBuilder.java index a2cebb7e2bd5..3d7b97483de5 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/IotDpsClientBuilder.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/IotDpsClientBuilder.java @@ -119,24 +119,26 @@ public IotDpsClientBuilder serializerAdapter(SerializerAdapter serializerAdapter * @return an instance of IotDpsClientImpl. */ public IotDpsClientImpl buildClient() { - if (endpoint == null) { - this.endpoint = "https://management.azure.com"; - } - if (environment == null) { - this.environment = AzureEnvironment.AZURE; - } - if (pipeline == null) { - this.pipeline = new HttpPipelineBuilder().policies(new UserAgentPolicy(), new RetryPolicy()).build(); - } - if (defaultPollInterval == null) { - this.defaultPollInterval = Duration.ofSeconds(30); - } - if (serializerAdapter == null) { - this.serializerAdapter = SerializerFactory.createDefaultManagementSerializerAdapter(); - } + String localEndpoint = (endpoint != null) ? endpoint : "https://management.azure.com"; + AzureEnvironment localEnvironment = (environment != null) ? environment : AzureEnvironment.AZURE; + HttpPipeline localPipeline = + (pipeline != null) + ? pipeline + : new HttpPipelineBuilder().policies(new UserAgentPolicy(), new RetryPolicy()).build(); + Duration localDefaultPollInterval = + (defaultPollInterval != null) ? defaultPollInterval : Duration.ofSeconds(30); + SerializerAdapter localSerializerAdapter = + (serializerAdapter != null) + ? serializerAdapter + : SerializerFactory.createDefaultManagementSerializerAdapter(); IotDpsClientImpl client = new IotDpsClientImpl( - pipeline, serializerAdapter, defaultPollInterval, environment, subscriptionId, endpoint); + localPipeline, + localSerializerAdapter, + localDefaultPollInterval, + localEnvironment, + subscriptionId, + localEndpoint); return client; } } diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/IotDpsResourcesClientImpl.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/IotDpsResourcesClientImpl.java index fbb9bb4d1ec6..f9097ca7600f 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/IotDpsResourcesClientImpl.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/implementation/IotDpsResourcesClientImpl.java @@ -378,7 +378,9 @@ Mono> listKeysNext( } /** - * Get the metadata of the provisioning service without SAS keys. + * Get the non-security related metadata of the provisioning service. + * + *

Get the metadata of the provisioning service without SAS keys. * * @param resourceGroupName Resource group name. * @param provisioningServiceName Name of the provisioning service to retrieve. @@ -429,7 +431,9 @@ private Mono> getByResourceGroupWi } /** - * Get the metadata of the provisioning service without SAS keys. + * Get the non-security related metadata of the provisioning service. + * + *

Get the metadata of the provisioning service without SAS keys. * * @param resourceGroupName Resource group name. * @param provisioningServiceName Name of the provisioning service to retrieve. @@ -478,7 +482,9 @@ private Mono> getByResourceGroupWi } /** - * Get the metadata of the provisioning service without SAS keys. + * Get the non-security related metadata of the provisioning service. + * + *

Get the metadata of the provisioning service without SAS keys. * * @param resourceGroupName Resource group name. * @param provisioningServiceName Name of the provisioning service to retrieve. @@ -495,7 +501,9 @@ private Mono getByResourceGroupAsync( } /** - * Get the metadata of the provisioning service without SAS keys. + * Get the non-security related metadata of the provisioning service. + * + *

Get the metadata of the provisioning service without SAS keys. * * @param resourceGroupName Resource group name. * @param provisioningServiceName Name of the provisioning service to retrieve. @@ -511,7 +519,9 @@ public ProvisioningServiceDescriptionInner getByResourceGroup( } /** - * Get the metadata of the provisioning service without SAS keys. + * Get the non-security related metadata of the provisioning service. + * + *

Get the metadata of the provisioning service without SAS keys. * * @param resourceGroupName Resource group name. * @param provisioningServiceName Name of the provisioning service to retrieve. @@ -528,9 +538,11 @@ public Response getByResourceGroupWithRespo } /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -591,9 +603,11 @@ private Mono>> createOrUpdateWithResponseAsync( } /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -653,9 +667,11 @@ private Mono>> createOrUpdateWithResponseAsync( } /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -684,9 +700,11 @@ private Mono>> createOrUpdateWithResponseAsync( } /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -718,9 +736,11 @@ private Mono>> createOrUpdateWithResponseAsync( } /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -740,9 +760,11 @@ private Mono>> createOrUpdateWithResponseAsync( } /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -765,9 +787,11 @@ private Mono>> createOrUpdateWithResponseAsync( } /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -788,9 +812,11 @@ private Mono createOrUpdateAsync( } /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -813,9 +839,11 @@ private Mono createOrUpdateAsync( } /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -834,9 +862,11 @@ public ProvisioningServiceDescriptionInner createOrUpdate( } /** - * Create or update the metadata of the provisioning service. The usual pattern to modify a property is to retrieve - * the provisioning service metadata and security metadata, and then combine them with the modified values in a new - * body to update the provisioning service. + * Create or update the metadata of the provisioning service. + * + *

Create or update the metadata of the provisioning service. The usual pattern to modify a property is to + * retrieve the provisioning service metadata and security metadata, and then combine them with the modified values + * in a new body to update the provisioning service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -857,7 +887,9 @@ public ProvisioningServiceDescriptionInner createOrUpdate( } /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -917,7 +949,9 @@ private Mono>> updateWithResponseAsync( } /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -978,7 +1012,9 @@ private Mono>> updateWithResponseAsync( } /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -1005,7 +1041,9 @@ private Mono>> updateWithResponseAsync( } /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -1037,7 +1075,9 @@ private Mono>> updateWithResponseAsync( } /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -1054,7 +1094,9 @@ public SyncPoller, ProvisioningS } /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -1076,7 +1118,9 @@ public SyncPoller, ProvisioningS } /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -1095,7 +1139,9 @@ private Mono updateAsync( } /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -1118,7 +1164,9 @@ private Mono updateAsync( } /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -1135,7 +1183,9 @@ public ProvisioningServiceDescriptionInner update( } /** - * Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. + * Update an existing provisioning service's tags. + * + *

Update an existing provisioning service's tags. to update other fields use the CreateOrUpdate method. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to create or update. @@ -1156,7 +1206,9 @@ public ProvisioningServiceDescriptionInner update( } /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -1206,7 +1258,9 @@ private Mono>> deleteWithResponseAsync( } /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -1254,7 +1308,9 @@ private Mono>> deleteWithResponseAsync( } /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -1274,7 +1330,9 @@ private PollerFlux, Void> beginDeleteAsync( } /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -1296,7 +1354,9 @@ private PollerFlux, Void> beginDeleteAsync( } /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -1311,7 +1371,9 @@ public SyncPoller, Void> beginDelete(String resourceGroupName, } /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -1328,7 +1390,9 @@ public SyncPoller, Void> beginDelete( } /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -1345,7 +1409,9 @@ private Mono deleteAsync(String resourceGroupName, String provisioningServ } /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -1363,7 +1429,9 @@ private Mono deleteAsync(String resourceGroupName, String provisioningServ } /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -1377,7 +1445,9 @@ public void delete(String resourceGroupName, String provisioningServiceName) { } /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -1392,7 +1462,9 @@ public void delete(String resourceGroupName, String provisioningServiceName, Con } /** - * List all the provisioning services for a given subscription id. + * Get all the provisioning services in a subscription. + * + *

List all the provisioning services for a given subscription id. * * @throws ErrorDetailsException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -1437,7 +1509,9 @@ private Mono> listSinglePageA } /** - * List all the provisioning services for a given subscription id. + * Get all the provisioning services in a subscription. + * + *

List all the provisioning services for a given subscription id. * * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -1481,7 +1555,9 @@ private Mono> listSinglePageA } /** - * List all the provisioning services for a given subscription id. + * Get all the provisioning services in a subscription. + * + *

List all the provisioning services for a given subscription id. * * @throws ErrorDetailsException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -1494,7 +1570,9 @@ private PagedFlux listAsync() { } /** - * List all the provisioning services for a given subscription id. + * Get all the provisioning services in a subscription. + * + *

List all the provisioning services for a given subscription id. * * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -1509,7 +1587,9 @@ private PagedFlux listAsync(Context context } /** - * List all the provisioning services for a given subscription id. + * Get all the provisioning services in a subscription. + * + *

List all the provisioning services for a given subscription id. * * @throws ErrorDetailsException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. @@ -1521,7 +1601,9 @@ public PagedIterable list() { } /** - * List all the provisioning services for a given subscription id. + * Get all the provisioning services in a subscription. + * + *

List all the provisioning services for a given subscription id. * * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -1900,7 +1982,9 @@ public Response getOperationResultWithResponse( } /** - * Gets the list of valid SKUs and tiers for a provisioning service. + * Get the list of valid SKUs for a provisioning service. + * + *

Gets the list of valid SKUs and tiers for a provisioning service. * * @param provisioningServiceName Name of provisioning service. * @param resourceGroupName Name of resource group. @@ -1960,7 +2044,9 @@ private Mono> listValidSkusSinglePageAsy } /** - * Gets the list of valid SKUs and tiers for a provisioning service. + * Get the list of valid SKUs for a provisioning service. + * + *

Gets the list of valid SKUs and tiers for a provisioning service. * * @param provisioningServiceName Name of provisioning service. * @param resourceGroupName Name of resource group. @@ -2018,7 +2104,9 @@ private Mono> listValidSkusSinglePageAsy } /** - * Gets the list of valid SKUs and tiers for a provisioning service. + * Get the list of valid SKUs for a provisioning service. + * + *

Gets the list of valid SKUs and tiers for a provisioning service. * * @param provisioningServiceName Name of provisioning service. * @param resourceGroupName Name of resource group. @@ -2036,7 +2124,9 @@ private PagedFlux listValidSkusAsync( } /** - * Gets the list of valid SKUs and tiers for a provisioning service. + * Get the list of valid SKUs for a provisioning service. + * + *

Gets the list of valid SKUs and tiers for a provisioning service. * * @param provisioningServiceName Name of provisioning service. * @param resourceGroupName Name of resource group. @@ -2055,7 +2145,9 @@ private PagedFlux listValidSkusAsync( } /** - * Gets the list of valid SKUs and tiers for a provisioning service. + * Get the list of valid SKUs for a provisioning service. + * + *

Gets the list of valid SKUs and tiers for a provisioning service. * * @param provisioningServiceName Name of provisioning service. * @param resourceGroupName Name of resource group. @@ -2072,7 +2164,9 @@ public PagedIterable listValidSkus( } /** - * Gets the list of valid SKUs and tiers for a provisioning service. + * Get the list of valid SKUs for a provisioning service. + * + *

Gets the list of valid SKUs and tiers for a provisioning service. * * @param provisioningServiceName Name of provisioning service. * @param resourceGroupName Name of resource group. @@ -2090,8 +2184,10 @@ public PagedIterable listValidSkus( } /** - * Check if a provisioning service name is available. This will validate if the name is syntactically valid and if - * the name is usable. + * Check if a provisioning service name is available. + * + *

Check if a provisioning service name is available. This will validate if the name is syntactically valid and + * if the name is usable. * * @param arguments Set the name parameter in the OperationInputs structure to the name of the provisioning service * to check. @@ -2136,8 +2232,10 @@ private Mono> checkProvisioningServiceNameAv } /** - * Check if a provisioning service name is available. This will validate if the name is syntactically valid and if - * the name is usable. + * Check if a provisioning service name is available. + * + *

Check if a provisioning service name is available. This will validate if the name is syntactically valid and + * if the name is usable. * * @param arguments Set the name parameter in the OperationInputs structure to the name of the provisioning service * to check. @@ -2180,8 +2278,10 @@ private Mono> checkProvisioningServiceNameAv } /** - * Check if a provisioning service name is available. This will validate if the name is syntactically valid and if - * the name is usable. + * Check if a provisioning service name is available. + * + *

Check if a provisioning service name is available. This will validate if the name is syntactically valid and + * if the name is usable. * * @param arguments Set the name parameter in the OperationInputs structure to the name of the provisioning service * to check. @@ -2197,8 +2297,10 @@ private Mono checkProvisioningServiceNameAvailability } /** - * Check if a provisioning service name is available. This will validate if the name is syntactically valid and if - * the name is usable. + * Check if a provisioning service name is available. + * + *

Check if a provisioning service name is available. This will validate if the name is syntactically valid and + * if the name is usable. * * @param arguments Set the name parameter in the OperationInputs structure to the name of the provisioning service * to check. @@ -2213,8 +2315,10 @@ public NameAvailabilityInfoInner checkProvisioningServiceNameAvailability(Operat } /** - * Check if a provisioning service name is available. This will validate if the name is syntactically valid and if - * the name is usable. + * Check if a provisioning service name is available. + * + *

Check if a provisioning service name is available. This will validate if the name is syntactically valid and + * if the name is usable. * * @param arguments Set the name parameter in the OperationInputs structure to the name of the provisioning service * to check. @@ -2231,7 +2335,9 @@ public Response checkProvisioningServiceNameAvailabil } /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @param provisioningServiceName The provisioning service name to get the shared access keys for. * @param resourceGroupName resource group name. @@ -2290,7 +2396,9 @@ private Mono> listKey } /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @param provisioningServiceName The provisioning service name to get the shared access keys for. * @param resourceGroupName resource group name. @@ -2347,7 +2455,9 @@ private Mono> listKey } /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @param provisioningServiceName The provisioning service name to get the shared access keys for. * @param resourceGroupName resource group name. @@ -2365,7 +2475,9 @@ private PagedFlux listKeysAsync( } /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @param provisioningServiceName The provisioning service name to get the shared access keys for. * @param resourceGroupName resource group name. @@ -2384,7 +2496,9 @@ private PagedFlux listKeysAsync( } /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @param provisioningServiceName The provisioning service name to get the shared access keys for. * @param resourceGroupName resource group name. @@ -2400,7 +2514,9 @@ public PagedIterable listKeys( } /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @param provisioningServiceName The provisioning service name to get the shared access keys for. * @param resourceGroupName resource group name. @@ -2417,7 +2533,9 @@ public PagedIterable listKeys( } /** - * List primary and secondary keys for a specific key name. + * Get a shared access policy by name from a provisioning service. + * + *

List primary and secondary keys for a specific key name. * * @param provisioningServiceName Name of the provisioning service. * @param keyName Logical key name to get key-values for. @@ -2473,7 +2591,9 @@ private Mono> listKeysForK } /** - * List primary and secondary keys for a specific key name. + * Get a shared access policy by name from a provisioning service. + * + *

List primary and secondary keys for a specific key name. * * @param provisioningServiceName Name of the provisioning service. * @param keyName Logical key name to get key-values for. @@ -2527,7 +2647,9 @@ private Mono> listKeysForK } /** - * List primary and secondary keys for a specific key name. + * Get a shared access policy by name from a provisioning service. + * + *

List primary and secondary keys for a specific key name. * * @param provisioningServiceName Name of the provisioning service. * @param keyName Logical key name to get key-values for. @@ -2545,7 +2667,9 @@ private Mono listKeysForKeyNameAsyn } /** - * List primary and secondary keys for a specific key name. + * Get a shared access policy by name from a provisioning service. + * + *

List primary and secondary keys for a specific key name. * * @param provisioningServiceName Name of the provisioning service. * @param keyName Logical key name to get key-values for. @@ -2562,7 +2686,9 @@ public SharedAccessSignatureAuthorizationRuleInner listKeysForKeyName( } /** - * List primary and secondary keys for a specific key name. + * Get a shared access policy by name from a provisioning service. + * + *

List primary and secondary keys for a specific key name. * * @param provisioningServiceName Name of the provisioning service. * @param keyName Logical key name to get key-values for. @@ -2581,7 +2707,9 @@ public Response listKeysForKeyNameW } /** - * List private link resources for the given provisioning service. + * List private link resources + * + *

List private link resources for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2630,7 +2758,9 @@ private Mono> listPrivateLinkResourcesWithRe } /** - * List private link resources for the given provisioning service. + * List private link resources + * + *

List private link resources for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2677,7 +2807,9 @@ private Mono> listPrivateLinkResourcesWithRe } /** - * List private link resources for the given provisioning service. + * List private link resources + * + *

List private link resources for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2694,7 +2826,9 @@ private Mono listPrivateLinkResourcesAsync( } /** - * List private link resources for the given provisioning service. + * List private link resources + * + *

List private link resources for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2709,7 +2843,9 @@ public PrivateLinkResourcesInner listPrivateLinkResources(String resourceGroupNa } /** - * List private link resources for the given provisioning service. + * List private link resources + * + *

List private link resources for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2726,7 +2862,9 @@ public Response listPrivateLinkResourcesWithResponse( } /** - * Get the specified private link resource for the given provisioning service. + * Get the specified private link resource + * + *

Get the specified private link resource for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2780,7 +2918,9 @@ private Mono> getPrivateLinkResourcesWithRespo } /** - * Get the specified private link resource for the given provisioning service. + * Get the specified private link resource + * + *

Get the specified private link resource for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2832,7 +2972,9 @@ private Mono> getPrivateLinkResourcesWithRespo } /** - * Get the specified private link resource for the given provisioning service. + * Get the specified private link resource + * + *

Get the specified private link resource for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2851,7 +2993,9 @@ private Mono getPrivateLinkResourcesAsync( } /** - * Get the specified private link resource for the given provisioning service. + * Get the specified private link resource + * + *

Get the specified private link resource for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2868,7 +3012,9 @@ public GroupIdInformationInner getPrivateLinkResources( } /** - * Get the specified private link resource for the given provisioning service. + * Get the specified private link resource + * + *

Get the specified private link resource for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2886,7 +3032,9 @@ public Response getPrivateLinkResourcesWithResponse( } /** - * List private endpoint connection properties. + * List private endpoint connections + * + *

List private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2935,7 +3083,9 @@ private Mono>> listPrivateEndpoint } /** - * List private endpoint connection properties. + * List private endpoint connections + * + *

List private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -2982,7 +3132,9 @@ private Mono>> listPrivateEndpoint } /** - * List private endpoint connection properties. + * List private endpoint connections + * + *

List private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3000,7 +3152,9 @@ private Mono> listPrivateEndpointConnection } /** - * List private endpoint connection properties. + * List private endpoint connections + * + *

List private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3016,7 +3170,9 @@ public List listPrivateEndpointConnections( } /** - * List private endpoint connection properties. + * List private endpoint connections + * + *

List private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3033,7 +3189,9 @@ public Response> listPrivateEndpointConnect } /** - * Get private endpoint connection properties. + * Get private endpoint connection + * + *

Get private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3090,7 +3248,9 @@ private Mono> getPrivateEndpointConnect } /** - * Get private endpoint connection properties. + * Get private endpoint connection + * + *

Get private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3145,7 +3305,9 @@ private Mono> getPrivateEndpointConnect } /** - * Get private endpoint connection properties. + * Get private endpoint connection + * + *

Get private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3164,7 +3326,9 @@ private Mono getPrivateEndpointConnectionAsync( } /** - * Get private endpoint connection properties. + * Get private endpoint connection + * + *

Get private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3182,7 +3346,9 @@ public PrivateEndpointConnectionInner getPrivateEndpointConnection( } /** - * Get private endpoint connection properties. + * Get private endpoint connection + * + *

Get private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3202,7 +3368,9 @@ public Response getPrivateEndpointConnectionWith } /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3272,7 +3440,9 @@ private Mono>> createOrUpdatePrivateEndpointConnection } /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3341,7 +3511,9 @@ private Mono>> createOrUpdatePrivateEndpointConnection } /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3373,7 +3545,9 @@ private Mono>> createOrUpdatePrivateEndpointConnection } /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3408,7 +3582,9 @@ private Mono>> createOrUpdatePrivateEndpointConnection } /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3432,7 +3608,9 @@ private Mono>> createOrUpdatePrivateEndpointConnection } /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3458,7 +3636,9 @@ private Mono>> createOrUpdatePrivateEndpointConnection } /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3482,7 +3662,9 @@ private Mono createOrUpdatePrivateEndpointConnec } /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3508,7 +3690,9 @@ private Mono createOrUpdatePrivateEndpointConnec } /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3531,7 +3715,9 @@ public PrivateEndpointConnectionInner createOrUpdatePrivateEndpointConnection( } /** - * Create or update the status of a private endpoint connection with the specified name. + * Create or update private endpoint connection + * + *

Create or update the status of a private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3556,7 +3742,9 @@ public PrivateEndpointConnectionInner createOrUpdatePrivateEndpointConnection( } /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3613,7 +3801,9 @@ private Mono>> deletePrivateEndpointConnectionWithResp } /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3668,7 +3858,9 @@ private Mono>> deletePrivateEndpointConnectionWithResp } /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3696,7 +3888,9 @@ private Mono>> deletePrivateEndpointConnectionWithResp } /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3726,7 +3920,9 @@ private Mono>> deletePrivateEndpointConnectionWithResp } /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3745,7 +3941,9 @@ private Mono>> deletePrivateEndpointConnectionWithResp } /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3766,7 +3964,9 @@ private Mono>> deletePrivateEndpointConnectionWithResp } /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3785,7 +3985,9 @@ private Mono deletePrivateEndpointConnectionAsyn } /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3806,7 +4008,9 @@ private Mono deletePrivateEndpointConnectionAsyn } /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -3824,7 +4028,9 @@ public PrivateEndpointConnectionInner deletePrivateEndpointConnection( } /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/CertificateProperties.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/CertificateProperties.java index d5719d1a731a..47d272ac9c5d 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/CertificateProperties.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/CertificateProperties.java @@ -38,8 +38,7 @@ public final class CertificateProperties { private Boolean isVerified; /* - * base-64 representation of X509 certificate .cer file or just .pem file - * content. + * base-64 representation of X509 certificate .cer file or just .pem file content. */ @JsonProperty(value = "certificate") private byte[] certificate; diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/DpsCertificates.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/DpsCertificates.java index 1cce7f4ecd06..306e514f4a55 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/DpsCertificates.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/DpsCertificates.java @@ -46,7 +46,9 @@ Response getWithResponse( Context context); /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param ifMatch ETag of the certificate. @@ -61,7 +63,9 @@ Response getWithResponse( void delete(String resourceGroupName, String ifMatch, String provisioningServiceName, String certificateName); /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param ifMatch ETag of the certificate. @@ -184,8 +188,10 @@ Response generateVerificationCodeWithResponse( Context context); /** - * Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded - * certificate. + * Verify certificate's private key possession. + * + *

Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre + * uploaded certificate. * * @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to * access. @@ -207,8 +213,10 @@ CertificateResponse verifyCertificate( VerificationCodeRequest request); /** - * Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre uploaded - * certificate. + * Verify certificate's private key possession. + * + *

Verifies the certificate's private key possession by providing the leaf cert issued by the verifying pre + * uploaded certificate. * * @param certificateName The mandatory logical name of the certificate, that the provisioning service uses to * access. @@ -274,7 +282,9 @@ Response verifyCertificateWithResponse( Response getByIdWithResponse(String id, String ifMatch, Context context); /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param id the resource ID. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -285,7 +295,9 @@ Response verifyCertificateWithResponse( void deleteById(String id); /** - * Deletes the specified certificate associated with the Provisioning Service. + * Delete the Provisioning Service Certificate. + * + *

Deletes the specified certificate associated with the Provisioning Service. * * @param id the resource ID. * @param ifMatch ETag of the certificate. diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IotDpsPropertiesDescription.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IotDpsPropertiesDescription.java index 5b5a1b03de6d..771277216dd3 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IotDpsPropertiesDescription.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IotDpsPropertiesDescription.java @@ -84,8 +84,7 @@ public final class IotDpsPropertiesDescription { /* * Optional. - * Indicates if the DPS instance has Data Residency enabled, removing the - * cross geo-pair disaster recovery. + * Indicates if the DPS instance has Data Residency enabled, removing the cross geo-pair disaster recovery. */ @JsonProperty(value = "enableDataResidency") private Boolean enableDataResidency; diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IotDpsResources.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IotDpsResources.java index 29a19e399a32..8fbd89a90955 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IotDpsResources.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IotDpsResources.java @@ -12,7 +12,9 @@ /** Resource collection API of IotDpsResources. */ public interface IotDpsResources { /** - * Get the metadata of the provisioning service without SAS keys. + * Get the non-security related metadata of the provisioning service. + * + *

Get the metadata of the provisioning service without SAS keys. * * @param resourceGroupName Resource group name. * @param provisioningServiceName Name of the provisioning service to retrieve. @@ -25,7 +27,9 @@ public interface IotDpsResources { ProvisioningServiceDescription getByResourceGroup(String resourceGroupName, String provisioningServiceName); /** - * Get the metadata of the provisioning service without SAS keys. + * Get the non-security related metadata of the provisioning service. + * + *

Get the metadata of the provisioning service without SAS keys. * * @param resourceGroupName Resource group name. * @param provisioningServiceName Name of the provisioning service to retrieve. @@ -40,7 +44,9 @@ Response getByResourceGroupWithResponse( String resourceGroupName, String provisioningServiceName, Context context); /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -52,7 +58,9 @@ Response getByResourceGroupWithResponse( void deleteByResourceGroup(String resourceGroupName, String provisioningServiceName); /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param resourceGroupName Resource group identifier. * @param provisioningServiceName Name of provisioning service to delete. @@ -65,7 +73,9 @@ Response getByResourceGroupWithResponse( void delete(String resourceGroupName, String provisioningServiceName, Context context); /** - * List all the provisioning services for a given subscription id. + * Get all the provisioning services in a subscription. + * + *

List all the provisioning services for a given subscription id. * * @throws com.azure.resourcemanager.deviceprovisioningservices.models.ErrorDetailsException thrown if the request * is rejected by server. @@ -75,7 +85,9 @@ Response getByResourceGroupWithResponse( PagedIterable list(); /** - * List all the provisioning services for a given subscription id. + * Get all the provisioning services in a subscription. + * + *

List all the provisioning services for a given subscription id. * * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -154,7 +166,9 @@ Response getOperationResultWithResponse( Context context); /** - * Gets the list of valid SKUs and tiers for a provisioning service. + * Get the list of valid SKUs for a provisioning service. + * + *

Gets the list of valid SKUs and tiers for a provisioning service. * * @param provisioningServiceName Name of provisioning service. * @param resourceGroupName Name of resource group. @@ -168,7 +182,9 @@ Response getOperationResultWithResponse( PagedIterable listValidSkus(String provisioningServiceName, String resourceGroupName); /** - * Gets the list of valid SKUs and tiers for a provisioning service. + * Get the list of valid SKUs for a provisioning service. + * + *

Gets the list of valid SKUs and tiers for a provisioning service. * * @param provisioningServiceName Name of provisioning service. * @param resourceGroupName Name of resource group. @@ -184,8 +200,10 @@ PagedIterable listValidSkus( String provisioningServiceName, String resourceGroupName, Context context); /** - * Check if a provisioning service name is available. This will validate if the name is syntactically valid and if - * the name is usable. + * Check if a provisioning service name is available. + * + *

Check if a provisioning service name is available. This will validate if the name is syntactically valid and + * if the name is usable. * * @param arguments Set the name parameter in the OperationInputs structure to the name of the provisioning service * to check. @@ -198,8 +216,10 @@ PagedIterable listValidSkus( NameAvailabilityInfo checkProvisioningServiceNameAvailability(OperationInputs arguments); /** - * Check if a provisioning service name is available. This will validate if the name is syntactically valid and if - * the name is usable. + * Check if a provisioning service name is available. + * + *

Check if a provisioning service name is available. This will validate if the name is syntactically valid and + * if the name is usable. * * @param arguments Set the name parameter in the OperationInputs structure to the name of the provisioning service * to check. @@ -214,7 +234,9 @@ Response checkProvisioningServiceNameAvailabilityWithRespo OperationInputs arguments, Context context); /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @param provisioningServiceName The provisioning service name to get the shared access keys for. * @param resourceGroupName resource group name. @@ -228,7 +250,9 @@ PagedIterable listKeys( String provisioningServiceName, String resourceGroupName); /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @param provisioningServiceName The provisioning service name to get the shared access keys for. * @param resourceGroupName resource group name. @@ -243,7 +267,9 @@ PagedIterable listKeys( String provisioningServiceName, String resourceGroupName, Context context); /** - * List primary and secondary keys for a specific key name. + * Get a shared access policy by name from a provisioning service. + * + *

List primary and secondary keys for a specific key name. * * @param provisioningServiceName Name of the provisioning service. * @param keyName Logical key name to get key-values for. @@ -258,7 +284,9 @@ SharedAccessSignatureAuthorizationRule listKeysForKeyName( String provisioningServiceName, String keyName, String resourceGroupName); /** - * List primary and secondary keys for a specific key name. + * Get a shared access policy by name from a provisioning service. + * + *

List primary and secondary keys for a specific key name. * * @param provisioningServiceName Name of the provisioning service. * @param keyName Logical key name to get key-values for. @@ -274,7 +302,9 @@ Response listKeysForKeyNameWithResponse( String provisioningServiceName, String keyName, String resourceGroupName, Context context); /** - * List private link resources for the given provisioning service. + * List private link resources + * + *

List private link resources for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -287,7 +317,9 @@ Response listKeysForKeyNameWithResponse( PrivateLinkResources listPrivateLinkResources(String resourceGroupName, String resourceName); /** - * List private link resources for the given provisioning service. + * List private link resources + * + *

List private link resources for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -302,7 +334,9 @@ Response listPrivateLinkResourcesWithResponse( String resourceGroupName, String resourceName, Context context); /** - * Get the specified private link resource for the given provisioning service. + * Get the specified private link resource + * + *

Get the specified private link resource for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -316,7 +350,9 @@ Response listPrivateLinkResourcesWithResponse( GroupIdInformation getPrivateLinkResources(String resourceGroupName, String resourceName, String groupId); /** - * Get the specified private link resource for the given provisioning service. + * Get the specified private link resource + * + *

Get the specified private link resource for the given provisioning service. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -332,7 +368,9 @@ Response getPrivateLinkResourcesWithResponse( String resourceGroupName, String resourceName, String groupId, Context context); /** - * List private endpoint connection properties. + * List private endpoint connections + * + *

List private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -345,7 +383,9 @@ Response getPrivateLinkResourcesWithResponse( List listPrivateEndpointConnections(String resourceGroupName, String resourceName); /** - * List private endpoint connection properties. + * List private endpoint connections + * + *

List private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -360,7 +400,9 @@ Response> listPrivateEndpointConnectionsWithResp String resourceGroupName, String resourceName, Context context); /** - * Get private endpoint connection properties. + * Get private endpoint connection + * + *

Get private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -375,7 +417,9 @@ PrivateEndpointConnection getPrivateEndpointConnection( String resourceGroupName, String resourceName, String privateEndpointConnectionName); /** - * Get private endpoint connection properties. + * Get private endpoint connection + * + *

Get private endpoint connection properties. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -391,7 +435,9 @@ Response getPrivateEndpointConnectionWithResponse( String resourceGroupName, String resourceName, String privateEndpointConnectionName, Context context); /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -406,7 +452,9 @@ PrivateEndpointConnection deletePrivateEndpointConnection( String resourceGroupName, String resourceName, String privateEndpointConnectionName); /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param resourceGroupName The name of the resource group that contains the provisioning service. * @param resourceName The name of the provisioning service. @@ -422,7 +470,9 @@ PrivateEndpointConnection deletePrivateEndpointConnection( String resourceGroupName, String resourceName, String privateEndpointConnectionName, Context context); /** - * Get the metadata of the provisioning service without SAS keys. + * Get the non-security related metadata of the provisioning service. + * + *

Get the metadata of the provisioning service without SAS keys. * * @param id the resource ID. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -434,7 +484,9 @@ PrivateEndpointConnection deletePrivateEndpointConnection( ProvisioningServiceDescription getById(String id); /** - * Get the metadata of the provisioning service without SAS keys. + * Get the non-security related metadata of the provisioning service. + * + *

Get the metadata of the provisioning service without SAS keys. * * @param id the resource ID. * @param context The context to associate with this operation. @@ -447,7 +499,9 @@ PrivateEndpointConnection deletePrivateEndpointConnection( Response getByIdWithResponse(String id, Context context); /** - * Get private endpoint connection properties. + * Get private endpoint connection + * + *

Get private endpoint connection properties. * * @param id the resource ID. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -459,7 +513,9 @@ PrivateEndpointConnection deletePrivateEndpointConnection( PrivateEndpointConnection getPrivateEndpointConnectionById(String id); /** - * Get private endpoint connection properties. + * Get private endpoint connection + * + *

Get private endpoint connection properties. * * @param id the resource ID. * @param context The context to associate with this operation. @@ -472,7 +528,9 @@ PrivateEndpointConnection deletePrivateEndpointConnection( Response getPrivateEndpointConnectionByIdWithResponse(String id, Context context); /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param id the resource ID. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -483,7 +541,9 @@ PrivateEndpointConnection deletePrivateEndpointConnection( void deleteById(String id); /** - * Deletes the Provisioning Service. + * Delete the Provisioning Service + * + *

Deletes the Provisioning Service. * * @param id the resource ID. * @param context The context to associate with this operation. @@ -495,7 +555,9 @@ PrivateEndpointConnection deletePrivateEndpointConnection( void deleteByIdWithResponse(String id, Context context); /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param id the resource ID. * @throws IllegalArgumentException thrown if parameters fail the validation. @@ -507,7 +569,9 @@ PrivateEndpointConnection deletePrivateEndpointConnection( PrivateEndpointConnection deletePrivateEndpointConnectionById(String id); /** - * Delete private endpoint connection with the specified name. + * Delete private endpoint connection + * + *

Delete private endpoint connection with the specified name. * * @param id the resource ID. * @param context The context to associate with this operation. diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterActionType.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterActionType.java index 35885518f949..41f1cc97d536 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterActionType.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterActionType.java @@ -30,6 +30,9 @@ public enum IpFilterActionType { */ @JsonCreator public static IpFilterActionType fromString(String value) { + if (value == null) { + return null; + } IpFilterActionType[] items = IpFilterActionType.values(); for (IpFilterActionType item : items) { if (item.toString().equalsIgnoreCase(value)) { diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterRule.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterRule.java index cc2b3eee9d3b..2d2616e3d494 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterRule.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterRule.java @@ -24,8 +24,7 @@ public final class IpFilterRule { private IpFilterActionType action; /* - * A string that contains the IP address range in CIDR notation for the - * rule. + * A string that contains the IP address range in CIDR notation for the rule. */ @JsonProperty(value = "ipMask", required = true) private String ipMask; diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterTargetType.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterTargetType.java index f0eac5bd167f..643baf93ad3f 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterTargetType.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/IpFilterTargetType.java @@ -33,6 +33,9 @@ public enum IpFilterTargetType { */ @JsonCreator public static IpFilterTargetType fromString(String value) { + if (value == null) { + return null; + } IpFilterTargetType[] items = IpFilterTargetType.values(); for (IpFilterTargetType item : items) { if (item.toString().equalsIgnoreCase(value)) { diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/OperationListResult.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/OperationListResult.java index 5bec755cd362..7f654ff15117 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/OperationListResult.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/OperationListResult.java @@ -16,8 +16,7 @@ @Immutable public final class OperationListResult { /* - * Provisioning service operations supported by the Microsoft.Devices - * resource provider. + * Provisioning service operations supported by the Microsoft.Devices resource provider. */ @JsonProperty(value = "value", access = JsonProperty.Access.WRITE_ONLY) private List value; diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/ProvisioningServiceDescription.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/ProvisioningServiceDescription.java index 30f8c70f4701..0ed0718da435 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/ProvisioningServiceDescription.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/ProvisioningServiceDescription.java @@ -264,7 +264,9 @@ interface WithTags { ProvisioningServiceDescription refresh(Context context); /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @throws com.azure.resourcemanager.deviceprovisioningservices.models.ErrorDetailsException thrown if the request * is rejected by server. @@ -274,7 +276,9 @@ interface WithTags { PagedIterable listKeys(); /** - * List the primary and secondary keys for a provisioning service. + * Get the security metadata for a provisioning service. + * + *

List the primary and secondary keys for a provisioning service. * * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/VerificationCodeRequest.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/VerificationCodeRequest.java index 648f16e443e5..b79b05d69e1f 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/VerificationCodeRequest.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/VerificationCodeRequest.java @@ -11,8 +11,7 @@ @Fluent public final class VerificationCodeRequest { /* - * base-64 representation of X509 certificate .cer file or just .pem file - * content. + * base-64 representation of X509 certificate .cer file or just .pem file content. */ @JsonProperty(value = "certificate") private String certificate; diff --git a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/VerificationCodeResponseProperties.java b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/VerificationCodeResponseProperties.java index ee0a2ebe4ac4..81c8c249aef4 100644 --- a/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/VerificationCodeResponseProperties.java +++ b/sdk/deviceprovisioningservices/azure-resourcemanager-deviceprovisioningservices/src/main/java/com/azure/resourcemanager/deviceprovisioningservices/models/VerificationCodeResponseProperties.java @@ -42,8 +42,7 @@ public final class VerificationCodeResponseProperties { private Boolean isVerified; /* - * base-64 representation of X509 certificate .cer file or just .pem file - * content. + * base-64 representation of X509 certificate .cer file or just .pem file content. */ @JsonProperty(value = "certificate") private byte[] certificate;