Bron van artefact ophalen.
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{name}?api-version=2018-09-15
Met optionele parameters:
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{name}?$expand={$expand}&api-version=2018-09-15
URI-parameters
Name |
In |
Vereist |
Type |
Description |
labName
|
path |
True
|
string
|
De naam van het lab.
|
name
|
path |
True
|
string
|
De naam van de artefactbron.
|
resourceGroupName
|
path |
True
|
string
|
De naam van de resourcegroep.
|
subscriptionId
|
path |
True
|
string
|
De abonnements-id.
|
api-version
|
query |
True
|
string
|
Client-API-versie.
|
$expand
|
query |
|
string
|
Geef de $expand query op. Voorbeeld: 'properties($select=displayName)'
|
Antwoorden
Beveiliging
azure_auth
Impliciete OAuth2-toekenning
Type:
oauth2
Stroom:
implicit
Autorisatie-URL:
https://login.microsoftonline.com/common/oauth2/authorize
Bereiken
Name |
Description |
user_impersonation
|
Toegang tot Microsoft Azure
|
Voorbeelden
ArtifactSources_Get
Voorbeeldaanvraag
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/resourceGroupName/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{artifactSourceName}?api-version=2018-09-15
/** Samples for ArtifactSources Get. */
public final class Main {
/*
* x-ms-original-file: specification/devtestlabs/resource-manager/Microsoft.DevTestLab/stable/2018-09-15/examples/ArtifactSources_Get.json
*/
/**
* Sample code: ArtifactSources_Get.
*
* @param manager Entry point to DevTestLabsManager.
*/
public static void artifactSourcesGet(com.azure.resourcemanager.devtestlabs.DevTestLabsManager manager) {
manager
.artifactSources()
.getWithResponse(
"resourceGroupName", "{labName}", "{artifactSourceName}", null, 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.devtestlabs import DevTestLabsClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-devtestlabs
# USAGE
python artifact_sources_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 = DevTestLabsClient(
credential=DefaultAzureCredential(),
subscription_id="{subscriptionId}",
)
response = client.artifact_sources.get(
resource_group_name="resourceGroupName",
lab_name="{labName}",
name="{artifactSourceName}",
)
print(response)
# x-ms-original-file: specification/devtestlabs/resource-manager/Microsoft.DevTestLab/stable/2018-09-15/examples/ArtifactSources_Get.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 armdevtestlabs_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/devtestlabs/armdevtestlabs"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/d55b8005f05b040b852c15e74a0f3e36494a15e1/specification/devtestlabs/resource-manager/Microsoft.DevTestLab/stable/2018-09-15/examples/ArtifactSources_Get.json
func ExampleArtifactSourcesClient_Get() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armdevtestlabs.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
res, err := clientFactory.NewArtifactSourcesClient().Get(ctx, "resourceGroupName", "{labName}", "{artifactSourceName}", &armdevtestlabs.ArtifactSourcesClientGetOptions{Expand: 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.ArtifactSource = armdevtestlabs.ArtifactSource{
// Name: to.Ptr("{artifactSourceName}"),
// Type: to.Ptr("Microsoft.DevTestLab/labs/artifactsources"),
// ID: to.Ptr("/subscriptions/{subscriptionId}/resourceGroups/resourceGroupName/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{artifactSourceName}"),
// Location: to.Ptr("{location}"),
// Tags: map[string]*string{
// "tagName1": to.Ptr("tagValue1"),
// },
// Properties: &armdevtestlabs.ArtifactSourceProperties{
// ArmTemplateFolderPath: to.Ptr("{armTemplateFolderPath}"),
// BranchRef: to.Ptr("{branchRef}"),
// CreatedDate: to.Ptr(func() time.Time { t, _ := time.Parse(time.RFC3339Nano, "2020-12-16T23:53:02.483Z"); return t}()),
// DisplayName: to.Ptr("{displayName}"),
// FolderPath: to.Ptr("{folderPath}"),
// ProvisioningState: to.Ptr("Succeeded"),
// SecurityToken: to.Ptr("{securityToken}"),
// SourceType: to.Ptr(armdevtestlabs.SourceControlType("{VsoGit|GitHub|StorageAccount}")),
// Status: to.Ptr(armdevtestlabs.EnableStatus("{Enabled|Disabled}")),
// UniqueIdentifier: to.Ptr("{uniqueIdentifier}"),
// URI: to.Ptr("{artifactSourceUri}"),
// },
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const { DevTestLabsClient } = require("@azure/arm-devtestlabs");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Get artifact source.
*
* @summary Get artifact source.
* x-ms-original-file: specification/devtestlabs/resource-manager/Microsoft.DevTestLab/stable/2018-09-15/examples/ArtifactSources_Get.json
*/
async function artifactSourcesGet() {
const subscriptionId = "{subscriptionId}";
const resourceGroupName = "resourceGroupName";
const labName = "{labName}";
const name = "{artifactSourceName}";
const credential = new DefaultAzureCredential();
const client = new DevTestLabsClient(credential, subscriptionId);
const result = await client.artifactSources.get(resourceGroupName, labName, name);
console.log(result);
}
artifactSourcesGet().catch(console.error);
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
using System;
using System.Threading.Tasks;
using Azure;
using Azure.Core;
using Azure.Identity;
using Azure.ResourceManager;
using Azure.ResourceManager.DevTestLabs;
using Azure.ResourceManager.DevTestLabs.Models;
// Generated from example definition: specification/devtestlabs/resource-manager/Microsoft.DevTestLab/stable/2018-09-15/examples/ArtifactSources_Get.json
// this example is just showing the usage of "ArtifactSources_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 DevTestLabResource created on azure
// for more information of creating DevTestLabResource, please refer to the document of DevTestLabResource
string subscriptionId = "{subscriptionId}";
string resourceGroupName = "resourceGroupName";
string labName = "{labName}";
ResourceIdentifier devTestLabResourceId = DevTestLabResource.CreateResourceIdentifier(subscriptionId, resourceGroupName, labName);
DevTestLabResource devTestLab = client.GetDevTestLabResource(devTestLabResourceId);
// get the collection of this DevTestLabArtifactSourceResource
DevTestLabArtifactSourceCollection collection = devTestLab.GetDevTestLabArtifactSources();
// invoke the operation
string name = "{artifactSourceName}";
NullableResponse<DevTestLabArtifactSourceResource> response = await collection.GetIfExistsAsync(name);
DevTestLabArtifactSourceResource result = response.HasValue ? response.Value : null;
if (result == null)
{
Console.WriteLine($"Succeeded with null as result");
}
else
{
// 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
DevTestLabArtifactSourceData 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
Voorbeeldrespons
{
"properties": {
"displayName": "{displayName}",
"uri": "{artifactSourceUri}",
"sourceType": "{VsoGit|GitHub|StorageAccount}",
"folderPath": "{folderPath}",
"armTemplateFolderPath": "{armTemplateFolderPath}",
"branchRef": "{branchRef}",
"securityToken": "{securityToken}",
"status": "{Enabled|Disabled}",
"createdDate": "2020-12-16T16:53:02.4830866-07:00",
"provisioningState": "Succeeded",
"uniqueIdentifier": "{uniqueIdentifier}"
},
"id": "/subscriptions/{subscriptionId}/resourceGroups/resourceGroupName/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{artifactSourceName}",
"name": "{artifactSourceName}",
"type": "Microsoft.DevTestLab/labs/artifactsources",
"location": "{location}",
"tags": {
"tagName1": "tagValue1"
}
}
Definities
ArtifactSource
Eigenschappen van een artefactbron.
Name |
Type |
Description |
id
|
string
|
De id van de resource.
|
location
|
string
|
De locatie van de resource.
|
name
|
string
|
De naam van de resource.
|
properties.armTemplateFolderPath
|
string
|
De map met Azure Resource Manager-sjablonen.
|
properties.branchRef
|
string
|
De vertakkingsreferentie van de artefactbron.
|
properties.createdDate
|
string
|
De aanmaakdatum van de artefactbron.
|
properties.displayName
|
string
|
De weergavenaam van de artefactbron.
|
properties.folderPath
|
string
|
De map met artefacten.
|
properties.provisioningState
|
string
|
De inrichtingsstatus van de resource.
|
properties.securityToken
|
string
|
Het beveiligingstoken dat moet worden geverifieerd bij de artefactbron.
|
properties.sourceType
|
SourceControlType
|
Het type van de artefactbron.
|
properties.status
|
EnableStatus
|
Geeft aan of de artefactbron is ingeschakeld (waarden: Ingeschakeld, Uitgeschakeld).
|
properties.uniqueIdentifier
|
string
|
De unieke onveranderbare id van een resource (GUID).
|
properties.uri
|
string
|
De URI van de artefactbron.
|
tags
|
object
|
De tags van de resource.
|
type
|
string
|
Het type resource.
|
CloudError
Fout van een REST-aanvraag.
Name |
Type |
Description |
error
|
CloudErrorBody
|
De cloudfout die is opgetreden
|
CloudErrorBody
Hoofdtekst van een fout van een REST-aanvraag.
Name |
Type |
Description |
code
|
string
|
De foutcode.
|
details
|
CloudErrorBody[]
|
Interne fouten.
|
message
|
string
|
Het foutbericht.
|
target
|
string
|
Het foutdoel.
|
EnableStatus
De status van de planning (ingeschakeld, uitgeschakeld)
Name |
Type |
Description |
Disabled
|
string
|
|
Enabled
|
string
|
|
SourceControlType
Het type van de artefactbron.
Name |
Type |
Description |
GitHub
|
string
|
|
StorageAccount
|
string
|
|
VsoGit
|
string
|
|