forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 27681 in Azure/azure-rest-api-specs
Merge 5746014d040bf3c8ac19243e481e5c03d92d2a53 into 39608b2c1c7b7dc06cb99abb9d733665cfce9a75
- Loading branch information
SDKAuto
committed
Feb 8, 2024
1 parent
c0f5c92
commit f476ed2
Showing
300 changed files
with
4,862 additions
and
8,900 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
sdk/paloaltonetworks/azure-resourcemanager-paloaltonetworks-ngfw/CHANGELOG.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,985 changes: 1,451 additions & 534 deletions
1,985
sdk/paloaltonetworks/azure-resourcemanager-paloaltonetworks-ngfw/SAMPLE.md
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
108 changes: 108 additions & 0 deletions
108
.../azure/resourcemanager/paloaltonetworks/ngfw/fluent/PaloAltoNetworksCloudngfwsClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.paloaltonetworks.ngfw.fluent; | ||
|
||
import com.azure.core.annotation.ReturnType; | ||
import com.azure.core.annotation.ServiceMethod; | ||
import com.azure.core.http.rest.Response; | ||
import com.azure.core.util.Context; | ||
import com.azure.resourcemanager.paloaltonetworks.ngfw.fluent.models.CloudManagerTenantInner; | ||
import com.azure.resourcemanager.paloaltonetworks.ngfw.fluent.models.ProductSerialNumberRequestStatusInner; | ||
import com.azure.resourcemanager.paloaltonetworks.ngfw.fluent.models.ProductSerialNumberStatusInner; | ||
import com.azure.resourcemanager.paloaltonetworks.ngfw.fluent.models.SupportInfoModelInner; | ||
import java.util.List; | ||
|
||
/** | ||
* An instance of this class provides access to all the operations defined in PaloAltoNetworksCloudngfwsClient. | ||
*/ | ||
public interface PaloAltoNetworksCloudngfwsClient { | ||
/** | ||
* The createProductSerialNumber operation. | ||
* | ||
* @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. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return create Product Serial Number Request status along with {@link Response}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Response<ProductSerialNumberRequestStatusInner> createProductSerialNumberWithResponse(Context context); | ||
|
||
/** | ||
* The createProductSerialNumber operation. | ||
* | ||
* @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 create Product Serial Number Request status. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
ProductSerialNumberRequestStatusInner createProductSerialNumber(); | ||
|
||
/** | ||
* The listCloudManagerTenants operation. | ||
* | ||
* @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. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return array of CloudManagerTenant along with {@link Response}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Response<List<CloudManagerTenantInner>> listCloudManagerTenantsWithResponse(Context context); | ||
|
||
/** | ||
* The listCloudManagerTenants operation. | ||
* | ||
* @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 array of CloudManagerTenant. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
List<CloudManagerTenantInner> listCloudManagerTenants(); | ||
|
||
/** | ||
* The listProductSerialNumberStatus operation. | ||
* | ||
* @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. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return product serial and status for the service along with {@link Response}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Response<ProductSerialNumberStatusInner> listProductSerialNumberStatusWithResponse(Context context); | ||
|
||
/** | ||
* The listProductSerialNumberStatus operation. | ||
* | ||
* @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 product serial and status for the service. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
ProductSerialNumberStatusInner listProductSerialNumberStatus(); | ||
|
||
/** | ||
* The listSupportInfo operation. | ||
* | ||
* @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. | ||
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. | ||
* @return support information for the service along with {@link Response}. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
Response<SupportInfoModelInner> listSupportInfoWithResponse(Context context); | ||
|
||
/** | ||
* The listSupportInfo operation. | ||
* | ||
* @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 support information for the service. | ||
*/ | ||
@ServiceMethod(returns = ReturnType.SINGLE) | ||
SupportInfoModelInner listSupportInfo(); | ||
} |
Oops, something went wrong.