Gets the SwapResource which identifies the slot type for the specified cloud service. The slot type on a cloud service can either be Staging or Production
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Compute/cloudServices/{resourceName}/providers/Microsoft.Network/cloudServiceSlots/swap?api-version=2024-03-01
URI Parameters
Name |
In |
Required |
Type |
Description |
groupName
|
path |
True
|
string
|
The name of the resource group.
|
resourceName
|
path |
True
|
string
|
The name of the cloud service.
|
singletonResource
|
path |
True
|
singletonResource
|
Specifies a synthetic proxy resource that cannot be created or deleted. Value must be set to swap.
|
subscriptionId
|
path |
True
|
string
|
The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
api-version
|
query |
True
|
string
|
Client API version.
|
Responses
Name |
Type |
Description |
200 OK
|
SwapResource
|
Request successful. The operation returns the slot type for the specified cloud service.
|
Other Status Codes
|
CloudError
|
Error response describing why the operation failed.
|
Security
azure_auth
Azure Active Directory OAuth2 Flow.
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Scopes
Name |
Description |
user_impersonation
|
impersonate your user account
|
Examples
Get swap resource
Sample request
GET https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Compute/cloudServices/testCloudService/providers/Microsoft.Network/cloudServiceSlots/swap?api-version=2024-03-01
/**
* Samples for VipSwap Get.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/CloudServiceSwapGet.json
*/
/**
* Sample code: Get swap resource.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void getSwapResource(com.azure.resourcemanager.AzureResourceManager azure) {
azure.networks().manager().serviceClient().getVipSwaps().getWithResponse("rg1", "testCloudService",
com.azure.core.util.Context.NONE);
}
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
from azure.identity import DefaultAzureCredential
from azure.mgmt.network import NetworkManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-network
# USAGE
python cloud_service_swap_get.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = NetworkManagementClient(
credential=DefaultAzureCredential(),
subscription_id="subid",
)
response = client.vip_swap.get(
group_name="rg1",
resource_name="testCloudService",
)
print(response)
# x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/CloudServiceSwapGet.json
if __name__ == "__main__":
main()
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
package armnetwork_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v6"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/4883fa5dbf6f2c9093fac8ce334547e9dfac68fa/specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/CloudServiceSwapGet.json
func ExampleVipSwapClient_Get() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armnetwork.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
res, err := clientFactory.NewVipSwapClient().Get(ctx, "rg1", "testCloudService", nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
// You could use response here. We use blank identifier for just demo purposes.
_ = res
// If the HTTP response code is 200 as defined in example definition, your response structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes.
// res.SwapResource = armnetwork.SwapResource{
// Name: to.Ptr("swap"),
// Type: to.Ptr("Microsoft.Network/cloudServiceSlots"),
// ID: to.Ptr("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Compute/cloudServices/testCloudService/providers/Microsoft.Network/cloudServiceSlots/swap"),
// Properties: &armnetwork.SwapResourceProperties{
// SlotType: to.Ptr(armnetwork.SlotTypeStaging),
// },
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const { NetworkManagementClient } = require("@azure/arm-network");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Gets the SwapResource which identifies the slot type for the specified cloud service. The slot type on a cloud service can either be Staging or Production
*
* @summary Gets the SwapResource which identifies the slot type for the specified cloud service. The slot type on a cloud service can either be Staging or Production
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/CloudServiceSwapGet.json
*/
async function getSwapResource() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
const groupName = "rg1";
const resourceName = "testCloudService";
const credential = new DefaultAzureCredential();
const client = new NetworkManagementClient(credential, subscriptionId);
const result = await client.vipSwap.get(groupName, resourceName);
console.log(result);
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
using Azure;
using Azure.ResourceManager;
using System;
using System.Threading.Tasks;
using Azure.Core;
using Azure.Identity;
using Azure.ResourceManager.Network.Models;
using Azure.ResourceManager.Network;
// Generated from example definition: specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/CloudServiceSwapGet.json
// this example is just showing the usage of "VipSwap_Get" operation, for the dependent resources, they will have to be created separately.
// get your azure access token, for more details of how Azure SDK get your access token, please refer to https://learn.microsoft.com/en-us/dotnet/azure/sdk/authentication?tabs=command-line
TokenCredential cred = new DefaultAzureCredential();
// authenticate your client
ArmClient client = new ArmClient(cred);
// this example assumes you already have this CloudServiceSwapResource created on azure
// for more information of creating CloudServiceSwapResource, please refer to the document of CloudServiceSwapResource
string subscriptionId = "subid";
string groupName = "rg1";
string resourceName = "testCloudService";
ResourceIdentifier cloudServiceSwapResourceId = CloudServiceSwapResource.CreateResourceIdentifier(subscriptionId, groupName, resourceName);
CloudServiceSwapResource cloudServiceSwap = client.GetCloudServiceSwapResource(cloudServiceSwapResourceId);
// invoke the operation
CloudServiceSwapResource result = await cloudServiceSwap.GetAsync();
// the variable result is a resource, you could call other operations on this instance as well
// but just for demo, we get its data from this resource instance
CloudServiceSwapData resourceData = result.Data;
// for demo we just print out the id
Console.WriteLine($"Succeeded on id: {resourceData.Id}");
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
Sample response
{
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Compute/cloudServices/testCloudService/providers/Microsoft.Network/cloudServiceSlots/swap",
"name": "swap",
"type": "Microsoft.Network/cloudServiceSlots",
"properties": {
"slotType": "Staging"
}
}
Definitions
CloudError
An error response from the service.
CloudErrorBody
An error response from the service.
Name |
Type |
Description |
code
|
string
|
An identifier for the error. Codes are invariant and are intended to be consumed programmatically.
|
details
|
CloudErrorBody[]
|
A list of additional details about the error.
|
message
|
string
|
A message describing the error, intended to be suitable for display in a user interface.
|
target
|
string
|
The target of the particular error. For example, the name of the property in error.
|
singletonResource
Specifies a synthetic proxy resource that cannot be created or deleted. Value must be set to swap.
Name |
Type |
Description |
swap
|
string
|
|
slotType
Specifies slot info on a cloud service
Name |
Type |
Description |
Production
|
string
|
|
Staging
|
string
|
|
SwapResource
SwapResource to represent slot type on the specified cloud service.
Name |
Type |
Description |
id
|
string
|
Resource Id.
|
name
|
string
|
Resource name.
|
properties
|
SwapResourceProperties
|
Swap resource properties
|
type
|
string
|
Resource type.
|
SwapResourceProperties
Swap resource properties
Name |
Type |
Description |
slotType
|
slotType
|
Specifies slot info on a cloud service
|