This setting has no effect, if retry policy is set via {@link #withRetryPolicy(RetryPolicy)}. + *
+ * This setting has no effect, if retry policy is set via {@link #withRetryPolicy(RetryPolicy)}. * * @param retryOptions the retry options for the HTTP pipeline retry policy. * @return the configurable object itself. @@ -474,8 +474,8 @@ public Configurable withRetryOptions(RetryOptions retryOptions) { * @return the configurable object itself. */ public Configurable withDefaultPollInterval(Duration defaultPollInterval) { - this.defaultPollInterval = - Objects.requireNonNull(defaultPollInterval, "'defaultPollInterval' cannot be null."); + this.defaultPollInterval + = Objects.requireNonNull(defaultPollInterval, "'defaultPollInterval' cannot be null."); if (this.defaultPollInterval.isNegative()) { throw LOGGER .logExceptionAsError(new IllegalArgumentException("'defaultPollInterval' cannot be negative")); @@ -495,21 +495,12 @@ public SynapseManager authenticate(TokenCredential credential, AzureProfile prof Objects.requireNonNull(profile, "'profile' cannot be null."); StringBuilder userAgentBuilder = new StringBuilder(); - userAgentBuilder - .append("azsdk-java") - .append("-") - .append("com.azure.resourcemanager.synapse") - .append("/") - .append("1.0.0-beta.7"); + userAgentBuilder.append("azsdk-java").append("-").append("com.azure.resourcemanager.synapse").append("/") + .append("1.0.0-beta.1"); if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) { - userAgentBuilder - .append(" (") - .append(Configuration.getGlobalConfiguration().get("java.version")) - .append("; ") - .append(Configuration.getGlobalConfiguration().get("os.name")) - .append("; ") - .append(Configuration.getGlobalConfiguration().get("os.version")) - .append("; auto-generated)"); + userAgentBuilder.append(" (").append(Configuration.getGlobalConfiguration().get("java.version")) + .append("; ").append(Configuration.getGlobalConfiguration().get("os.name")).append("; ") + .append(Configuration.getGlobalConfiguration().get("os.version")).append("; auto-generated)"); } else { userAgentBuilder.append(" (auto-generated)"); } @@ -528,51 +519,38 @@ public SynapseManager authenticate(TokenCredential credential, AzureProfile prof policies.add(new UserAgentPolicy(userAgentBuilder.toString())); policies.add(new AddHeadersFromContextPolicy()); policies.add(new RequestIdPolicy()); - policies - .addAll( - this - .policies - .stream() - .filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_CALL) - .collect(Collectors.toList())); + policies.addAll(this.policies.stream().filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_CALL) + .collect(Collectors.toList())); HttpPolicyProviders.addBeforeRetryPolicies(policies); policies.add(retryPolicy); policies.add(new AddDatePolicy()); policies.add(new ArmChallengeAuthenticationPolicy(credential, scopes.toArray(new String[0]))); - policies - .addAll( - this - .policies - .stream() - .filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_RETRY) - .collect(Collectors.toList())); + policies.addAll(this.policies.stream() + .filter(p -> p.getPipelinePosition() == HttpPipelinePosition.PER_RETRY).collect(Collectors.toList())); HttpPolicyProviders.addAfterRetryPolicies(policies); policies.add(new HttpLoggingPolicy(httpLogOptions)); - HttpPipeline httpPipeline = - new HttpPipelineBuilder() - .httpClient(httpClient) - .policies(policies.toArray(new HttpPipelinePolicy[0])) - .build(); + HttpPipeline httpPipeline = new HttpPipelineBuilder().httpClient(httpClient) + .policies(policies.toArray(new HttpPipelinePolicy[0])).build(); return new SynapseManager(httpPipeline, profile, defaultPollInterval); } } /** * Gets the resource collection API of AzureADOnlyAuthentications. It manages AzureADOnlyAuthentication. - * + * * @return Resource collection API of AzureADOnlyAuthentications. */ public AzureADOnlyAuthentications azureADOnlyAuthentications() { if (this.azureADOnlyAuthentications == null) { - this.azureADOnlyAuthentications = - new AzureADOnlyAuthenticationsImpl(clientObject.getAzureADOnlyAuthentications(), this); + this.azureADOnlyAuthentications + = new AzureADOnlyAuthenticationsImpl(clientObject.getAzureADOnlyAuthentications(), this); } return azureADOnlyAuthentications; } /** * Gets the resource collection API of Operations. - * + * * @return Resource collection API of Operations. */ public Operations operations() { @@ -584,7 +562,7 @@ public Operations operations() { /** * Gets the resource collection API of IpFirewallRules. It manages IpFirewallRuleInfo. - * + * * @return Resource collection API of IpFirewallRules. */ public IpFirewallRules ipFirewallRules() { @@ -596,7 +574,7 @@ public IpFirewallRules ipFirewallRules() { /** * Gets the resource collection API of Keys. It manages Key. - * + * * @return Resource collection API of Keys. */ public Keys keys() { @@ -608,46 +586,46 @@ public Keys keys() { /** * Gets the resource collection API of PrivateEndpointConnections. It manages PrivateEndpointConnection. - * + * * @return Resource collection API of PrivateEndpointConnections. */ public PrivateEndpointConnections privateEndpointConnections() { if (this.privateEndpointConnections == null) { - this.privateEndpointConnections = - new PrivateEndpointConnectionsImpl(clientObject.getPrivateEndpointConnections(), this); + this.privateEndpointConnections + = new PrivateEndpointConnectionsImpl(clientObject.getPrivateEndpointConnections(), this); } return privateEndpointConnections; } /** * Gets the resource collection API of PrivateLinkResourcesOperations. - * + * * @return Resource collection API of PrivateLinkResourcesOperations. */ public PrivateLinkResourcesOperations privateLinkResourcesOperations() { if (this.privateLinkResourcesOperations == null) { - this.privateLinkResourcesOperations = - new PrivateLinkResourcesOperationsImpl(clientObject.getPrivateLinkResourcesOperations(), this); + this.privateLinkResourcesOperations + = new PrivateLinkResourcesOperationsImpl(clientObject.getPrivateLinkResourcesOperations(), this); } return privateLinkResourcesOperations; } /** * Gets the resource collection API of PrivateLinkHubPrivateLinkResources. - * + * * @return Resource collection API of PrivateLinkHubPrivateLinkResources. */ public PrivateLinkHubPrivateLinkResources privateLinkHubPrivateLinkResources() { if (this.privateLinkHubPrivateLinkResources == null) { - this.privateLinkHubPrivateLinkResources = - new PrivateLinkHubPrivateLinkResourcesImpl(clientObject.getPrivateLinkHubPrivateLinkResources(), this); + this.privateLinkHubPrivateLinkResources = new PrivateLinkHubPrivateLinkResourcesImpl( + clientObject.getPrivateLinkHubPrivateLinkResources(), this); } return privateLinkHubPrivateLinkResources; } /** * Gets the resource collection API of PrivateLinkHubs. It manages PrivateLinkHub. - * + * * @return Resource collection API of PrivateLinkHubs. */ public PrivateLinkHubs privateLinkHubs() { @@ -659,21 +637,20 @@ public PrivateLinkHubs privateLinkHubs() { /** * Gets the resource collection API of PrivateEndpointConnectionsPrivateLinkHubs. - * + * * @return Resource collection API of PrivateEndpointConnectionsPrivateLinkHubs. */ public PrivateEndpointConnectionsPrivateLinkHubs privateEndpointConnectionsPrivateLinkHubs() { if (this.privateEndpointConnectionsPrivateLinkHubs == null) { - this.privateEndpointConnectionsPrivateLinkHubs = - new PrivateEndpointConnectionsPrivateLinkHubsImpl( - clientObject.getPrivateEndpointConnectionsPrivateLinkHubs(), this); + this.privateEndpointConnectionsPrivateLinkHubs = new PrivateEndpointConnectionsPrivateLinkHubsImpl( + clientObject.getPrivateEndpointConnectionsPrivateLinkHubs(), this); } return privateEndpointConnectionsPrivateLinkHubs; } /** * Gets the resource collection API of SqlPools. It manages SqlPool. - * + * * @return Resource collection API of SqlPools. */ public SqlPools sqlPools() { @@ -685,59 +662,59 @@ public SqlPools sqlPools() { /** * Gets the resource collection API of SqlPoolMetadataSyncConfigs. - * + * * @return Resource collection API of SqlPoolMetadataSyncConfigs. */ public SqlPoolMetadataSyncConfigs sqlPoolMetadataSyncConfigs() { if (this.sqlPoolMetadataSyncConfigs == null) { - this.sqlPoolMetadataSyncConfigs = - new SqlPoolMetadataSyncConfigsImpl(clientObject.getSqlPoolMetadataSyncConfigs(), this); + this.sqlPoolMetadataSyncConfigs + = new SqlPoolMetadataSyncConfigsImpl(clientObject.getSqlPoolMetadataSyncConfigs(), this); } return sqlPoolMetadataSyncConfigs; } /** * Gets the resource collection API of SqlPoolOperationResults. - * + * * @return Resource collection API of SqlPoolOperationResults. */ public SqlPoolOperationResults sqlPoolOperationResults() { if (this.sqlPoolOperationResults == null) { - this.sqlPoolOperationResults = - new SqlPoolOperationResultsImpl(clientObject.getSqlPoolOperationResults(), this); + this.sqlPoolOperationResults + = new SqlPoolOperationResultsImpl(clientObject.getSqlPoolOperationResults(), this); } return sqlPoolOperationResults; } /** * Gets the resource collection API of SqlPoolGeoBackupPolicies. It manages GeoBackupPolicy. - * + * * @return Resource collection API of SqlPoolGeoBackupPolicies. */ public SqlPoolGeoBackupPolicies sqlPoolGeoBackupPolicies() { if (this.sqlPoolGeoBackupPolicies == null) { - this.sqlPoolGeoBackupPolicies = - new SqlPoolGeoBackupPoliciesImpl(clientObject.getSqlPoolGeoBackupPolicies(), this); + this.sqlPoolGeoBackupPolicies + = new SqlPoolGeoBackupPoliciesImpl(clientObject.getSqlPoolGeoBackupPolicies(), this); } return sqlPoolGeoBackupPolicies; } /** * Gets the resource collection API of SqlPoolDataWarehouseUserActivities. - * + * * @return Resource collection API of SqlPoolDataWarehouseUserActivities. */ public SqlPoolDataWarehouseUserActivities sqlPoolDataWarehouseUserActivities() { if (this.sqlPoolDataWarehouseUserActivities == null) { - this.sqlPoolDataWarehouseUserActivities = - new SqlPoolDataWarehouseUserActivitiesImpl(clientObject.getSqlPoolDataWarehouseUserActivities(), this); + this.sqlPoolDataWarehouseUserActivities = new SqlPoolDataWarehouseUserActivitiesImpl( + clientObject.getSqlPoolDataWarehouseUserActivities(), this); } return sqlPoolDataWarehouseUserActivities; } /** * Gets the resource collection API of SqlPoolRestorePoints. - * + * * @return Resource collection API of SqlPoolRestorePoints. */ public SqlPoolRestorePoints sqlPoolRestorePoints() { @@ -749,72 +726,72 @@ public SqlPoolRestorePoints sqlPoolRestorePoints() { /** * Gets the resource collection API of SqlPoolReplicationLinks. - * + * * @return Resource collection API of SqlPoolReplicationLinks. */ public SqlPoolReplicationLinks sqlPoolReplicationLinks() { if (this.sqlPoolReplicationLinks == null) { - this.sqlPoolReplicationLinks = - new SqlPoolReplicationLinksImpl(clientObject.getSqlPoolReplicationLinks(), this); + this.sqlPoolReplicationLinks + = new SqlPoolReplicationLinksImpl(clientObject.getSqlPoolReplicationLinks(), this); } return sqlPoolReplicationLinks; } /** * Gets the resource collection API of SqlPoolMaintenanceWindows. - * + * * @return Resource collection API of SqlPoolMaintenanceWindows. */ public SqlPoolMaintenanceWindows sqlPoolMaintenanceWindows() { if (this.sqlPoolMaintenanceWindows == null) { - this.sqlPoolMaintenanceWindows = - new SqlPoolMaintenanceWindowsImpl(clientObject.getSqlPoolMaintenanceWindows(), this); + this.sqlPoolMaintenanceWindows + = new SqlPoolMaintenanceWindowsImpl(clientObject.getSqlPoolMaintenanceWindows(), this); } return sqlPoolMaintenanceWindows; } /** * Gets the resource collection API of SqlPoolMaintenanceWindowOptions. - * + * * @return Resource collection API of SqlPoolMaintenanceWindowOptions. */ public SqlPoolMaintenanceWindowOptions sqlPoolMaintenanceWindowOptions() { if (this.sqlPoolMaintenanceWindowOptions == null) { - this.sqlPoolMaintenanceWindowOptions = - new SqlPoolMaintenanceWindowOptionsImpl(clientObject.getSqlPoolMaintenanceWindowOptions(), this); + this.sqlPoolMaintenanceWindowOptions + = new SqlPoolMaintenanceWindowOptionsImpl(clientObject.getSqlPoolMaintenanceWindowOptions(), this); } return sqlPoolMaintenanceWindowOptions; } /** * Gets the resource collection API of SqlPoolTransparentDataEncryptions. It manages TransparentDataEncryption. - * + * * @return Resource collection API of SqlPoolTransparentDataEncryptions. */ public SqlPoolTransparentDataEncryptions sqlPoolTransparentDataEncryptions() { if (this.sqlPoolTransparentDataEncryptions == null) { - this.sqlPoolTransparentDataEncryptions = - new SqlPoolTransparentDataEncryptionsImpl(clientObject.getSqlPoolTransparentDataEncryptions(), this); + this.sqlPoolTransparentDataEncryptions + = new SqlPoolTransparentDataEncryptionsImpl(clientObject.getSqlPoolTransparentDataEncryptions(), this); } return sqlPoolTransparentDataEncryptions; } /** * Gets the resource collection API of SqlPoolBlobAuditingPolicies. It manages SqlPoolBlobAuditingPolicy. - * + * * @return Resource collection API of SqlPoolBlobAuditingPolicies. */ public SqlPoolBlobAuditingPolicies sqlPoolBlobAuditingPolicies() { if (this.sqlPoolBlobAuditingPolicies == null) { - this.sqlPoolBlobAuditingPolicies = - new SqlPoolBlobAuditingPoliciesImpl(clientObject.getSqlPoolBlobAuditingPolicies(), this); + this.sqlPoolBlobAuditingPolicies + = new SqlPoolBlobAuditingPoliciesImpl(clientObject.getSqlPoolBlobAuditingPolicies(), this); } return sqlPoolBlobAuditingPolicies; } /** * Gets the resource collection API of SqlPoolOperations. - * + * * @return Resource collection API of SqlPoolOperations. */ public SqlPoolOperations sqlPoolOperations() { @@ -826,7 +803,7 @@ public SqlPoolOperations sqlPoolOperations() { /** * Gets the resource collection API of SqlPoolUsages. - * + * * @return Resource collection API of SqlPoolUsages. */ public SqlPoolUsages sqlPoolUsages() { @@ -838,34 +815,33 @@ public SqlPoolUsages sqlPoolUsages() { /** * Gets the resource collection API of SqlPoolSensitivityLabels. It manages SensitivityLabel. - * + * * @return Resource collection API of SqlPoolSensitivityLabels. */ public SqlPoolSensitivityLabels sqlPoolSensitivityLabels() { if (this.sqlPoolSensitivityLabels == null) { - this.sqlPoolSensitivityLabels = - new SqlPoolSensitivityLabelsImpl(clientObject.getSqlPoolSensitivityLabels(), this); + this.sqlPoolSensitivityLabels + = new SqlPoolSensitivityLabelsImpl(clientObject.getSqlPoolSensitivityLabels(), this); } return sqlPoolSensitivityLabels; } /** * Gets the resource collection API of SqlPoolRecommendedSensitivityLabels. - * + * * @return Resource collection API of SqlPoolRecommendedSensitivityLabels. */ public SqlPoolRecommendedSensitivityLabels sqlPoolRecommendedSensitivityLabels() { if (this.sqlPoolRecommendedSensitivityLabels == null) { - this.sqlPoolRecommendedSensitivityLabels = - new SqlPoolRecommendedSensitivityLabelsImpl( - clientObject.getSqlPoolRecommendedSensitivityLabels(), this); + this.sqlPoolRecommendedSensitivityLabels = new SqlPoolRecommendedSensitivityLabelsImpl( + clientObject.getSqlPoolRecommendedSensitivityLabels(), this); } return sqlPoolRecommendedSensitivityLabels; } /** * Gets the resource collection API of SqlPoolSchemas. - * + * * @return Resource collection API of SqlPoolSchemas. */ public SqlPoolSchemas sqlPoolSchemas() { @@ -877,7 +853,7 @@ public SqlPoolSchemas sqlPoolSchemas() { /** * Gets the resource collection API of SqlPoolTables. - * + * * @return Resource collection API of SqlPoolTables. */ public SqlPoolTables sqlPoolTables() { @@ -889,7 +865,7 @@ public SqlPoolTables sqlPoolTables() { /** * Gets the resource collection API of SqlPoolTableColumns. - * + * * @return Resource collection API of SqlPoolTableColumns. */ public SqlPoolTableColumns sqlPoolTableColumns() { @@ -901,53 +877,52 @@ public SqlPoolTableColumns sqlPoolTableColumns() { /** * Gets the resource collection API of SqlPoolConnectionPolicies. - * + * * @return Resource collection API of SqlPoolConnectionPolicies. */ public SqlPoolConnectionPolicies sqlPoolConnectionPolicies() { if (this.sqlPoolConnectionPolicies == null) { - this.sqlPoolConnectionPolicies = - new SqlPoolConnectionPoliciesImpl(clientObject.getSqlPoolConnectionPolicies(), this); + this.sqlPoolConnectionPolicies + = new SqlPoolConnectionPoliciesImpl(clientObject.getSqlPoolConnectionPolicies(), this); } return sqlPoolConnectionPolicies; } /** * Gets the resource collection API of SqlPoolVulnerabilityAssessments. It manages SqlPoolVulnerabilityAssessment. - * + * * @return Resource collection API of SqlPoolVulnerabilityAssessments. */ public SqlPoolVulnerabilityAssessments sqlPoolVulnerabilityAssessments() { if (this.sqlPoolVulnerabilityAssessments == null) { - this.sqlPoolVulnerabilityAssessments = - new SqlPoolVulnerabilityAssessmentsImpl(clientObject.getSqlPoolVulnerabilityAssessments(), this); + this.sqlPoolVulnerabilityAssessments + = new SqlPoolVulnerabilityAssessmentsImpl(clientObject.getSqlPoolVulnerabilityAssessments(), this); } return sqlPoolVulnerabilityAssessments; } /** * Gets the resource collection API of SqlPoolVulnerabilityAssessmentScans. - * + * * @return Resource collection API of SqlPoolVulnerabilityAssessmentScans. */ public SqlPoolVulnerabilityAssessmentScans sqlPoolVulnerabilityAssessmentScans() { if (this.sqlPoolVulnerabilityAssessmentScans == null) { - this.sqlPoolVulnerabilityAssessmentScans = - new SqlPoolVulnerabilityAssessmentScansImpl( - clientObject.getSqlPoolVulnerabilityAssessmentScans(), this); + this.sqlPoolVulnerabilityAssessmentScans = new SqlPoolVulnerabilityAssessmentScansImpl( + clientObject.getSqlPoolVulnerabilityAssessmentScans(), this); } return sqlPoolVulnerabilityAssessmentScans; } /** * Gets the resource collection API of SqlPoolSecurityAlertPolicies. It manages SqlPoolSecurityAlertPolicy. - * + * * @return Resource collection API of SqlPoolSecurityAlertPolicies. */ public SqlPoolSecurityAlertPolicies sqlPoolSecurityAlertPolicies() { if (this.sqlPoolSecurityAlertPolicies == null) { - this.sqlPoolSecurityAlertPolicies = - new SqlPoolSecurityAlertPoliciesImpl(clientObject.getSqlPoolSecurityAlertPolicies(), this); + this.sqlPoolSecurityAlertPolicies + = new SqlPoolSecurityAlertPoliciesImpl(clientObject.getSqlPoolSecurityAlertPolicies(), this); } return sqlPoolSecurityAlertPolicies; } @@ -955,14 +930,13 @@ public SqlPoolSecurityAlertPolicies sqlPoolSecurityAlertPolicies() { /** * Gets the resource collection API of SqlPoolVulnerabilityAssessmentRuleBaselines. It manages * SqlPoolVulnerabilityAssessmentRuleBaseline. - * + * * @return Resource collection API of SqlPoolVulnerabilityAssessmentRuleBaselines. */ public SqlPoolVulnerabilityAssessmentRuleBaselines sqlPoolVulnerabilityAssessmentRuleBaselines() { if (this.sqlPoolVulnerabilityAssessmentRuleBaselines == null) { - this.sqlPoolVulnerabilityAssessmentRuleBaselines = - new SqlPoolVulnerabilityAssessmentRuleBaselinesImpl( - clientObject.getSqlPoolVulnerabilityAssessmentRuleBaselines(), this); + this.sqlPoolVulnerabilityAssessmentRuleBaselines = new SqlPoolVulnerabilityAssessmentRuleBaselinesImpl( + clientObject.getSqlPoolVulnerabilityAssessmentRuleBaselines(), this); } return sqlPoolVulnerabilityAssessmentRuleBaselines; } @@ -970,21 +944,20 @@ public SqlPoolVulnerabilityAssessmentRuleBaselines sqlPoolVulnerabilityAssessmen /** * Gets the resource collection API of ExtendedSqlPoolBlobAuditingPolicies. It manages * ExtendedSqlPoolBlobAuditingPolicy. - * + * * @return Resource collection API of ExtendedSqlPoolBlobAuditingPolicies. */ public ExtendedSqlPoolBlobAuditingPolicies extendedSqlPoolBlobAuditingPolicies() { if (this.extendedSqlPoolBlobAuditingPolicies == null) { - this.extendedSqlPoolBlobAuditingPolicies = - new ExtendedSqlPoolBlobAuditingPoliciesImpl( - clientObject.getExtendedSqlPoolBlobAuditingPolicies(), this); + this.extendedSqlPoolBlobAuditingPolicies = new ExtendedSqlPoolBlobAuditingPoliciesImpl( + clientObject.getExtendedSqlPoolBlobAuditingPolicies(), this); } return extendedSqlPoolBlobAuditingPolicies; } /** * Gets the resource collection API of DataMaskingPolicies. It manages DataMaskingPolicy. - * + * * @return Resource collection API of DataMaskingPolicies. */ public DataMaskingPolicies dataMaskingPolicies() { @@ -996,7 +969,7 @@ public DataMaskingPolicies dataMaskingPolicies() { /** * Gets the resource collection API of DataMaskingRules. It manages DataMaskingRule. - * + * * @return Resource collection API of DataMaskingRules. */ public DataMaskingRules dataMaskingRules() { @@ -1008,7 +981,7 @@ public DataMaskingRules dataMaskingRules() { /** * Gets the resource collection API of SqlPoolColumns. - * + * * @return Resource collection API of SqlPoolColumns. */ public SqlPoolColumns sqlPoolColumns() { @@ -1020,7 +993,7 @@ public SqlPoolColumns sqlPoolColumns() { /** * Gets the resource collection API of SqlPoolWorkloadGroups. It manages WorkloadGroup. - * + * * @return Resource collection API of SqlPoolWorkloadGroups. */ public SqlPoolWorkloadGroups sqlPoolWorkloadGroups() { @@ -1032,13 +1005,13 @@ public SqlPoolWorkloadGroups sqlPoolWorkloadGroups() { /** * Gets the resource collection API of SqlPoolWorkloadClassifiers. It manages WorkloadClassifier. - * + * * @return Resource collection API of SqlPoolWorkloadClassifiers. */ public SqlPoolWorkloadClassifiers sqlPoolWorkloadClassifiers() { if (this.sqlPoolWorkloadClassifiers == null) { - this.sqlPoolWorkloadClassifiers = - new SqlPoolWorkloadClassifiersImpl(clientObject.getSqlPoolWorkloadClassifiers(), this); + this.sqlPoolWorkloadClassifiers + = new SqlPoolWorkloadClassifiersImpl(clientObject.getSqlPoolWorkloadClassifiers(), this); } return sqlPoolWorkloadClassifiers; } @@ -1046,14 +1019,13 @@ public SqlPoolWorkloadClassifiers sqlPoolWorkloadClassifiers() { /** * Gets the resource collection API of WorkspaceManagedSqlServerBlobAuditingPolicies. It manages * ServerBlobAuditingPolicy. - * + * * @return Resource collection API of WorkspaceManagedSqlServerBlobAuditingPolicies. */ public WorkspaceManagedSqlServerBlobAuditingPolicies workspaceManagedSqlServerBlobAuditingPolicies() { if (this.workspaceManagedSqlServerBlobAuditingPolicies == null) { - this.workspaceManagedSqlServerBlobAuditingPolicies = - new WorkspaceManagedSqlServerBlobAuditingPoliciesImpl( - clientObject.getWorkspaceManagedSqlServerBlobAuditingPolicies(), this); + this.workspaceManagedSqlServerBlobAuditingPolicies = new WorkspaceManagedSqlServerBlobAuditingPoliciesImpl( + clientObject.getWorkspaceManagedSqlServerBlobAuditingPolicies(), this); } return workspaceManagedSqlServerBlobAuditingPolicies; } @@ -1061,14 +1033,14 @@ public WorkspaceManagedSqlServerBlobAuditingPolicies workspaceManagedSqlServerBl /** * Gets the resource collection API of WorkspaceManagedSqlServerExtendedBlobAuditingPolicies. It manages * ExtendedServerBlobAuditingPolicy. - * + * * @return Resource collection API of WorkspaceManagedSqlServerExtendedBlobAuditingPolicies. */ public WorkspaceManagedSqlServerExtendedBlobAuditingPolicies workspaceManagedSqlServerExtendedBlobAuditingPolicies() { if (this.workspaceManagedSqlServerExtendedBlobAuditingPolicies == null) { - this.workspaceManagedSqlServerExtendedBlobAuditingPolicies = - new WorkspaceManagedSqlServerExtendedBlobAuditingPoliciesImpl( + this.workspaceManagedSqlServerExtendedBlobAuditingPolicies + = new WorkspaceManagedSqlServerExtendedBlobAuditingPoliciesImpl( clientObject.getWorkspaceManagedSqlServerExtendedBlobAuditingPolicies(), this); } return workspaceManagedSqlServerExtendedBlobAuditingPolicies; @@ -1077,13 +1049,13 @@ public WorkspaceManagedSqlServerBlobAuditingPolicies workspaceManagedSqlServerBl /** * Gets the resource collection API of WorkspaceManagedSqlServerSecurityAlertPolicies. It manages * ServerSecurityAlertPolicy. - * + * * @return Resource collection API of WorkspaceManagedSqlServerSecurityAlertPolicies. */ public WorkspaceManagedSqlServerSecurityAlertPolicies workspaceManagedSqlServerSecurityAlertPolicies() { if (this.workspaceManagedSqlServerSecurityAlertPolicies == null) { - this.workspaceManagedSqlServerSecurityAlertPolicies = - new WorkspaceManagedSqlServerSecurityAlertPoliciesImpl( + this.workspaceManagedSqlServerSecurityAlertPolicies + = new WorkspaceManagedSqlServerSecurityAlertPoliciesImpl( clientObject.getWorkspaceManagedSqlServerSecurityAlertPolicies(), this); } return workspaceManagedSqlServerSecurityAlertPolicies; @@ -1092,13 +1064,13 @@ public WorkspaceManagedSqlServerSecurityAlertPolicies workspaceManagedSqlServerS /** * Gets the resource collection API of WorkspaceManagedSqlServerVulnerabilityAssessments. It manages * ServerVulnerabilityAssessment. - * + * * @return Resource collection API of WorkspaceManagedSqlServerVulnerabilityAssessments. */ public WorkspaceManagedSqlServerVulnerabilityAssessments workspaceManagedSqlServerVulnerabilityAssessments() { if (this.workspaceManagedSqlServerVulnerabilityAssessments == null) { - this.workspaceManagedSqlServerVulnerabilityAssessments = - new WorkspaceManagedSqlServerVulnerabilityAssessmentsImpl( + this.workspaceManagedSqlServerVulnerabilityAssessments + = new WorkspaceManagedSqlServerVulnerabilityAssessmentsImpl( clientObject.getWorkspaceManagedSqlServerVulnerabilityAssessments(), this); } return workspaceManagedSqlServerVulnerabilityAssessments; @@ -1107,55 +1079,53 @@ public WorkspaceManagedSqlServerVulnerabilityAssessments workspaceManagedSqlServ /** * Gets the resource collection API of WorkspaceManagedSqlServerEncryptionProtectors. It manages * EncryptionProtector. - * + * * @return Resource collection API of WorkspaceManagedSqlServerEncryptionProtectors. */ public WorkspaceManagedSqlServerEncryptionProtectors workspaceManagedSqlServerEncryptionProtectors() { if (this.workspaceManagedSqlServerEncryptionProtectors == null) { - this.workspaceManagedSqlServerEncryptionProtectors = - new WorkspaceManagedSqlServerEncryptionProtectorsImpl( - clientObject.getWorkspaceManagedSqlServerEncryptionProtectors(), this); + this.workspaceManagedSqlServerEncryptionProtectors = new WorkspaceManagedSqlServerEncryptionProtectorsImpl( + clientObject.getWorkspaceManagedSqlServerEncryptionProtectors(), this); } return workspaceManagedSqlServerEncryptionProtectors; } /** * Gets the resource collection API of WorkspaceManagedSqlServerUsages. - * + * * @return Resource collection API of WorkspaceManagedSqlServerUsages. */ public WorkspaceManagedSqlServerUsages workspaceManagedSqlServerUsages() { if (this.workspaceManagedSqlServerUsages == null) { - this.workspaceManagedSqlServerUsages = - new WorkspaceManagedSqlServerUsagesImpl(clientObject.getWorkspaceManagedSqlServerUsages(), this); + this.workspaceManagedSqlServerUsages + = new WorkspaceManagedSqlServerUsagesImpl(clientObject.getWorkspaceManagedSqlServerUsages(), this); } return workspaceManagedSqlServerUsages; } /** * Gets the resource collection API of WorkspaceManagedSqlServerRecoverableSqlPools. - * + * * @return Resource collection API of WorkspaceManagedSqlServerRecoverableSqlPools. */ public WorkspaceManagedSqlServerRecoverableSqlPools workspaceManagedSqlServerRecoverableSqlPools() { if (this.workspaceManagedSqlServerRecoverableSqlPools == null) { - this.workspaceManagedSqlServerRecoverableSqlPools = - new WorkspaceManagedSqlServerRecoverableSqlPoolsImpl( - clientObject.getWorkspaceManagedSqlServerRecoverableSqlPools(), this); + this.workspaceManagedSqlServerRecoverableSqlPools = new WorkspaceManagedSqlServerRecoverableSqlPoolsImpl( + clientObject.getWorkspaceManagedSqlServerRecoverableSqlPools(), this); } return workspaceManagedSqlServerRecoverableSqlPools; } /** * Gets the resource collection API of WorkspaceManagedSqlServerDedicatedSqlMinimalTlsSettings. - * + * * @return Resource collection API of WorkspaceManagedSqlServerDedicatedSqlMinimalTlsSettings. */ public WorkspaceManagedSqlServerDedicatedSqlMinimalTlsSettings workspaceManagedSqlServerDedicatedSqlMinimalTlsSettings() { if (this.workspaceManagedSqlServerDedicatedSqlMinimalTlsSettings == null) { - this.workspaceManagedSqlServerDedicatedSqlMinimalTlsSettings = - new WorkspaceManagedSqlServerDedicatedSqlMinimalTlsSettingsImpl( + this.workspaceManagedSqlServerDedicatedSqlMinimalTlsSettings + = new WorkspaceManagedSqlServerDedicatedSqlMinimalTlsSettingsImpl( clientObject.getWorkspaceManagedSqlServerDedicatedSqlMinimalTlsSettings(), this); } return workspaceManagedSqlServerDedicatedSqlMinimalTlsSettings; @@ -1163,7 +1133,7 @@ public WorkspaceManagedSqlServerRecoverableSqlPools workspaceManagedSqlServerRec /** * Gets the resource collection API of Workspaces. It manages Workspace. - * + * * @return Resource collection API of Workspaces. */ public Workspaces workspaces() { @@ -1175,7 +1145,7 @@ public Workspaces workspaces() { /** * Gets the resource collection API of WorkspaceAadAdmins. - * + * * @return Resource collection API of WorkspaceAadAdmins. */ public WorkspaceAadAdmins workspaceAadAdmins() { @@ -1187,7 +1157,7 @@ public WorkspaceAadAdmins workspaceAadAdmins() { /** * Gets the resource collection API of WorkspaceSqlAadAdmins. - * + * * @return Resource collection API of WorkspaceSqlAadAdmins. */ public WorkspaceSqlAadAdmins workspaceSqlAadAdmins() { @@ -1199,34 +1169,33 @@ public WorkspaceSqlAadAdmins workspaceSqlAadAdmins() { /** * Gets the resource collection API of WorkspaceManagedIdentitySqlControlSettings. - * + * * @return Resource collection API of WorkspaceManagedIdentitySqlControlSettings. */ public WorkspaceManagedIdentitySqlControlSettings workspaceManagedIdentitySqlControlSettings() { if (this.workspaceManagedIdentitySqlControlSettings == null) { - this.workspaceManagedIdentitySqlControlSettings = - new WorkspaceManagedIdentitySqlControlSettingsImpl( - clientObject.getWorkspaceManagedIdentitySqlControlSettings(), this); + this.workspaceManagedIdentitySqlControlSettings = new WorkspaceManagedIdentitySqlControlSettingsImpl( + clientObject.getWorkspaceManagedIdentitySqlControlSettings(), this); } return workspaceManagedIdentitySqlControlSettings; } /** * Gets the resource collection API of RestorableDroppedSqlPools. - * + * * @return Resource collection API of RestorableDroppedSqlPools. */ public RestorableDroppedSqlPools restorableDroppedSqlPools() { if (this.restorableDroppedSqlPools == null) { - this.restorableDroppedSqlPools = - new RestorableDroppedSqlPoolsImpl(clientObject.getRestorableDroppedSqlPools(), this); + this.restorableDroppedSqlPools + = new RestorableDroppedSqlPoolsImpl(clientObject.getRestorableDroppedSqlPools(), this); } return restorableDroppedSqlPools; } /** * Gets the resource collection API of BigDataPools. It manages BigDataPoolResourceInfo. - * + * * @return Resource collection API of BigDataPools. */ public BigDataPools bigDataPools() { @@ -1238,7 +1207,7 @@ public BigDataPools bigDataPools() { /** * Gets the resource collection API of Libraries. - * + * * @return Resource collection API of Libraries. */ public Libraries libraries() { @@ -1250,7 +1219,7 @@ public Libraries libraries() { /** * Gets the resource collection API of LibrariesOperations. - * + * * @return Resource collection API of LibrariesOperations. */ public LibrariesOperations librariesOperations() { @@ -1262,7 +1231,7 @@ public LibrariesOperations librariesOperations() { /** * Gets the resource collection API of IntegrationRuntimes. It manages IntegrationRuntimeResource. - * + * * @return Resource collection API of IntegrationRuntimes. */ public IntegrationRuntimes integrationRuntimes() { @@ -1274,113 +1243,111 @@ public IntegrationRuntimes integrationRuntimes() { /** * Gets the resource collection API of IntegrationRuntimeNodeIpAddressOperations. - * + * * @return Resource collection API of IntegrationRuntimeNodeIpAddressOperations. */ public IntegrationRuntimeNodeIpAddressOperations integrationRuntimeNodeIpAddressOperations() { if (this.integrationRuntimeNodeIpAddressOperations == null) { - this.integrationRuntimeNodeIpAddressOperations = - new IntegrationRuntimeNodeIpAddressOperationsImpl( - clientObject.getIntegrationRuntimeNodeIpAddressOperations(), this); + this.integrationRuntimeNodeIpAddressOperations = new IntegrationRuntimeNodeIpAddressOperationsImpl( + clientObject.getIntegrationRuntimeNodeIpAddressOperations(), this); } return integrationRuntimeNodeIpAddressOperations; } /** * Gets the resource collection API of IntegrationRuntimeObjectMetadatas. - * + * * @return Resource collection API of IntegrationRuntimeObjectMetadatas. */ public IntegrationRuntimeObjectMetadatas integrationRuntimeObjectMetadatas() { if (this.integrationRuntimeObjectMetadatas == null) { - this.integrationRuntimeObjectMetadatas = - new IntegrationRuntimeObjectMetadatasImpl(clientObject.getIntegrationRuntimeObjectMetadatas(), this); + this.integrationRuntimeObjectMetadatas + = new IntegrationRuntimeObjectMetadatasImpl(clientObject.getIntegrationRuntimeObjectMetadatas(), this); } return integrationRuntimeObjectMetadatas; } /** * Gets the resource collection API of IntegrationRuntimeNodes. - * + * * @return Resource collection API of IntegrationRuntimeNodes. */ public IntegrationRuntimeNodes integrationRuntimeNodes() { if (this.integrationRuntimeNodes == null) { - this.integrationRuntimeNodes = - new IntegrationRuntimeNodesImpl(clientObject.getIntegrationRuntimeNodes(), this); + this.integrationRuntimeNodes + = new IntegrationRuntimeNodesImpl(clientObject.getIntegrationRuntimeNodes(), this); } return integrationRuntimeNodes; } /** * Gets the resource collection API of IntegrationRuntimeCredentials. - * + * * @return Resource collection API of IntegrationRuntimeCredentials. */ public IntegrationRuntimeCredentials integrationRuntimeCredentials() { if (this.integrationRuntimeCredentials == null) { - this.integrationRuntimeCredentials = - new IntegrationRuntimeCredentialsImpl(clientObject.getIntegrationRuntimeCredentials(), this); + this.integrationRuntimeCredentials + = new IntegrationRuntimeCredentialsImpl(clientObject.getIntegrationRuntimeCredentials(), this); } return integrationRuntimeCredentials; } /** * Gets the resource collection API of IntegrationRuntimeConnectionInfos. - * + * * @return Resource collection API of IntegrationRuntimeConnectionInfos. */ public IntegrationRuntimeConnectionInfos integrationRuntimeConnectionInfos() { if (this.integrationRuntimeConnectionInfos == null) { - this.integrationRuntimeConnectionInfos = - new IntegrationRuntimeConnectionInfosImpl(clientObject.getIntegrationRuntimeConnectionInfos(), this); + this.integrationRuntimeConnectionInfos + = new IntegrationRuntimeConnectionInfosImpl(clientObject.getIntegrationRuntimeConnectionInfos(), this); } return integrationRuntimeConnectionInfos; } /** * Gets the resource collection API of IntegrationRuntimeAuthKeysOperations. - * + * * @return Resource collection API of IntegrationRuntimeAuthKeysOperations. */ public IntegrationRuntimeAuthKeysOperations integrationRuntimeAuthKeysOperations() { if (this.integrationRuntimeAuthKeysOperations == null) { - this.integrationRuntimeAuthKeysOperations = - new IntegrationRuntimeAuthKeysOperationsImpl( - clientObject.getIntegrationRuntimeAuthKeysOperations(), this); + this.integrationRuntimeAuthKeysOperations = new IntegrationRuntimeAuthKeysOperationsImpl( + clientObject.getIntegrationRuntimeAuthKeysOperations(), this); } return integrationRuntimeAuthKeysOperations; } /** * Gets the resource collection API of IntegrationRuntimeMonitoringDatas. - * + * * @return Resource collection API of IntegrationRuntimeMonitoringDatas. */ public IntegrationRuntimeMonitoringDatas integrationRuntimeMonitoringDatas() { if (this.integrationRuntimeMonitoringDatas == null) { - this.integrationRuntimeMonitoringDatas = - new IntegrationRuntimeMonitoringDatasImpl(clientObject.getIntegrationRuntimeMonitoringDatas(), this); + this.integrationRuntimeMonitoringDatas + = new IntegrationRuntimeMonitoringDatasImpl(clientObject.getIntegrationRuntimeMonitoringDatas(), this); } return integrationRuntimeMonitoringDatas; } /** * Gets the resource collection API of IntegrationRuntimeStatusOperations. - * + * * @return Resource collection API of IntegrationRuntimeStatusOperations. */ public IntegrationRuntimeStatusOperations integrationRuntimeStatusOperations() { if (this.integrationRuntimeStatusOperations == null) { - this.integrationRuntimeStatusOperations = - new IntegrationRuntimeStatusOperationsImpl(clientObject.getIntegrationRuntimeStatusOperations(), this); + this.integrationRuntimeStatusOperations = new IntegrationRuntimeStatusOperationsImpl( + clientObject.getIntegrationRuntimeStatusOperations(), this); } return integrationRuntimeStatusOperations; } /** * Gets the resource collection API of Gets. - * + * * @return Resource collection API of Gets. */ public Gets gets() { @@ -1392,7 +1359,7 @@ public Gets gets() { /** * Gets the resource collection API of SparkConfigurations. - * + * * @return Resource collection API of SparkConfigurations. */ public SparkConfigurations sparkConfigurations() { @@ -1404,20 +1371,20 @@ public SparkConfigurations sparkConfigurations() { /** * Gets the resource collection API of SparkConfigurationsOperations. - * + * * @return Resource collection API of SparkConfigurationsOperations. */ public SparkConfigurationsOperations sparkConfigurationsOperations() { if (this.sparkConfigurationsOperations == null) { - this.sparkConfigurationsOperations = - new SparkConfigurationsOperationsImpl(clientObject.getSparkConfigurationsOperations(), this); + this.sparkConfigurationsOperations + = new SparkConfigurationsOperationsImpl(clientObject.getSparkConfigurationsOperations(), this); } return sparkConfigurationsOperations; } /** * Gets the resource collection API of KustoOperations. - * + * * @return Resource collection API of KustoOperations. */ public KustoOperations kustoOperations() { @@ -1429,7 +1396,7 @@ public KustoOperations kustoOperations() { /** * Gets the resource collection API of KustoPools. It manages KustoPool. - * + * * @return Resource collection API of KustoPools. */ public KustoPools kustoPools() { @@ -1441,13 +1408,13 @@ public KustoPools kustoPools() { /** * Gets the resource collection API of KustoPoolChildResources. - * + * * @return Resource collection API of KustoPoolChildResources. */ public KustoPoolChildResources kustoPoolChildResources() { if (this.kustoPoolChildResources == null) { - this.kustoPoolChildResources = - new KustoPoolChildResourcesImpl(clientObject.getKustoPoolChildResources(), this); + this.kustoPoolChildResources + = new KustoPoolChildResourcesImpl(clientObject.getKustoPoolChildResources(), this); } return kustoPoolChildResources; } @@ -1455,21 +1422,20 @@ public KustoPoolChildResources kustoPoolChildResources() { /** * Gets the resource collection API of KustoPoolAttachedDatabaseConfigurations. It manages * AttachedDatabaseConfiguration. - * + * * @return Resource collection API of KustoPoolAttachedDatabaseConfigurations. */ public KustoPoolAttachedDatabaseConfigurations kustoPoolAttachedDatabaseConfigurations() { if (this.kustoPoolAttachedDatabaseConfigurations == null) { - this.kustoPoolAttachedDatabaseConfigurations = - new KustoPoolAttachedDatabaseConfigurationsImpl( - clientObject.getKustoPoolAttachedDatabaseConfigurations(), this); + this.kustoPoolAttachedDatabaseConfigurations = new KustoPoolAttachedDatabaseConfigurationsImpl( + clientObject.getKustoPoolAttachedDatabaseConfigurations(), this); } return kustoPoolAttachedDatabaseConfigurations; } /** * Gets the resource collection API of KustoPoolDatabases. - * + * * @return Resource collection API of KustoPoolDatabases. */ public KustoPoolDatabases kustoPoolDatabases() { @@ -1481,26 +1447,26 @@ public KustoPoolDatabases kustoPoolDatabases() { /** * Gets the resource collection API of KustoPoolDataConnections. - * + * * @return Resource collection API of KustoPoolDataConnections. */ public KustoPoolDataConnections kustoPoolDataConnections() { if (this.kustoPoolDataConnections == null) { - this.kustoPoolDataConnections = - new KustoPoolDataConnectionsImpl(clientObject.getKustoPoolDataConnections(), this); + this.kustoPoolDataConnections + = new KustoPoolDataConnectionsImpl(clientObject.getKustoPoolDataConnections(), this); } return kustoPoolDataConnections; } /** * Gets the resource collection API of KustoPoolPrincipalAssignments. It manages ClusterPrincipalAssignment. - * + * * @return Resource collection API of KustoPoolPrincipalAssignments. */ public KustoPoolPrincipalAssignments kustoPoolPrincipalAssignments() { if (this.kustoPoolPrincipalAssignments == null) { - this.kustoPoolPrincipalAssignments = - new KustoPoolPrincipalAssignmentsImpl(clientObject.getKustoPoolPrincipalAssignments(), this); + this.kustoPoolPrincipalAssignments + = new KustoPoolPrincipalAssignmentsImpl(clientObject.getKustoPoolPrincipalAssignments(), this); } return kustoPoolPrincipalAssignments; } @@ -1508,35 +1474,35 @@ public KustoPoolPrincipalAssignments kustoPoolPrincipalAssignments() { /** * Gets the resource collection API of KustoPoolDatabasePrincipalAssignments. It manages * DatabasePrincipalAssignment. - * + * * @return Resource collection API of KustoPoolDatabasePrincipalAssignments. */ public KustoPoolDatabasePrincipalAssignments kustoPoolDatabasePrincipalAssignments() { if (this.kustoPoolDatabasePrincipalAssignments == null) { - this.kustoPoolDatabasePrincipalAssignments = - new KustoPoolDatabasePrincipalAssignmentsImpl( - clientObject.getKustoPoolDatabasePrincipalAssignments(), this); + this.kustoPoolDatabasePrincipalAssignments = new KustoPoolDatabasePrincipalAssignmentsImpl( + clientObject.getKustoPoolDatabasePrincipalAssignments(), this); } return kustoPoolDatabasePrincipalAssignments; } /** * Gets the resource collection API of KustoPoolPrivateLinkResourcesOperations. - * + * * @return Resource collection API of KustoPoolPrivateLinkResourcesOperations. */ public KustoPoolPrivateLinkResourcesOperations kustoPoolPrivateLinkResourcesOperations() { if (this.kustoPoolPrivateLinkResourcesOperations == null) { - this.kustoPoolPrivateLinkResourcesOperations = - new KustoPoolPrivateLinkResourcesOperationsImpl( - clientObject.getKustoPoolPrivateLinkResourcesOperations(), this); + this.kustoPoolPrivateLinkResourcesOperations = new KustoPoolPrivateLinkResourcesOperationsImpl( + clientObject.getKustoPoolPrivateLinkResourcesOperations(), this); } return kustoPoolPrivateLinkResourcesOperations; } /** - * @return Wrapped service client SynapseManagementClient providing direct access to the underlying auto-generated - * API implementation, based on Azure REST API. + * Gets wrapped service client SynapseManagementClient providing direct access to the underlying auto-generated API + * implementation, based on Azure REST API. + * + * @return Wrapped service client SynapseManagementClient. */ public SynapseManagementClient serviceClient() { return this.clientObject; diff --git a/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/AzureADOnlyAuthenticationsClient.java b/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/AzureADOnlyAuthenticationsClient.java index 156a684d9431..144d212ee017 100644 --- a/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/AzureADOnlyAuthenticationsClient.java +++ b/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/AzureADOnlyAuthenticationsClient.java @@ -14,13 +14,15 @@ import com.azure.resourcemanager.synapse.fluent.models.AzureADOnlyAuthenticationInner; import com.azure.resourcemanager.synapse.models.AzureADOnlyAuthenticationName; -/** An instance of this class provides access to all the operations defined in AzureADOnlyAuthenticationsClient. */ +/** + * An instance of this class provides access to all the operations defined in AzureADOnlyAuthenticationsClient. + */ public interface AzureADOnlyAuthenticationsClient { /** * Get Azure Active Directory only authentication property - * - *
Gets a Azure Active Directory only authentication property.
- *
+ *
+ * Gets a Azure Active Directory only authentication property.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param azureADOnlyAuthenticationName name of the property.
@@ -31,17 +33,14 @@ public interface AzureADOnlyAuthenticationsClient {
* @return a Azure Active Directory only authentication property along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Gets a Azure Active Directory only authentication property.
- *
+ *
+ * Gets a Azure Active Directory only authentication property.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param azureADOnlyAuthenticationName name of the property.
@@ -51,14 +50,14 @@ Response Create or Update a Azure Active Directory only authentication property for the workspaces.
- *
+ *
+ * Create or Update a Azure Active Directory only authentication property for the workspaces.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param azureADOnlyAuthenticationName name of the property.
@@ -70,16 +69,14 @@ AzureADOnlyAuthenticationInner get(
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller Create or Update a Azure Active Directory only authentication property for the workspaces.
- *
+ *
+ * Create or Update a Azure Active Directory only authentication property for the workspaces.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param azureADOnlyAuthenticationName name of the property.
@@ -92,17 +89,14 @@ SyncPoller Create or Update a Azure Active Directory only authentication property for the workspaces.
- *
+ *
+ * Create or Update a Azure Active Directory only authentication property for the workspaces.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param azureADOnlyAuthenticationName name of the property.
@@ -113,17 +107,15 @@ SyncPoller Create or Update a Azure Active Directory only authentication property for the workspaces.
- *
+ *
+ * Create or Update a Azure Active Directory only authentication property for the workspaces.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param azureADOnlyAuthenticationName name of the property.
@@ -135,34 +127,31 @@ AzureADOnlyAuthenticationInner create(
* @return azure Active Directory Only Authentication Info.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- AzureADOnlyAuthenticationInner create(
- String resourceGroupName,
- String workspaceName,
+ AzureADOnlyAuthenticationInner create(String resourceGroupName, String workspaceName,
AzureADOnlyAuthenticationName azureADOnlyAuthenticationName,
- AzureADOnlyAuthenticationInner azureADOnlyAuthenticationInfo,
- Context context);
+ AzureADOnlyAuthenticationInner azureADOnlyAuthenticationInfo, Context context);
/**
* Gets a list of Azure Active Directory only authentication property
- *
- * Gets a list of Azure Active Directory only authentication property for a workspace.
- *
+ *
+ * Gets a list of Azure Active Directory only authentication property for a workspace.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of Azure Active Directory only authentication property for a workspace as paginated response with
- * {@link PagedIterable}.
+ * {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable Gets a list of Azure Active Directory only authentication property for a workspace.
- *
+ *
+ * Gets a list of Azure Active Directory only authentication property for a workspace.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param context The context to associate with this operation.
@@ -170,7 +159,7 @@ AzureADOnlyAuthenticationInner create(
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a list of Azure Active Directory only authentication property for a workspace as paginated response with
- * {@link PagedIterable}.
+ * {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable Get a Big Data pool.
- *
+ *
+ * Get a Big Data pool.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -31,14 +33,14 @@ public interface BigDataPoolsClient {
* @return a Big Data pool along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Get a Big Data pool.
- *
+ *
+ * Get a Big Data pool.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -52,9 +54,9 @@ Response Patch a Big Data pool.
- *
+ *
+ * Patch a Big Data pool.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -66,18 +68,14 @@ Response Patch a Big Data pool.
- *
+ *
+ * Patch a Big Data pool.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -88,17 +86,14 @@ Response Create a new Big Data pool.
- *
+ *
+ * Create a new Big Data pool.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -110,16 +105,14 @@ BigDataPoolResourceInfoInner update(
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller Create a new Big Data pool.
- *
+ *
+ * Create a new Big Data pool.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -133,18 +126,14 @@ SyncPoller Create a new Big Data pool.
- *
+ *
+ * Create a new Big Data pool.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -155,17 +144,14 @@ SyncPoller Create a new Big Data pool.
- *
+ *
+ * Create a new Big Data pool.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -178,19 +164,14 @@ BigDataPoolResourceInfoInner createOrUpdate(
* @return big Data pool.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- BigDataPoolResourceInfoInner createOrUpdate(
- String resourceGroupName,
- String workspaceName,
- String bigDataPoolName,
- BigDataPoolResourceInfoInner bigDataPoolInfo,
- Boolean force,
- Context context);
+ BigDataPoolResourceInfoInner createOrUpdate(String resourceGroupName, String workspaceName, String bigDataPoolName,
+ BigDataPoolResourceInfoInner bigDataPoolInfo, Boolean force, Context context);
/**
* Delete a Big Data pool.
- *
- * Delete a Big Data pool from the workspace.
- *
+ *
+ * Delete a Big Data pool from the workspace.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -200,14 +181,14 @@ BigDataPoolResourceInfoInner createOrUpdate(
* @return the {@link SyncPoller} for polling of big Data pool.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller Delete a Big Data pool from the workspace.
- *
+ *
+ * Delete a Big Data pool from the workspace.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -218,14 +199,14 @@ SyncPoller Delete a Big Data pool from the workspace.
- *
+ *
+ * Delete a Big Data pool from the workspace.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -239,9 +220,9 @@ SyncPoller Delete a Big Data pool from the workspace.
- *
+ *
+ * Delete a Big Data pool from the workspace.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param bigDataPoolName Big Data pool name.
@@ -252,14 +233,14 @@ SyncPoller List Big Data pools in a workspace.
- *
+ *
+ * List Big Data pools in a workspace.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @throws IllegalArgumentException thrown if parameters fail the validation.
@@ -272,9 +253,9 @@ BigDataPoolResourceInfoInner delete(
/**
* List the Big Data pools in a workspace.
- *
- * List Big Data pools in a workspace.
- *
+ *
+ * List Big Data pools in a workspace.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param context The context to associate with this operation.
@@ -284,6 +265,6 @@ BigDataPoolResourceInfoInner delete(
* @return collection of Big Data pools as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
- PagedIterable Get an integration runtime start operation status.
- *
+ *
+ * Get an integration runtime start operation status.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -30,18 +32,14 @@ public interface GetsClient {
* @return an integration runtime start operation status along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Get an integration runtime start operation status.
- *
+ *
+ * Get an integration runtime start operation status.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -52,17 +50,14 @@ Response Get an integration runtime stop operation status.
- *
+ *
+ * Get an integration runtime stop operation status.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -74,18 +69,14 @@ IntegrationRuntimeOperationStatusInner integrationRuntimeStart(
* @return an integration runtime stop operation status along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Get an integration runtime stop operation status.
- *
+ *
+ * Get an integration runtime stop operation status.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -96,17 +87,14 @@ Response Get an integration runtime enable interactivequery operation status.
- *
+ *
+ * Get an integration runtime enable interactivequery operation status.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -119,17 +107,14 @@ IntegrationRuntimeStopOperationStatusInner integrationRuntimeStop(
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response Get an integration runtime enable interactivequery operation status.
- *
+ *
+ * Get an integration runtime enable interactivequery operation status.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -140,9 +125,6 @@ Response Regenerate the authentication key for an integration runtime.
- *
+ *
+ * Regenerate the authentication key for an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -32,18 +32,15 @@ public interface IntegrationRuntimeAuthKeysOperationsClient {
* @return the integration runtime authentication keys along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Regenerate the authentication key for an integration runtime.
- *
+ *
+ * Regenerate the authentication key for an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -54,17 +51,14 @@ Response List authentication keys in an integration runtime.
- *
+ *
+ * List authentication keys in an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -75,14 +69,14 @@ IntegrationRuntimeAuthKeysInner regenerate(
* @return the integration runtime authentication keys along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response List authentication keys in an integration runtime.
- *
+ *
+ * List authentication keys in an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
diff --git a/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeConnectionInfosClient.java b/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeConnectionInfosClient.java
index d7c25e8a34fc..344520337a8b 100644
--- a/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeConnectionInfosClient.java
+++ b/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeConnectionInfosClient.java
@@ -16,9 +16,9 @@
public interface IntegrationRuntimeConnectionInfosClient {
/**
* Get integration runtime connection info
- *
- * Get connection info for an integration runtime.
- *
+ *
+ * Get connection info for an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -29,14 +29,14 @@ public interface IntegrationRuntimeConnectionInfosClient {
* @return connection info for an integration runtime along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Get connection info for an integration runtime.
- *
+ *
+ * Get connection info for an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -46,6 +46,6 @@ Response Force the integration runtime to synchronize credentials across integration runtime nodes, and this will
- * override the credentials across all worker nodes with those available on the dispatcher node. If you already have
- * the latest credential backup file, you should manually import it (preferred) on any self-hosted integration
- * runtime node than using this API directly.
- *
+ *
+ * Force the integration runtime to synchronize credentials across integration runtime nodes, and this will override
+ * the credentials across all worker nodes with those available on the dispatcher node. If you already have the
+ * latest credential backup file, you should manually import it (preferred) on any self-hosted integration runtime
+ * node than using this API directly.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -29,17 +31,17 @@ public interface IntegrationRuntimeCredentialsClient {
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Force the integration runtime to synchronize credentials across integration runtime nodes, and this will
- * override the credentials across all worker nodes with those available on the dispatcher node. If you already have
- * the latest credential backup file, you should manually import it (preferred) on any self-hosted integration
- * runtime node than using this API directly.
- *
+ *
+ * Force the integration runtime to synchronize credentials across integration runtime nodes, and this will override
+ * the credentials across all worker nodes with those available on the dispatcher node. If you already have the
+ * latest credential backup file, you should manually import it (preferred) on any self-hosted integration runtime
+ * node than using this API directly.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
diff --git a/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeMonitoringDatasClient.java b/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeMonitoringDatasClient.java
index 8662ddbde9b2..9de579c55527 100644
--- a/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeMonitoringDatasClient.java
+++ b/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeMonitoringDatasClient.java
@@ -16,9 +16,9 @@
public interface IntegrationRuntimeMonitoringDatasClient {
/**
* Get integration runtime monitoring data
- *
- * Get monitoring data for an integration runtime.
- *
+ *
+ * Get monitoring data for an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -29,14 +29,14 @@ public interface IntegrationRuntimeMonitoringDatasClient {
* @return monitoring data for an integration runtime along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Get monitoring data for an integration runtime.
- *
+ *
+ * Get monitoring data for an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -46,6 +46,6 @@ Response Get the IP address of an integration runtime node.
- *
+ *
+ * Get the IP address of an integration runtime node.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -31,18 +31,14 @@ public interface IntegrationRuntimeNodeIpAddressOperationsClient {
* @return the IP address of an integration runtime node along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Get the IP address of an integration runtime node.
- *
+ *
+ * Get the IP address of an integration runtime node.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -53,6 +49,6 @@ Response Get an integration runtime node.
- *
+ *
+ * Get an integration runtime node.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -29,18 +31,14 @@ public interface IntegrationRuntimeNodesClient {
* @return an integration runtime node along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Get an integration runtime node.
- *
+ *
+ * Get an integration runtime node.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -51,14 +49,14 @@ Response Create an integration runtime node.
- *
+ *
+ * Create an integration runtime node.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -71,19 +69,15 @@ SelfHostedIntegrationRuntimeNodeInner get(
* @return properties of Self-hosted integration runtime node along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Create an integration runtime node.
- *
+ *
+ * Create an integration runtime node.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -95,18 +89,15 @@ Response Delete an integration runtime node.
- *
+ *
+ * Delete an integration runtime node.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -118,18 +109,14 @@ SelfHostedIntegrationRuntimeNodeInner update(
* @return the {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Delete an integration runtime node.
- *
+ *
+ * Delete an integration runtime node.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
diff --git a/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeObjectMetadatasClient.java b/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeObjectMetadatasClient.java
index e2a11f62ec57..f6f20eac18b4 100644
--- a/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeObjectMetadatasClient.java
+++ b/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeObjectMetadatasClient.java
@@ -20,9 +20,9 @@
public interface IntegrationRuntimeObjectMetadatasClient {
/**
* Get integration runtime object metadata
- *
- * Get object metadata from an integration runtime.
- *
+ *
+ * Get object metadata from an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -34,18 +34,14 @@ public interface IntegrationRuntimeObjectMetadatasClient {
* @return object metadata from an integration runtime along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Get object metadata from an integration runtime.
- *
+ *
+ * Get object metadata from an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -55,14 +51,14 @@ Response Refresh the object metadata in an integration runtime.
- *
+ *
+ * Refresh the object metadata in an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -72,14 +68,14 @@ SsisObjectMetadataListResponseInner list(
* @return the {@link SyncPoller} for polling of the status of the operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller Refresh the object metadata in an integration runtime.
- *
+ *
+ * Refresh the object metadata in an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -90,14 +86,14 @@ SyncPoller Refresh the object metadata in an integration runtime.
- *
+ *
+ * Refresh the object metadata in an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -107,14 +103,14 @@ SyncPoller Refresh the object metadata in an integration runtime.
- *
+ *
+ * Refresh the object metadata in an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -125,6 +121,6 @@ SsisObjectMetadataStatusResponseInner refresh(
* @return the status of the operation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- SsisObjectMetadataStatusResponseInner refresh(
- String resourceGroupName, String workspaceName, String integrationRuntimeName, Context context);
+ SsisObjectMetadataStatusResponseInner refresh(String resourceGroupName, String workspaceName,
+ String integrationRuntimeName, Context context);
}
diff --git a/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeStatusOperationsClient.java b/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeStatusOperationsClient.java
index 8ee0eb3fec07..eeb86da9368f 100644
--- a/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeStatusOperationsClient.java
+++ b/sdk/synapse/azure-resourcemanager-synapse/src/main/java/com/azure/resourcemanager/synapse/fluent/IntegrationRuntimeStatusOperationsClient.java
@@ -16,9 +16,9 @@
public interface IntegrationRuntimeStatusOperationsClient {
/**
* Get integration runtime status
- *
- * Get the integration runtime status.
- *
+ *
+ * Get the integration runtime status.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -29,14 +29,14 @@ public interface IntegrationRuntimeStatusOperationsClient {
* @return the integration runtime status along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Get the integration runtime status.
- *
+ *
+ * Get the integration runtime status.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -46,6 +46,6 @@ Response Update an integration runtime.
- *
+ *
+ * Update an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -34,18 +36,15 @@ public interface IntegrationRuntimesClient {
* @return integration runtime resource type along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Update an integration runtime.
- *
+ *
+ * Update an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -56,22 +55,19 @@ Response Get an integration runtime.
- *
+ *
+ * Get an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
* @param ifNoneMatch ETag of the integration runtime entity. Should only be specified for get. If the ETag matches
- * the existing entity tag, or if * was provided, then no content will be returned.
+ * the existing entity tag, or if * was provided, then no content will be returned.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
@@ -79,18 +75,14 @@ IntegrationRuntimeResourceInner update(
* @return an integration runtime along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- Response Get an integration runtime.
- *
+ *
+ * Get an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -104,9 +96,9 @@ Response Create an integration runtime.
- *
+ *
+ * Create an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -118,22 +110,20 @@ Response Create an integration runtime.
- *
+ *
+ * Create an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
* @param integrationRuntime Integration runtime resource definition.
* @param ifMatch ETag of the integration runtime entity. Should only be specified for update, for which it should
- * match existing entity or can be * for unconditional update.
+ * match existing entity or can be * for unconditional update.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
@@ -142,18 +132,14 @@ SyncPoller Create an integration runtime.
- *
+ *
+ * Create an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -164,23 +150,20 @@ SyncPoller Create an integration runtime.
- *
+ *
+ * Create an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
* @param integrationRuntime Integration runtime resource definition.
* @param ifMatch ETag of the integration runtime entity. Should only be specified for update, for which it should
- * match existing entity or can be * for unconditional update.
+ * match existing entity or can be * for unconditional update.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
@@ -188,19 +171,15 @@ IntegrationRuntimeResourceInner create(
* @return integration runtime resource type.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- IntegrationRuntimeResourceInner create(
- String resourceGroupName,
- String workspaceName,
- String integrationRuntimeName,
- IntegrationRuntimeResourceInner integrationRuntime,
- String ifMatch,
+ IntegrationRuntimeResourceInner create(String resourceGroupName, String workspaceName,
+ String integrationRuntimeName, IntegrationRuntimeResourceInner integrationRuntime, String ifMatch,
Context context);
/**
* Delete integration runtime
- *
- * Delete an integration runtime.
- *
+ *
+ * Delete an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -210,14 +189,14 @@ IntegrationRuntimeResourceInner create(
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller Delete an integration runtime.
- *
+ *
+ * Delete an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -228,14 +207,14 @@ SyncPoller Delete an integration runtime.
- *
+ *
+ * Delete an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -248,9 +227,9 @@ SyncPoller Delete an integration runtime.
- *
+ *
+ * Delete an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -264,9 +243,9 @@ SyncPoller Upgrade an integration runtime.
- *
+ *
+ * Upgrade an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -277,14 +256,14 @@ SyncPoller Upgrade an integration runtime.
- *
+ *
+ * Upgrade an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -297,9 +276,9 @@ Response List all integration runtimes.
- *
+ *
+ * List all integration runtimes.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @throws IllegalArgumentException thrown if parameters fail the validation.
@@ -312,9 +291,9 @@ Response List all integration runtimes.
- *
+ *
+ * List all integration runtimes.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param context The context to associate with this operation.
@@ -324,14 +303,14 @@ Response Start an integration runtime.
- *
+ *
+ * Start an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -341,14 +320,14 @@ PagedIterable Start an integration runtime.
- *
+ *
+ * Start an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -359,14 +338,14 @@ SyncPoller Start an integration runtime.
- *
+ *
+ * Start an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -376,14 +355,14 @@ SyncPoller Start an integration runtime.
- *
+ *
+ * Start an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -394,14 +373,14 @@ IntegrationRuntimeStatusResponseInner start(
* @return integration runtime status response.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
- IntegrationRuntimeStatusResponseInner start(
- String resourceGroupName, String workspaceName, String integrationRuntimeName, Context context);
+ IntegrationRuntimeStatusResponseInner start(String resourceGroupName, String workspaceName,
+ String integrationRuntimeName, Context context);
/**
* Stop integration runtime
- *
- * Stop an integration runtime.
- *
+ *
+ * Stop an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -411,14 +390,14 @@ IntegrationRuntimeStatusResponseInner start(
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller Stop an integration runtime.
- *
+ *
+ * Stop an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -429,14 +408,14 @@ SyncPoller Stop an integration runtime.
- *
+ *
+ * Stop an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -449,9 +428,9 @@ SyncPoller Stop an integration runtime.
- *
+ *
+ * Stop an integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -465,9 +444,9 @@ SyncPoller Gets the list of outbound network dependencies for a given Azure-SSIS integration runtime.
- *
+ *
+ * Gets the list of outbound network dependencies for a given Azure-SSIS integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -475,19 +454,19 @@ SyncPoller Gets the list of outbound network dependencies for a given Azure-SSIS integration runtime.
- *
+ *
+ * Gets the list of outbound network dependencies for a given Azure-SSIS integration runtime.
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -502,7 +481,7 @@ IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner listOutbound
/**
* Enable interactive query in integration runtime.
- *
+ *
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param workspaceName The name of the workspace.
* @param integrationRuntimeName Integration runtime name.
@@ -512,12 +491,12 @@ IntegrationRuntimeOutboundNetworkDependenciesEndpointsResponseInner listOutbound
* @return the {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
- SyncPoller