Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mgmt regen appservice and compute #13022

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1982,7 +1982,7 @@
<!-- Exclude NP_LOAD_OF_KNOWN_NULL_VALUE from the files generated by autorest -->
<Match>
<Package name="~com\.azure\.resourcemanager\.(.+)\.fluent"/>
<Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE,SKIPPED_CLASS_TOO_BIG"/>
<Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE,SIC_INNER_SHOULD_BE_STATIC_ANON,SKIPPED_CLASS_TOO_BIG"/>
</Match>

<!-- Exclude REC_CATCH_EXCEPTION for management samples. All samples in management catch Exception instead of throw it. -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import com.azure.core.http.HttpPipeline;
import com.azure.core.management.AzureEnvironment;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.resources.fluentcore.AzureServiceClient;
import com.azure.resourcemanager.appservice.fluent.AppServiceCertificateOrdersClient;
import com.azure.resourcemanager.appservice.fluent.AppServiceEnvironmentsClient;
import com.azure.resourcemanager.appservice.fluent.AppServicePlansClient;
Expand All @@ -25,6 +24,7 @@
import com.azure.resourcemanager.appservice.fluent.StaticSitesClient;
import com.azure.resourcemanager.appservice.fluent.TopLevelDomainsClient;
import com.azure.resourcemanager.appservice.fluent.WebAppsClient;
import com.azure.resourcemanager.resources.fluentcore.AzureServiceClient;

/** Initializes a new instance of the WebSiteManagementClient type. */
@ServiceClient(builder = WebSiteManagementClientBuilder.class)
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ public Mono<PagedResponse<CsmOperationDescriptionInner>> listOperationsSinglePag
new IllegalArgumentException(
"Parameter this.client.getEndpoint() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listOperations(this.client.getEndpoint(), this.client.getApiVersion(), context)
.map(
Expand Down Expand Up @@ -241,6 +242,7 @@ public Mono<PagedResponse<CsmOperationDescriptionInner>> listOperationsNextSingl
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listOperationsNext(nextLink, context)
.map(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ public Mono<PagedResponse<CertificateInner>> listSinglePageAsync(Context context
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.list(this.client.getEndpoint(), this.client.getSubscriptionId(), this.client.getApiVersion(), context)
.map(
Expand Down Expand Up @@ -369,6 +370,7 @@ public Mono<PagedResponse<CertificateInner>> listByResourceGroupSinglePageAsync(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listByResourceGroup(
this.client.getEndpoint(),
Expand Down Expand Up @@ -527,6 +529,7 @@ public Mono<Response<CertificateInner>> getByResourceGroupWithResponseAsync(
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.getByResourceGroup(
this.client.getEndpoint(),
Expand Down Expand Up @@ -709,6 +712,7 @@ public Mono<Response<CertificateInner>> createOrUpdateWithResponseAsync(
} else {
certificateEnvelope.validate();
}
context = this.client.mergeContext(context);
return service
.createOrUpdate(
this.client.getEndpoint(),
Expand Down Expand Up @@ -883,6 +887,7 @@ public Mono<Response<Void>> deleteWithResponseAsync(String resourceGroupName, St
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.delete(
this.client.getEndpoint(),
Expand Down Expand Up @@ -1047,6 +1052,7 @@ public Mono<Response<CertificateInner>> updateWithResponseAsync(
} else {
certificateEnvelope.validate();
}
context = this.client.mergeContext(context);
return service
.update(
this.client.getEndpoint(),
Expand Down Expand Up @@ -1187,6 +1193,7 @@ public Mono<PagedResponse<CertificateInner>> listNextSinglePageAsync(String next
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listNext(nextLink, context)
.map(
Expand Down Expand Up @@ -1244,6 +1251,7 @@ public Mono<PagedResponse<CertificateInner>> listByResourceGroupNextSinglePageAs
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listByResourceGroupNext(nextLink, context)
.map(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ public Mono<PagedResponse<DeletedSiteInner>> listSinglePageAsync(Context context
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.list(this.client.getEndpoint(), this.client.getSubscriptionId(), this.client.getApiVersion(), context)
.map(
Expand Down Expand Up @@ -312,6 +313,7 @@ public Mono<PagedResponse<DeletedSiteInner>> listByLocationSinglePageAsync(Strin
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listByLocation(
this.client.getEndpoint(),
Expand Down Expand Up @@ -468,6 +470,7 @@ public Mono<Response<DeletedSiteInner>> getDeletedWebAppByLocationWithResponseAs
new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.getDeletedWebAppByLocation(
this.client.getEndpoint(),
Expand Down Expand Up @@ -600,6 +603,7 @@ public Mono<PagedResponse<DeletedSiteInner>> listNextSinglePageAsync(String next
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listNext(nextLink, context)
.map(
Expand Down Expand Up @@ -656,6 +660,7 @@ public Mono<PagedResponse<DeletedSiteInner>> listByLocationNextSinglePageAsync(S
if (nextLink == null) {
return Mono.error(new IllegalArgumentException("Parameter nextLink is required and cannot be null."));
}
context = this.client.mergeContext(context);
return service
.listByLocationNext(nextLink, context)
.map(
Expand Down
Loading