Descargue las necesidades de cumplimiento de instantáneas, como: Informe de cumplimiento, Lista de recursos.
POST https://management.azure.com/providers/Microsoft.AppComplianceAutomation/reports/{reportName}/snapshots/{snapshotName}/download?api-version=2024-06-27
Parámetros de identificador URI
Nombre |
En |
Requerido |
Tipo |
Description |
reportName
|
path |
True
|
string
pattern: ^[-a-zA-Z0-9_]{1,50}$
|
Nombre del informe.
|
snapshotName
|
path |
True
|
string
pattern: ^[a-zA-Z0-9-_]{1,64}$
|
Nombre de instantánea.
|
api-version
|
query |
True
|
string
minLength: 1
|
Versión de la API que se va a usar para esta operación.
|
Cuerpo de la solicitud
Nombre |
Requerido |
Tipo |
Description |
downloadType
|
True
|
DownloadType
|
Indica el tipo de descarga.
|
offerGuid
|
|
string
minLength: 1
|
OfferGuid que se asigna a los informes.
|
reportCreatorTenantId
|
|
string
|
Id. de inquilino.
|
Respuestas
Nombre |
Tipo |
Description |
200 OK
|
DownloadResponse
|
La operación de Azure se completó correctamente.
|
202 Accepted
|
|
Operación de recurso aceptada.
Encabezados
- Location: string
- Retry-After: integer
|
Other Status Codes
|
ErrorResponse
|
Una respuesta de error inesperada.
|
Seguridad
azure_auth
Flujo de OAuth2 de Azure Active Directory.
Tipo:
oauth2
Flujo:
implicit
Dirección URL de autorización:
https://login.microsoftonline.com/common/oauth2/authorize
Ámbitos
Nombre |
Description |
user_impersonation
|
suplantar la cuenta de usuario
|
Ejemplos
Snapshot_Download_ComplianceDetailedPdfReport
Solicitud de ejemplo
POST https://management.azure.com/providers/Microsoft.AppComplianceAutomation/reports/testReportName/snapshots/testSnapshotName/download?api-version=2024-06-27
{
"downloadType": "ComplianceDetailedPdfReport",
"offerGuid": "00000000-0000-0000-0000-000000000000",
"reportCreatorTenantId": "00000000-0000-0000-0000-000000000000"
}
/**
* Samples for Snapshot Download.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/
* examples/Snapshot_Download_Snapshot_Download_Compliance_Detailed_Pdf_Report.json
*/
/**
* Sample code: Snapshot_Download_ComplianceDetailedPdfReport.
*
* @param manager Entry point to AppComplianceAutomationManager.
*/
public static void snapshotDownloadComplianceDetailedPdfReport(
com.azure.resourcemanager.appcomplianceautomation.AppComplianceAutomationManager manager) {
manager.snapshots().download("testReportName", "testSnapshotName", 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
package armappcomplianceautomation_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcomplianceautomation/armappcomplianceautomation"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/d88c94b22a8efdd47c0cadfe6d8d489107db2b23/specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/examples/Snapshot_Download_Snapshot_Download_Compliance_Detailed_Pdf_Report.json
func ExampleSnapshotClient_BeginDownload_snapshotDownloadComplianceDetailedPdfReport() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armappcomplianceautomation.NewClientFactory(cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewSnapshotClient().BeginDownload(ctx, "testReportName", "testSnapshotName", armappcomplianceautomation.SnapshotDownloadRequest{}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %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.DownloadResponse = armappcomplianceautomation.DownloadResponse{
// ComplianceDetailedPDFReport: &armappcomplianceautomation.DownloadResponseComplianceDetailedPDFReport{
// SasURI: to.Ptr("this is a uri"),
// },
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const {
AppComplianceAutomationToolForMicrosoft365,
} = require("@azure/arm-appcomplianceautomation");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Download compliance needs from snapshot, like: Compliance Report, Resource List.
*
* @summary Download compliance needs from snapshot, like: Compliance Report, Resource List.
* x-ms-original-file: specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/examples/Snapshot_Download_Snapshot_Download_Compliance_Detailed_Pdf_Report.json
*/
async function snapshotDownloadComplianceDetailedPdfReport() {
const reportName = "testReportName";
const snapshotName = "testSnapshotName";
const credential = new DefaultAzureCredential();
const client = new AppComplianceAutomationToolForMicrosoft365(credential);
const result = await client.snapshot.beginDownloadAndWait(reportName, snapshotName, {
downloadType: "ComplianceDetailedPdfReport",
offerGuid: "00000000-0000-0000-0000-000000000000",
reportCreatorTenantId: "00000000-0000-0000-0000-000000000000",
});
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
Respuesta de muestra
{
"complianceDetailedPdfReport": {
"sasUri": "this is a uri"
}
}
Azure-AsyncOperation: https://management.azure.com/providers/Microsoft.AppComplianceAutomation/operationStatuses/{operationId}
Location: https://management.azure.com/providers/Microsoft.AppComplianceAutomation/operationResults/{operationId}
Snapshot_Download_CompliancePdfReport
Solicitud de ejemplo
POST https://management.azure.com/providers/Microsoft.AppComplianceAutomation/reports/testReportName/snapshots/testSnapshotName/download?api-version=2024-06-27
{
"downloadType": "CompliancePdfReport",
"offerGuid": "00000000-0000-0000-0000-000000000001",
"reportCreatorTenantId": "00000000-0000-0000-0000-000000000000"
}
/**
* Samples for Snapshot Download.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/
* examples/Snapshot_Download_Snapshot_Download_Compliance_Pdf_Report.json
*/
/**
* Sample code: Snapshot_Download_CompliancePdfReport.
*
* @param manager Entry point to AppComplianceAutomationManager.
*/
public static void snapshotDownloadCompliancePdfReport(
com.azure.resourcemanager.appcomplianceautomation.AppComplianceAutomationManager manager) {
manager.snapshots().download("testReportName", "testSnapshotName", 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
package armappcomplianceautomation_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcomplianceautomation/armappcomplianceautomation"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/d88c94b22a8efdd47c0cadfe6d8d489107db2b23/specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/examples/Snapshot_Download_Snapshot_Download_Compliance_Pdf_Report.json
func ExampleSnapshotClient_BeginDownload_snapshotDownloadCompliancePdfReport() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armappcomplianceautomation.NewClientFactory(cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewSnapshotClient().BeginDownload(ctx, "testReportName", "testSnapshotName", armappcomplianceautomation.SnapshotDownloadRequest{}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %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.DownloadResponse = armappcomplianceautomation.DownloadResponse{
// CompliancePDFReport: &armappcomplianceautomation.DownloadResponseCompliancePDFReport{
// SasURI: to.Ptr("this is uri of report"),
// },
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const {
AppComplianceAutomationToolForMicrosoft365,
} = require("@azure/arm-appcomplianceautomation");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Download compliance needs from snapshot, like: Compliance Report, Resource List.
*
* @summary Download compliance needs from snapshot, like: Compliance Report, Resource List.
* x-ms-original-file: specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/examples/Snapshot_Download_Snapshot_Download_Compliance_Pdf_Report.json
*/
async function snapshotDownloadCompliancePdfReport() {
const reportName = "testReportName";
const snapshotName = "testSnapshotName";
const credential = new DefaultAzureCredential();
const client = new AppComplianceAutomationToolForMicrosoft365(credential);
const result = await client.snapshot.beginDownloadAndWait(reportName, snapshotName, {
downloadType: "CompliancePdfReport",
offerGuid: "00000000-0000-0000-0000-000000000001",
reportCreatorTenantId: "00000000-0000-0000-0000-000000000000",
});
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
Respuesta de muestra
{
"compliancePdfReport": {
"sasUri": "this is uri of report"
}
}
Azure-AsyncOperation: https://management.azure.com/providers/Microsoft.AppComplianceAutomation/operationStatuses/{operationId}
Location: https://management.azure.com/providers/Microsoft.AppComplianceAutomation/operationResults/{operationId}
Snapshot_Download_ComplianceReport
Solicitud de ejemplo
POST https://management.azure.com/providers/Microsoft.AppComplianceAutomation/reports/testReportName/snapshots/testSnapshotName/download?api-version=2024-06-27
{
"downloadType": "ComplianceReport",
"offerGuid": "00000000-0000-0000-0000-000000000001",
"reportCreatorTenantId": "00000000-0000-0000-0000-000000000000"
}
/**
* Samples for Snapshot Download.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/
* examples/Snapshot_Download_Snapshot_Download_Compliance_Report.json
*/
/**
* Sample code: Snapshot_Download_ComplianceReport.
*
* @param manager Entry point to AppComplianceAutomationManager.
*/
public static void snapshotDownloadComplianceReport(
com.azure.resourcemanager.appcomplianceautomation.AppComplianceAutomationManager manager) {
manager.snapshots().download("testReportName", "testSnapshotName", 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
package armappcomplianceautomation_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcomplianceautomation/armappcomplianceautomation"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/d88c94b22a8efdd47c0cadfe6d8d489107db2b23/specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/examples/Snapshot_Download_Snapshot_Download_Compliance_Report.json
func ExampleSnapshotClient_BeginDownload_snapshotDownloadComplianceReport() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armappcomplianceautomation.NewClientFactory(cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewSnapshotClient().BeginDownload(ctx, "testReportName", "testSnapshotName", armappcomplianceautomation.SnapshotDownloadRequest{}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %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.DownloadResponse = armappcomplianceautomation.DownloadResponse{
// ComplianceReport: []*armappcomplianceautomation.ComplianceReportItem{
// {
// CategoryName: to.Ptr("Data Security & Privacy"),
// ControlFamilyName: to.Ptr("Incident Response"),
// ControlID: to.Ptr("Operational_Security_75"),
// ControlName: to.Ptr("Provide demonstrable evidence that all member of the incident response team have completed annual training or a table top exercise"),
// ControlStatus: to.Ptr(armappcomplianceautomation.ControlStatusPassed),
// ResourceID: to.Ptr("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/SignalR/mySignalRService"),
// ResourceOrigin: to.Ptr(armappcomplianceautomation.ResourceOriginAzure),
// ResourceStatus: to.Ptr(armappcomplianceautomation.ResourceStatusHealthy),
// ResourceStatusChangeDate: to.Ptr(func() time.Time { t, _ := time.Parse(time.RFC3339Nano, "2023-01-12T16:17:20.150Z"); return t}()),
// ResourceType: to.Ptr("Microsoft.SignalRService/SignalR"),
// ResponsibilityDescription: to.Ptr("Restrict access to the Kubernetes Service Management API by granting API access only to IP addresses in specific ranges. It is recommended to limit access to authorized IP ranges to ensure that only applications from allowed networks can access the cluster."),
// ResponsibilityTitle: to.Ptr("Authorized IP ranges should be defined on Kubernetes Services"),
// }},
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const {
AppComplianceAutomationToolForMicrosoft365,
} = require("@azure/arm-appcomplianceautomation");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Download compliance needs from snapshot, like: Compliance Report, Resource List.
*
* @summary Download compliance needs from snapshot, like: Compliance Report, Resource List.
* x-ms-original-file: specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/examples/Snapshot_Download_Snapshot_Download_Compliance_Report.json
*/
async function snapshotDownloadComplianceReport() {
const reportName = "testReportName";
const snapshotName = "testSnapshotName";
const credential = new DefaultAzureCredential();
const client = new AppComplianceAutomationToolForMicrosoft365(credential);
const result = await client.snapshot.beginDownloadAndWait(reportName, snapshotName, {
downloadType: "ComplianceReport",
offerGuid: "00000000-0000-0000-0000-000000000001",
reportCreatorTenantId: "00000000-0000-0000-0000-000000000000",
});
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
Respuesta de muestra
{
"complianceReport": [
{
"categoryName": "Data Security & Privacy",
"controlFamilyName": "Incident Response",
"controlId": "Operational_Security_75",
"controlName": "Provide demonstrable evidence that all member of the incident response team have completed annual training or a table top exercise",
"controlStatus": "Passed",
"resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/SignalR/mySignalRService",
"resourceOrigin": "Azure",
"resourceStatus": "Healthy",
"resourceStatusChangeDate": "2023-01-12T16:17:20.150Z",
"resourceType": "Microsoft.SignalRService/SignalR",
"responsibilityDescription": "Restrict access to the Kubernetes Service Management API by granting API access only to IP addresses in specific ranges. It is recommended to limit access to authorized IP ranges to ensure that only applications from allowed networks can access the cluster.",
"responsibilityTitle": "Authorized IP ranges should be defined on Kubernetes Services"
}
]
}
Azure-AsyncOperation: https://management.azure.com/providers/Microsoft.AppComplianceAutomation/operationStatuses/{operationId}
Location: https://management.azure.com/providers/Microsoft.AppComplianceAutomation/operationResults/{operationId}
Snapshot_Download_ResourceList
Solicitud de ejemplo
POST https://management.azure.com/providers/Microsoft.AppComplianceAutomation/reports/testReportName/snapshots/testSnapshotName/download?api-version=2024-06-27
{
"downloadType": "ResourceList",
"offerGuid": "00000000-0000-0000-0000-000000000001",
"reportCreatorTenantId": "00000000-0000-0000-0000-000000000000"
}
/**
* Samples for Snapshot Download.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/
* examples/Snapshot_Download_Snapshot_Download_Resource_List.json
*/
/**
* Sample code: Snapshot_Download_ResourceList.
*
* @param manager Entry point to AppComplianceAutomationManager.
*/
public static void snapshotDownloadResourceList(
com.azure.resourcemanager.appcomplianceautomation.AppComplianceAutomationManager manager) {
manager.snapshots().download("testReportName", "testSnapshotName", 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
package armappcomplianceautomation_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcomplianceautomation/armappcomplianceautomation"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/d88c94b22a8efdd47c0cadfe6d8d489107db2b23/specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/examples/Snapshot_Download_Snapshot_Download_Resource_List.json
func ExampleSnapshotClient_BeginDownload_snapshotDownloadResourceList() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armappcomplianceautomation.NewClientFactory(cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewSnapshotClient().BeginDownload(ctx, "testReportName", "testSnapshotName", armappcomplianceautomation.SnapshotDownloadRequest{}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %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.DownloadResponse = armappcomplianceautomation.DownloadResponse{
// ResourceList: []*armappcomplianceautomation.ResourceItem{
// {
// ResourceGroup: to.Ptr("myResourceGroup"),
// ResourceID: to.Ptr("mySignalRService"),
// ResourceType: to.Ptr("SignalR"),
// SubscriptionID: to.Ptr("00000000-0000-0000-0000-000000000000"),
// }},
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const {
AppComplianceAutomationToolForMicrosoft365,
} = require("@azure/arm-appcomplianceautomation");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Download compliance needs from snapshot, like: Compliance Report, Resource List.
*
* @summary Download compliance needs from snapshot, like: Compliance Report, Resource List.
* x-ms-original-file: specification/appcomplianceautomation/resource-manager/Microsoft.AppComplianceAutomation/stable/2024-06-27/examples/Snapshot_Download_Snapshot_Download_Resource_List.json
*/
async function snapshotDownloadResourceList() {
const reportName = "testReportName";
const snapshotName = "testSnapshotName";
const credential = new DefaultAzureCredential();
const client = new AppComplianceAutomationToolForMicrosoft365(credential);
const result = await client.snapshot.beginDownloadAndWait(reportName, snapshotName, {
downloadType: "ResourceList",
offerGuid: "00000000-0000-0000-0000-000000000001",
reportCreatorTenantId: "00000000-0000-0000-0000-000000000000",
});
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
Respuesta de muestra
{
"resourceList": [
{
"resourceGroup": "myResourceGroup",
"resourceId": "mySignalRService",
"resourceType": "SignalR",
"subscriptionId": "00000000-0000-0000-0000-000000000000"
}
]
}
Azure-AsyncOperation: https://management.azure.com/providers/Microsoft.AppComplianceAutomation/operationStatuses/{operationId}
Location: https://management.azure.com/providers/Microsoft.AppComplianceAutomation/operationResults/{operationId}
Definiciones
ComplianceReportItem
Object
Objeto que incluye todo el contenido para el resultado de cumplimiento único.
Nombre |
Tipo |
Description |
categoryName
|
string
|
Nombre de categoría.
|
controlFamilyName
|
string
|
Nombre de familia del control.
|
controlId
|
string
|
Identificador de control, por ejemplo, "1".
|
controlName
|
string
|
Nombre del control.
|
controlStatus
|
ControlStatus
|
Estado del control.
|
resourceId
|
string
|
Identificador del recurso.
|
resourceOrigin
|
ResourceOrigin
|
Origen del recurso.
|
resourceStatus
|
ResourceStatus
|
Estado del recurso.
|
resourceStatusChangeDate
|
string
(date-time)
|
Fecha de cambio de estado para el recurso.
|
resourceType
|
string
|
Tipo del recurso. Por ejemplo, "Microsoft.SignalRService/SignalR"
|
responsibilityDescription
|
string
|
Descripción de la responsabilidad del cliente.
|
responsibilityTitle
|
string
|
Título de la responsabilidad del cliente.
|
ControlStatus
Enumeración
Indica el estado del control.
Valor |
Description |
Failed
|
Error en el control.
|
NotApplicable
|
El control no es aplicable.
|
Passed
|
El control se pasa.
|
PendingApproval
|
El control está pendiente de aprobación.
|
DownloadResponse
Object
Objeto que incluye toda la respuesta posible para la operación de descarga.
DownloadResponseComplianceDetailedPdfReport
Object
Informe pdf de cumplimiento detallado
Nombre |
Tipo |
Description |
sasUri
|
string
|
El URI del informe pdf de cumplimiento detallado
|
DownloadResponseCompliancePdfReport
Object
Informe pdf de cumplimiento
Nombre |
Tipo |
Description |
sasUri
|
string
|
El URI del informe pdf de cumplimiento
|
DownloadType
Enumeración
Indica el tipo de descarga.
Valor |
Description |
ComplianceDetailedPdfReport
|
Descargue el informe pdf de cumplimiento detallado.
|
CompliancePdfReport
|
Descargue el informe pdf de cumplimiento.
|
ComplianceReport
|
Descargue el informe de cumplimiento.
|
ResourceList
|
Descargue la lista de recursos del informe.
|
ErrorAdditionalInfo
Object
Información adicional sobre el error de administración de recursos.
Nombre |
Tipo |
Description |
info
|
object
|
Información adicional.
|
type
|
string
|
Tipo de información adicional.
|
ErrorDetail
Object
Detalle del error.
Nombre |
Tipo |
Description |
additionalInfo
|
ErrorAdditionalInfo[]
|
Información adicional del error.
|
code
|
string
|
Código de error.
|
details
|
ErrorDetail[]
|
Detalles del error.
|
message
|
string
|
Mensaje de error.
|
target
|
string
|
Destino del error.
|
ErrorResponse
Object
Respuesta de error
Nombre |
Tipo |
Description |
error
|
ErrorDetail
|
Objeto de error.
|
ResourceItem
Object
Identificador de recurso.
Nombre |
Tipo |
Description |
resourceGroup
|
string
|
Nombre del grupo de recursos de este recurso.
|
resourceId
|
string
|
Identificador de recurso: por ejemplo, "/subscriptions/000000000-0000-0000-00000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
|
resourceType
|
string
|
Tipo de recurso de este recurso. Por ejemplo, "Microsoft.SignalRService/SignalR"
|
subscriptionId
|
string
|
Identificador de suscripción de este recurso.
|
ResourceOrigin
Enumeración
Origen del recurso.
Valor |
Description |
AWS
|
El recurso procede de AWS.
|
Azure
|
El recurso procede de Azure.
|
GCP
|
El recurso procede de GCP.
|
ResourceStatus
Enumeración
Indica el estado del recurso.
Valor |
Description |
Healthy
|
El recurso es correcto.
|
Unhealthy
|
El recurso es incorrecto.
|
SnapshotDownloadRequest
Object
Solicitud de descarga de instantánea.
Nombre |
Tipo |
Description |
downloadType
|
DownloadType
|
Indica el tipo de descarga.
|
offerGuid
|
string
minLength: 1
|
OfferGuid que se asigna a los informes.
|
reportCreatorTenantId
|
string
|
Id. de inquilino.
|