Untitled Collection
GET
EvidenceStore_GetEvidence
{{baseUrl}}/v1/evidence_store/evidences/:evidenceId
QUERY PARAMS
evidenceId
Examples
REQUEST
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "{{baseUrl}}/v1/evidence_store/evidences/:evidenceId");
CURLcode ret = curl_easy_perform(hnd);
(require '[clj-http.client :as client])
(client/get "{{baseUrl}}/v1/evidence_store/evidences/:evidenceId")
require "http/client"
url = "{{baseUrl}}/v1/evidence_store/evidences/:evidenceId"
response = HTTP::Client.get url
puts response.body
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Get,
RequestUri = new Uri("{{baseUrl}}/v1/evidence_store/evidences/:evidenceId"),
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
var client = new RestClient("{{baseUrl}}/v1/evidence_store/evidences/:evidenceId");
var request = new RestRequest("", Method.Get);
var response = client.Execute(request);
package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "{{baseUrl}}/v1/evidence_store/evidences/:evidenceId"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
GET /baseUrl/v1/evidence_store/evidences/:evidenceId HTTP/1.1
Host: example.com
AsyncHttpClient client = new DefaultAsyncHttpClient();
client.prepare("GET", "{{baseUrl}}/v1/evidence_store/evidences/:evidenceId")
.execute()
.toCompletableFuture()
.thenAccept(System.out::println)
.join();
client.close();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("{{baseUrl}}/v1/evidence_store/evidences/:evidenceId"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("{{baseUrl}}/v1/evidence_store/evidences/:evidenceId")
.get()
.build();
Response response = client.newCall(request).execute();
HttpResponse response = Unirest.get("{{baseUrl}}/v1/evidence_store/evidences/:evidenceId")
.asString();
const data = null;
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('GET', '{{baseUrl}}/v1/evidence_store/evidences/:evidenceId');
xhr.send(data);
import axios from 'axios';
const options = {
method: 'GET',
url: '{{baseUrl}}/v1/evidence_store/evidences/:evidenceId'
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const url = '{{baseUrl}}/v1/evidence_store/evidences/:evidenceId';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
const settings = {
async: true,
crossDomain: true,
url: '{{baseUrl}}/v1/evidence_store/evidences/:evidenceId',
method: 'GET',
headers: {}
};
$.ajax(settings).done(function (response) {
console.log(response);
});
val client = OkHttpClient()
val request = Request.Builder()
.url("{{baseUrl}}/v1/evidence_store/evidences/:evidenceId")
.get()
.build()
val response = client.newCall(request).execute()
const http = require('https');
const options = {
method: 'GET',
hostname: 'example.com',
port: null,
path: '/baseUrl/v1/evidence_store/evidences/:evidenceId',
headers: {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on('data', function (chunk) {
chunks.push(chunk);
});
res.on('end', function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
const request = require('request');
const options = {
method: 'GET',
url: '{{baseUrl}}/v1/evidence_store/evidences/:evidenceId'
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
const unirest = require('unirest');
const req = unirest('GET', '{{baseUrl}}/v1/evidence_store/evidences/:evidenceId');
req.end(function (res) {
if (res.error) throw new Error(res.error);
console.log(res.body);
});
const axios = require('axios').default;
const options = {
method: 'GET',
url: '{{baseUrl}}/v1/evidence_store/evidences/:evidenceId'
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const fetch = require('node-fetch');
const url = '{{baseUrl}}/v1/evidence_store/evidences/:evidenceId';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
#import
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"{{baseUrl}}/v1/evidence_store/evidences/:evidenceId"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:10.0];
[request setHTTPMethod:@"GET"];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error) {
NSLog(@"%@", error);
} else {
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
NSLog(@"%@", httpResponse);
}
}];
[dataTask resume];
open Cohttp_lwt_unix
open Cohttp
open Lwt
let uri = Uri.of_string "{{baseUrl}}/v1/evidence_store/evidences/:evidenceId" in
Client.call `GET uri
>>= fun (res, body_stream) ->
(* Do stuff with the result *)
"{{baseUrl}}/v1/evidence_store/evidences/:evidenceId",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
request('GET', '{{baseUrl}}/v1/evidence_store/evidences/:evidenceId');
echo $response->getBody();
setUrl('{{baseUrl}}/v1/evidence_store/evidences/:evidenceId');
$request->setMethod(HTTP_METH_GET);
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
setRequestUrl('{{baseUrl}}/v1/evidence_store/evidences/:evidenceId');
$request->setRequestMethod('GET');
$client->enqueue($request)->send();
$response = $client->getResponse();
echo $response->getBody();
$response = Invoke-WebRequest -Uri '{{baseUrl}}/v1/evidence_store/evidences/:evidenceId' -Method GET
$response = Invoke-RestMethod -Uri '{{baseUrl}}/v1/evidence_store/evidences/:evidenceId' -Method GET
import http.client
conn = http.client.HTTPSConnection("example.com")
conn.request("GET", "/baseUrl/v1/evidence_store/evidences/:evidenceId")
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
import requests
url = "{{baseUrl}}/v1/evidence_store/evidences/:evidenceId"
response = requests.get(url)
print(response.json())
library(httr)
url <- "{{baseUrl}}/v1/evidence_store/evidences/:evidenceId"
response <- VERB("GET", url, content_type("application/octet-stream"))
content(response, "text")
require 'uri'
require 'net/http'
url = URI("{{baseUrl}}/v1/evidence_store/evidences/:evidenceId")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body
require 'faraday'
conn = Faraday.new(
url: 'https://example.com',
)
response = conn.get('/baseUrl/v1/evidence_store/evidences/:evidenceId') do |req|
end
puts response.status
puts response.body
use reqwest;
#[tokio::main]
pub async fn main() {
let url = "{{baseUrl}}/v1/evidence_store/evidences/:evidenceId";
let client = reqwest::Client::new();
let response = client.get(url)
.send()
.await;
let results = response.unwrap()
.json::()
.await
.unwrap();
dbg!(results);
}
curl --request GET \
--url {{baseUrl}}/v1/evidence_store/evidences/:evidenceId
http GET {{baseUrl}}/v1/evidence_store/evidences/:evidenceId
wget --quiet \
--method GET \
--output-document \
- {{baseUrl}}/v1/evidence_store/evidences/:evidenceId
import Foundation
let request = NSMutableURLRequest(url: NSURL(string: "{{baseUrl}}/v1/evidence_store/evidences/:evidenceId")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error as Any)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
GET
EvidenceStore_ListEvidences
{{baseUrl}}/v1/evidence_store/evidences
Examples
REQUEST
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "{{baseUrl}}/v1/evidence_store/evidences");
CURLcode ret = curl_easy_perform(hnd);
(require '[clj-http.client :as client])
(client/get "{{baseUrl}}/v1/evidence_store/evidences")
require "http/client"
url = "{{baseUrl}}/v1/evidence_store/evidences"
response = HTTP::Client.get url
puts response.body
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Get,
RequestUri = new Uri("{{baseUrl}}/v1/evidence_store/evidences"),
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
var client = new RestClient("{{baseUrl}}/v1/evidence_store/evidences");
var request = new RestRequest("", Method.Get);
var response = client.Execute(request);
package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "{{baseUrl}}/v1/evidence_store/evidences"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
GET /baseUrl/v1/evidence_store/evidences HTTP/1.1
Host: example.com
AsyncHttpClient client = new DefaultAsyncHttpClient();
client.prepare("GET", "{{baseUrl}}/v1/evidence_store/evidences")
.execute()
.toCompletableFuture()
.thenAccept(System.out::println)
.join();
client.close();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("{{baseUrl}}/v1/evidence_store/evidences"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("{{baseUrl}}/v1/evidence_store/evidences")
.get()
.build();
Response response = client.newCall(request).execute();
HttpResponse response = Unirest.get("{{baseUrl}}/v1/evidence_store/evidences")
.asString();
const data = null;
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('GET', '{{baseUrl}}/v1/evidence_store/evidences');
xhr.send(data);
import axios from 'axios';
const options = {method: 'GET', url: '{{baseUrl}}/v1/evidence_store/evidences'};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const url = '{{baseUrl}}/v1/evidence_store/evidences';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
const settings = {
async: true,
crossDomain: true,
url: '{{baseUrl}}/v1/evidence_store/evidences',
method: 'GET',
headers: {}
};
$.ajax(settings).done(function (response) {
console.log(response);
});
val client = OkHttpClient()
val request = Request.Builder()
.url("{{baseUrl}}/v1/evidence_store/evidences")
.get()
.build()
val response = client.newCall(request).execute()
const http = require('https');
const options = {
method: 'GET',
hostname: 'example.com',
port: null,
path: '/baseUrl/v1/evidence_store/evidences',
headers: {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on('data', function (chunk) {
chunks.push(chunk);
});
res.on('end', function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
const request = require('request');
const options = {method: 'GET', url: '{{baseUrl}}/v1/evidence_store/evidences'};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
const unirest = require('unirest');
const req = unirest('GET', '{{baseUrl}}/v1/evidence_store/evidences');
req.end(function (res) {
if (res.error) throw new Error(res.error);
console.log(res.body);
});
const axios = require('axios').default;
const options = {method: 'GET', url: '{{baseUrl}}/v1/evidence_store/evidences'};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const fetch = require('node-fetch');
const url = '{{baseUrl}}/v1/evidence_store/evidences';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
#import
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"{{baseUrl}}/v1/evidence_store/evidences"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:10.0];
[request setHTTPMethod:@"GET"];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error) {
NSLog(@"%@", error);
} else {
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
NSLog(@"%@", httpResponse);
}
}];
[dataTask resume];
open Cohttp_lwt_unix
open Cohttp
open Lwt
let uri = Uri.of_string "{{baseUrl}}/v1/evidence_store/evidences" in
Client.call `GET uri
>>= fun (res, body_stream) ->
(* Do stuff with the result *)
"{{baseUrl}}/v1/evidence_store/evidences",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
request('GET', '{{baseUrl}}/v1/evidence_store/evidences');
echo $response->getBody();
setUrl('{{baseUrl}}/v1/evidence_store/evidences');
$request->setMethod(HTTP_METH_GET);
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
setRequestUrl('{{baseUrl}}/v1/evidence_store/evidences');
$request->setRequestMethod('GET');
$client->enqueue($request)->send();
$response = $client->getResponse();
echo $response->getBody();
$response = Invoke-WebRequest -Uri '{{baseUrl}}/v1/evidence_store/evidences' -Method GET
$response = Invoke-RestMethod -Uri '{{baseUrl}}/v1/evidence_store/evidences' -Method GET
import http.client
conn = http.client.HTTPSConnection("example.com")
conn.request("GET", "/baseUrl/v1/evidence_store/evidences")
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
import requests
url = "{{baseUrl}}/v1/evidence_store/evidences"
response = requests.get(url)
print(response.json())
library(httr)
url <- "{{baseUrl}}/v1/evidence_store/evidences"
response <- VERB("GET", url, content_type("application/octet-stream"))
content(response, "text")
require 'uri'
require 'net/http'
url = URI("{{baseUrl}}/v1/evidence_store/evidences")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body
require 'faraday'
conn = Faraday.new(
url: 'https://example.com',
)
response = conn.get('/baseUrl/v1/evidence_store/evidences') do |req|
end
puts response.status
puts response.body
use reqwest;
#[tokio::main]
pub async fn main() {
let url = "{{baseUrl}}/v1/evidence_store/evidences";
let client = reqwest::Client::new();
let response = client.get(url)
.send()
.await;
let results = response.unwrap()
.json::()
.await
.unwrap();
dbg!(results);
}
curl --request GET \
--url {{baseUrl}}/v1/evidence_store/evidences
http GET {{baseUrl}}/v1/evidence_store/evidences
wget --quiet \
--method GET \
--output-document \
- {{baseUrl}}/v1/evidence_store/evidences
import Foundation
let request = NSMutableURLRequest(url: NSURL(string: "{{baseUrl}}/v1/evidence_store/evidences")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error as Any)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
GET
EvidenceStore_ListResources
{{baseUrl}}/v1/evidence_store/resources
Examples
REQUEST
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "{{baseUrl}}/v1/evidence_store/resources");
CURLcode ret = curl_easy_perform(hnd);
(require '[clj-http.client :as client])
(client/get "{{baseUrl}}/v1/evidence_store/resources")
require "http/client"
url = "{{baseUrl}}/v1/evidence_store/resources"
response = HTTP::Client.get url
puts response.body
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Get,
RequestUri = new Uri("{{baseUrl}}/v1/evidence_store/resources"),
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
var client = new RestClient("{{baseUrl}}/v1/evidence_store/resources");
var request = new RestRequest("", Method.Get);
var response = client.Execute(request);
package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "{{baseUrl}}/v1/evidence_store/resources"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
GET /baseUrl/v1/evidence_store/resources HTTP/1.1
Host: example.com
AsyncHttpClient client = new DefaultAsyncHttpClient();
client.prepare("GET", "{{baseUrl}}/v1/evidence_store/resources")
.execute()
.toCompletableFuture()
.thenAccept(System.out::println)
.join();
client.close();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("{{baseUrl}}/v1/evidence_store/resources"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("{{baseUrl}}/v1/evidence_store/resources")
.get()
.build();
Response response = client.newCall(request).execute();
HttpResponse response = Unirest.get("{{baseUrl}}/v1/evidence_store/resources")
.asString();
const data = null;
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('GET', '{{baseUrl}}/v1/evidence_store/resources');
xhr.send(data);
import axios from 'axios';
const options = {method: 'GET', url: '{{baseUrl}}/v1/evidence_store/resources'};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const url = '{{baseUrl}}/v1/evidence_store/resources';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
const settings = {
async: true,
crossDomain: true,
url: '{{baseUrl}}/v1/evidence_store/resources',
method: 'GET',
headers: {}
};
$.ajax(settings).done(function (response) {
console.log(response);
});
val client = OkHttpClient()
val request = Request.Builder()
.url("{{baseUrl}}/v1/evidence_store/resources")
.get()
.build()
val response = client.newCall(request).execute()
const http = require('https');
const options = {
method: 'GET',
hostname: 'example.com',
port: null,
path: '/baseUrl/v1/evidence_store/resources',
headers: {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on('data', function (chunk) {
chunks.push(chunk);
});
res.on('end', function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
const request = require('request');
const options = {method: 'GET', url: '{{baseUrl}}/v1/evidence_store/resources'};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
const unirest = require('unirest');
const req = unirest('GET', '{{baseUrl}}/v1/evidence_store/resources');
req.end(function (res) {
if (res.error) throw new Error(res.error);
console.log(res.body);
});
const axios = require('axios').default;
const options = {method: 'GET', url: '{{baseUrl}}/v1/evidence_store/resources'};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const fetch = require('node-fetch');
const url = '{{baseUrl}}/v1/evidence_store/resources';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
#import
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"{{baseUrl}}/v1/evidence_store/resources"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:10.0];
[request setHTTPMethod:@"GET"];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error) {
NSLog(@"%@", error);
} else {
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
NSLog(@"%@", httpResponse);
}
}];
[dataTask resume];
open Cohttp_lwt_unix
open Cohttp
open Lwt
let uri = Uri.of_string "{{baseUrl}}/v1/evidence_store/resources" in
Client.call `GET uri
>>= fun (res, body_stream) ->
(* Do stuff with the result *)
"{{baseUrl}}/v1/evidence_store/resources",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
request('GET', '{{baseUrl}}/v1/evidence_store/resources');
echo $response->getBody();
setUrl('{{baseUrl}}/v1/evidence_store/resources');
$request->setMethod(HTTP_METH_GET);
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
setRequestUrl('{{baseUrl}}/v1/evidence_store/resources');
$request->setRequestMethod('GET');
$client->enqueue($request)->send();
$response = $client->getResponse();
echo $response->getBody();
$response = Invoke-WebRequest -Uri '{{baseUrl}}/v1/evidence_store/resources' -Method GET
$response = Invoke-RestMethod -Uri '{{baseUrl}}/v1/evidence_store/resources' -Method GET
import http.client
conn = http.client.HTTPSConnection("example.com")
conn.request("GET", "/baseUrl/v1/evidence_store/resources")
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
import requests
url = "{{baseUrl}}/v1/evidence_store/resources"
response = requests.get(url)
print(response.json())
library(httr)
url <- "{{baseUrl}}/v1/evidence_store/resources"
response <- VERB("GET", url, content_type("application/octet-stream"))
content(response, "text")
require 'uri'
require 'net/http'
url = URI("{{baseUrl}}/v1/evidence_store/resources")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body
require 'faraday'
conn = Faraday.new(
url: 'https://example.com',
)
response = conn.get('/baseUrl/v1/evidence_store/resources') do |req|
end
puts response.status
puts response.body
use reqwest;
#[tokio::main]
pub async fn main() {
let url = "{{baseUrl}}/v1/evidence_store/resources";
let client = reqwest::Client::new();
let response = client.get(url)
.send()
.await;
let results = response.unwrap()
.json::()
.await
.unwrap();
dbg!(results);
}
curl --request GET \
--url {{baseUrl}}/v1/evidence_store/resources
http GET {{baseUrl}}/v1/evidence_store/resources
wget --quiet \
--method GET \
--output-document \
- {{baseUrl}}/v1/evidence_store/resources
import Foundation
let request = NSMutableURLRequest(url: NSURL(string: "{{baseUrl}}/v1/evidence_store/resources")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error as Any)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
GET
EvidenceStore_ListSupportedResourceTypes
{{baseUrl}}/v1/evidence_store/supported_resource_types
Examples
REQUEST
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "{{baseUrl}}/v1/evidence_store/supported_resource_types");
CURLcode ret = curl_easy_perform(hnd);
(require '[clj-http.client :as client])
(client/get "{{baseUrl}}/v1/evidence_store/supported_resource_types")
require "http/client"
url = "{{baseUrl}}/v1/evidence_store/supported_resource_types"
response = HTTP::Client.get url
puts response.body
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Get,
RequestUri = new Uri("{{baseUrl}}/v1/evidence_store/supported_resource_types"),
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
var client = new RestClient("{{baseUrl}}/v1/evidence_store/supported_resource_types");
var request = new RestRequest("", Method.Get);
var response = client.Execute(request);
package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "{{baseUrl}}/v1/evidence_store/supported_resource_types"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
GET /baseUrl/v1/evidence_store/supported_resource_types HTTP/1.1
Host: example.com
AsyncHttpClient client = new DefaultAsyncHttpClient();
client.prepare("GET", "{{baseUrl}}/v1/evidence_store/supported_resource_types")
.execute()
.toCompletableFuture()
.thenAccept(System.out::println)
.join();
client.close();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("{{baseUrl}}/v1/evidence_store/supported_resource_types"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("{{baseUrl}}/v1/evidence_store/supported_resource_types")
.get()
.build();
Response response = client.newCall(request).execute();
HttpResponse response = Unirest.get("{{baseUrl}}/v1/evidence_store/supported_resource_types")
.asString();
const data = null;
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('GET', '{{baseUrl}}/v1/evidence_store/supported_resource_types');
xhr.send(data);
import axios from 'axios';
const options = {
method: 'GET',
url: '{{baseUrl}}/v1/evidence_store/supported_resource_types'
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const url = '{{baseUrl}}/v1/evidence_store/supported_resource_types';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
const settings = {
async: true,
crossDomain: true,
url: '{{baseUrl}}/v1/evidence_store/supported_resource_types',
method: 'GET',
headers: {}
};
$.ajax(settings).done(function (response) {
console.log(response);
});
val client = OkHttpClient()
val request = Request.Builder()
.url("{{baseUrl}}/v1/evidence_store/supported_resource_types")
.get()
.build()
val response = client.newCall(request).execute()
const http = require('https');
const options = {
method: 'GET',
hostname: 'example.com',
port: null,
path: '/baseUrl/v1/evidence_store/supported_resource_types',
headers: {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on('data', function (chunk) {
chunks.push(chunk);
});
res.on('end', function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
const request = require('request');
const options = {
method: 'GET',
url: '{{baseUrl}}/v1/evidence_store/supported_resource_types'
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
const unirest = require('unirest');
const req = unirest('GET', '{{baseUrl}}/v1/evidence_store/supported_resource_types');
req.end(function (res) {
if (res.error) throw new Error(res.error);
console.log(res.body);
});
const axios = require('axios').default;
const options = {
method: 'GET',
url: '{{baseUrl}}/v1/evidence_store/supported_resource_types'
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const fetch = require('node-fetch');
const url = '{{baseUrl}}/v1/evidence_store/supported_resource_types';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
#import
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"{{baseUrl}}/v1/evidence_store/supported_resource_types"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:10.0];
[request setHTTPMethod:@"GET"];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error) {
NSLog(@"%@", error);
} else {
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
NSLog(@"%@", httpResponse);
}
}];
[dataTask resume];
open Cohttp_lwt_unix
open Cohttp
open Lwt
let uri = Uri.of_string "{{baseUrl}}/v1/evidence_store/supported_resource_types" in
Client.call `GET uri
>>= fun (res, body_stream) ->
(* Do stuff with the result *)
"{{baseUrl}}/v1/evidence_store/supported_resource_types",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
request('GET', '{{baseUrl}}/v1/evidence_store/supported_resource_types');
echo $response->getBody();
setUrl('{{baseUrl}}/v1/evidence_store/supported_resource_types');
$request->setMethod(HTTP_METH_GET);
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
setRequestUrl('{{baseUrl}}/v1/evidence_store/supported_resource_types');
$request->setRequestMethod('GET');
$client->enqueue($request)->send();
$response = $client->getResponse();
echo $response->getBody();
$response = Invoke-WebRequest -Uri '{{baseUrl}}/v1/evidence_store/supported_resource_types' -Method GET
$response = Invoke-RestMethod -Uri '{{baseUrl}}/v1/evidence_store/supported_resource_types' -Method GET
import http.client
conn = http.client.HTTPSConnection("example.com")
conn.request("GET", "/baseUrl/v1/evidence_store/supported_resource_types")
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
import requests
url = "{{baseUrl}}/v1/evidence_store/supported_resource_types"
response = requests.get(url)
print(response.json())
library(httr)
url <- "{{baseUrl}}/v1/evidence_store/supported_resource_types"
response <- VERB("GET", url, content_type("application/octet-stream"))
content(response, "text")
require 'uri'
require 'net/http'
url = URI("{{baseUrl}}/v1/evidence_store/supported_resource_types")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body
require 'faraday'
conn = Faraday.new(
url: 'https://example.com',
)
response = conn.get('/baseUrl/v1/evidence_store/supported_resource_types') do |req|
end
puts response.status
puts response.body
use reqwest;
#[tokio::main]
pub async fn main() {
let url = "{{baseUrl}}/v1/evidence_store/supported_resource_types";
let client = reqwest::Client::new();
let response = client.get(url)
.send()
.await;
let results = response.unwrap()
.json::()
.await
.unwrap();
dbg!(results);
}
curl --request GET \
--url {{baseUrl}}/v1/evidence_store/supported_resource_types
http GET {{baseUrl}}/v1/evidence_store/supported_resource_types
wget --quiet \
--method GET \
--output-document \
- {{baseUrl}}/v1/evidence_store/supported_resource_types
import Foundation
let request = NSMutableURLRequest(url: NSURL(string: "{{baseUrl}}/v1/evidence_store/supported_resource_types")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error as Any)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
POST
EvidenceStore_StoreEvidence
{{baseUrl}}/v1/evidence_store/evidence
BODY json
{
"id": "",
"timestamp": "",
"targetOfEvaluationId": "",
"toolId": "",
"resource": "",
"experimentalRelatedResourceIds": []
}
Examples
REQUEST
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "{{baseUrl}}/v1/evidence_store/evidence");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "content-type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}");
CURLcode ret = curl_easy_perform(hnd);
(require '[clj-http.client :as client])
(client/post "{{baseUrl}}/v1/evidence_store/evidence" {:content-type :json
:form-params {:id ""
:timestamp ""
:targetOfEvaluationId ""
:toolId ""
:resource ""
:experimentalRelatedResourceIds []}})
require "http/client"
url = "{{baseUrl}}/v1/evidence_store/evidence"
headers = HTTP::Headers{
"content-type" => "application/json"
}
reqBody = "{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}"
response = HTTP::Client.post url, headers: headers, body: reqBody
puts response.body
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Post,
RequestUri = new Uri("{{baseUrl}}/v1/evidence_store/evidence"),
Content = new StringContent("{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}")
{
Headers =
{
ContentType = new MediaTypeHeaderValue("application/json")
}
}
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
var client = new RestClient("{{baseUrl}}/v1/evidence_store/evidence");
var request = new RestRequest("", Method.Post);
request.AddHeader("content-type", "application/json");
request.AddParameter("application/json", "{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}", ParameterType.RequestBody);
var response = client.Execute(request);
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "{{baseUrl}}/v1/evidence_store/evidence"
payload := strings.NewReader("{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("content-type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
POST /baseUrl/v1/evidence_store/evidence HTTP/1.1
Content-Type: application/json
Host: example.com
Content-Length: 137
{
"id": "",
"timestamp": "",
"targetOfEvaluationId": "",
"toolId": "",
"resource": "",
"experimentalRelatedResourceIds": []
}
AsyncHttpClient client = new DefaultAsyncHttpClient();
client.prepare("POST", "{{baseUrl}}/v1/evidence_store/evidence")
.setHeader("content-type", "application/json")
.setBody("{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}")
.execute()
.toCompletableFuture()
.thenAccept(System.out::println)
.join();
client.close();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("{{baseUrl}}/v1/evidence_store/evidence"))
.header("content-type", "application/json")
.method("POST", HttpRequest.BodyPublishers.ofString("{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}"))
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}");
Request request = new Request.Builder()
.url("{{baseUrl}}/v1/evidence_store/evidence")
.post(body)
.addHeader("content-type", "application/json")
.build();
Response response = client.newCall(request).execute();
HttpResponse response = Unirest.post("{{baseUrl}}/v1/evidence_store/evidence")
.header("content-type", "application/json")
.body("{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}")
.asString();
const data = JSON.stringify({
id: '',
timestamp: '',
targetOfEvaluationId: '',
toolId: '',
resource: '',
experimentalRelatedResourceIds: []
});
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('POST', '{{baseUrl}}/v1/evidence_store/evidence');
xhr.setRequestHeader('content-type', 'application/json');
xhr.send(data);
import axios from 'axios';
const options = {
method: 'POST',
url: '{{baseUrl}}/v1/evidence_store/evidence',
headers: {'content-type': 'application/json'},
data: {
id: '',
timestamp: '',
targetOfEvaluationId: '',
toolId: '',
resource: '',
experimentalRelatedResourceIds: []
}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const url = '{{baseUrl}}/v1/evidence_store/evidence';
const options = {
method: 'POST',
headers: {'content-type': 'application/json'},
body: '{"id":"","timestamp":"","targetOfEvaluationId":"","toolId":"","resource":"","experimentalRelatedResourceIds":[]}'
};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
const settings = {
async: true,
crossDomain: true,
url: '{{baseUrl}}/v1/evidence_store/evidence',
method: 'POST',
headers: {
'content-type': 'application/json'
},
processData: false,
data: '{\n "id": "",\n "timestamp": "",\n "targetOfEvaluationId": "",\n "toolId": "",\n "resource": "",\n "experimentalRelatedResourceIds": []\n}'
};
$.ajax(settings).done(function (response) {
console.log(response);
});
val client = OkHttpClient()
val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}")
val request = Request.Builder()
.url("{{baseUrl}}/v1/evidence_store/evidence")
.post(body)
.addHeader("content-type", "application/json")
.build()
val response = client.newCall(request).execute()
const http = require('https');
const options = {
method: 'POST',
hostname: 'example.com',
port: null,
path: '/baseUrl/v1/evidence_store/evidence',
headers: {
'content-type': 'application/json'
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on('data', function (chunk) {
chunks.push(chunk);
});
res.on('end', function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.write(JSON.stringify({
id: '',
timestamp: '',
targetOfEvaluationId: '',
toolId: '',
resource: '',
experimentalRelatedResourceIds: []
}));
req.end();
const request = require('request');
const options = {
method: 'POST',
url: '{{baseUrl}}/v1/evidence_store/evidence',
headers: {'content-type': 'application/json'},
body: {
id: '',
timestamp: '',
targetOfEvaluationId: '',
toolId: '',
resource: '',
experimentalRelatedResourceIds: []
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
const unirest = require('unirest');
const req = unirest('POST', '{{baseUrl}}/v1/evidence_store/evidence');
req.headers({
'content-type': 'application/json'
});
req.type('json');
req.send({
id: '',
timestamp: '',
targetOfEvaluationId: '',
toolId: '',
resource: '',
experimentalRelatedResourceIds: []
});
req.end(function (res) {
if (res.error) throw new Error(res.error);
console.log(res.body);
});
const axios = require('axios').default;
const options = {
method: 'POST',
url: '{{baseUrl}}/v1/evidence_store/evidence',
headers: {'content-type': 'application/json'},
data: {
id: '',
timestamp: '',
targetOfEvaluationId: '',
toolId: '',
resource: '',
experimentalRelatedResourceIds: []
}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const fetch = require('node-fetch');
const url = '{{baseUrl}}/v1/evidence_store/evidence';
const options = {
method: 'POST',
headers: {'content-type': 'application/json'},
body: '{"id":"","timestamp":"","targetOfEvaluationId":"","toolId":"","resource":"","experimentalRelatedResourceIds":[]}'
};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
#import
NSDictionary *headers = @{ @"content-type": @"application/json" };
NSDictionary *parameters = @{ @"id": @"",
@"timestamp": @"",
@"targetOfEvaluationId": @"",
@"toolId": @"",
@"resource": @"",
@"experimentalRelatedResourceIds": @[ ] };
NSData *postData = [NSJSONSerialization dataWithJSONObject:parameters options:0 error:nil];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"{{baseUrl}}/v1/evidence_store/evidence"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:10.0];
[request setHTTPMethod:@"POST"];
[request setAllHTTPHeaderFields:headers];
[request setHTTPBody:postData];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error) {
NSLog(@"%@", error);
} else {
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
NSLog(@"%@", httpResponse);
}
}];
[dataTask resume];
open Cohttp_lwt_unix
open Cohttp
open Lwt
let uri = Uri.of_string "{{baseUrl}}/v1/evidence_store/evidence" in
let headers = Header.add (Header.init ()) "content-type" "application/json" in
let body = Cohttp_lwt_body.of_string "{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}" in
Client.call ~headers ~body `POST uri
>>= fun (res, body_stream) ->
(* Do stuff with the result *)
"{{baseUrl}}/v1/evidence_store/evidence",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'id' => '',
'timestamp' => '',
'targetOfEvaluationId' => '',
'toolId' => '',
'resource' => '',
'experimentalRelatedResourceIds' => [
]
]),
CURLOPT_HTTPHEADER => [
"content-type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
request('POST', '{{baseUrl}}/v1/evidence_store/evidence', [
'body' => '{
"id": "",
"timestamp": "",
"targetOfEvaluationId": "",
"toolId": "",
"resource": "",
"experimentalRelatedResourceIds": []
}',
'headers' => [
'content-type' => 'application/json',
],
]);
echo $response->getBody();
setUrl('{{baseUrl}}/v1/evidence_store/evidence');
$request->setMethod(HTTP_METH_POST);
$request->setHeaders([
'content-type' => 'application/json'
]);
$request->setContentType('application/json');
$request->setBody(json_encode([
'id' => '',
'timestamp' => '',
'targetOfEvaluationId' => '',
'toolId' => '',
'resource' => '',
'experimentalRelatedResourceIds' => [
]
]));
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
append(json_encode([
'id' => '',
'timestamp' => '',
'targetOfEvaluationId' => '',
'toolId' => '',
'resource' => '',
'experimentalRelatedResourceIds' => [
]
]));
$request->setRequestUrl('{{baseUrl}}/v1/evidence_store/evidence');
$request->setRequestMethod('POST');
$request->setBody($body);
$request->setHeaders([
'content-type' => 'application/json'
]);
$client->enqueue($request)->send();
$response = $client->getResponse();
echo $response->getBody();
$headers=@{}
$headers.Add("content-type", "application/json")
$response = Invoke-WebRequest -Uri '{{baseUrl}}/v1/evidence_store/evidence' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
"id": "",
"timestamp": "",
"targetOfEvaluationId": "",
"toolId": "",
"resource": "",
"experimentalRelatedResourceIds": []
}'
$headers=@{}
$headers.Add("content-type", "application/json")
$response = Invoke-RestMethod -Uri '{{baseUrl}}/v1/evidence_store/evidence' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
"id": "",
"timestamp": "",
"targetOfEvaluationId": "",
"toolId": "",
"resource": "",
"experimentalRelatedResourceIds": []
}'
import http.client
conn = http.client.HTTPSConnection("example.com")
payload = "{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}"
headers = { 'content-type': "application/json" }
conn.request("POST", "/baseUrl/v1/evidence_store/evidence", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
import requests
url = "{{baseUrl}}/v1/evidence_store/evidence"
payload = {
"id": "",
"timestamp": "",
"targetOfEvaluationId": "",
"toolId": "",
"resource": "",
"experimentalRelatedResourceIds": []
}
headers = {"content-type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
library(httr)
url <- "{{baseUrl}}/v1/evidence_store/evidence"
payload <- "{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}"
encode <- "json"
response <- VERB("POST", url, body = payload, content_type("application/json"), encode = encode)
content(response, "text")
require 'uri'
require 'net/http'
url = URI("{{baseUrl}}/v1/evidence_store/evidence")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["content-type"] = 'application/json'
request.body = "{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}"
response = http.request(request)
puts response.read_body
require 'faraday'
conn = Faraday.new(
url: 'https://example.com',
headers: {'Content-Type' => 'application/json'}
)
response = conn.post('/baseUrl/v1/evidence_store/evidence') do |req|
req.body = "{\n \"id\": \"\",\n \"timestamp\": \"\",\n \"targetOfEvaluationId\": \"\",\n \"toolId\": \"\",\n \"resource\": \"\",\n \"experimentalRelatedResourceIds\": []\n}"
end
puts response.status
puts response.body
use serde_json::json;
use reqwest;
#[tokio::main]
pub async fn main() {
let url = "{{baseUrl}}/v1/evidence_store/evidence";
let payload = json!({
"id": "",
"timestamp": "",
"targetOfEvaluationId": "",
"toolId": "",
"resource": "",
"experimentalRelatedResourceIds": ()
});
let mut headers = reqwest::header::HeaderMap::new();
headers.insert("content-type", "application/json".parse().unwrap());
let client = reqwest::Client::new();
let response = client.post(url)
.headers(headers)
.json(&payload)
.send()
.await;
let results = response.unwrap()
.json::()
.await
.unwrap();
dbg!(results);
}
curl --request POST \
--url {{baseUrl}}/v1/evidence_store/evidence \
--header 'content-type: application/json' \
--data '{
"id": "",
"timestamp": "",
"targetOfEvaluationId": "",
"toolId": "",
"resource": "",
"experimentalRelatedResourceIds": []
}'
echo '{
"id": "",
"timestamp": "",
"targetOfEvaluationId": "",
"toolId": "",
"resource": "",
"experimentalRelatedResourceIds": []
}' | \
http POST {{baseUrl}}/v1/evidence_store/evidence \
content-type:application/json
wget --quiet \
--method POST \
--header 'content-type: application/json' \
--body-data '{\n "id": "",\n "timestamp": "",\n "targetOfEvaluationId": "",\n "toolId": "",\n "resource": "",\n "experimentalRelatedResourceIds": []\n}' \
--output-document \
- {{baseUrl}}/v1/evidence_store/evidence
import Foundation
let headers = ["content-type": "application/json"]
let parameters = [
"id": "",
"timestamp": "",
"targetOfEvaluationId": "",
"toolId": "",
"resource": "",
"experimentalRelatedResourceIds": []
] as [String : Any]
let postData = JSONSerialization.data(withJSONObject: parameters, options: [])
let request = NSMutableURLRequest(url: NSURL(string: "{{baseUrl}}/v1/evidence_store/evidence")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error as Any)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
GET
ExperimentalResources_ListGraphEdges
{{baseUrl}}/v1experimental/evidence/graph/edges
Examples
REQUEST
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "GET");
curl_easy_setopt(hnd, CURLOPT_URL, "{{baseUrl}}/v1experimental/evidence/graph/edges");
CURLcode ret = curl_easy_perform(hnd);
(require '[clj-http.client :as client])
(client/get "{{baseUrl}}/v1experimental/evidence/graph/edges")
require "http/client"
url = "{{baseUrl}}/v1experimental/evidence/graph/edges"
response = HTTP::Client.get url
puts response.body
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Get,
RequestUri = new Uri("{{baseUrl}}/v1experimental/evidence/graph/edges"),
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
var client = new RestClient("{{baseUrl}}/v1experimental/evidence/graph/edges");
var request = new RestRequest("", Method.Get);
var response = client.Execute(request);
package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "{{baseUrl}}/v1experimental/evidence/graph/edges"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
GET /baseUrl/v1experimental/evidence/graph/edges HTTP/1.1
Host: example.com
AsyncHttpClient client = new DefaultAsyncHttpClient();
client.prepare("GET", "{{baseUrl}}/v1experimental/evidence/graph/edges")
.execute()
.toCompletableFuture()
.thenAccept(System.out::println)
.join();
client.close();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("{{baseUrl}}/v1experimental/evidence/graph/edges"))
.method("GET", HttpRequest.BodyPublishers.noBody())
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("{{baseUrl}}/v1experimental/evidence/graph/edges")
.get()
.build();
Response response = client.newCall(request).execute();
HttpResponse response = Unirest.get("{{baseUrl}}/v1experimental/evidence/graph/edges")
.asString();
const data = null;
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('GET', '{{baseUrl}}/v1experimental/evidence/graph/edges');
xhr.send(data);
import axios from 'axios';
const options = {
method: 'GET',
url: '{{baseUrl}}/v1experimental/evidence/graph/edges'
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const url = '{{baseUrl}}/v1experimental/evidence/graph/edges';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
const settings = {
async: true,
crossDomain: true,
url: '{{baseUrl}}/v1experimental/evidence/graph/edges',
method: 'GET',
headers: {}
};
$.ajax(settings).done(function (response) {
console.log(response);
});
val client = OkHttpClient()
val request = Request.Builder()
.url("{{baseUrl}}/v1experimental/evidence/graph/edges")
.get()
.build()
val response = client.newCall(request).execute()
const http = require('https');
const options = {
method: 'GET',
hostname: 'example.com',
port: null,
path: '/baseUrl/v1experimental/evidence/graph/edges',
headers: {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on('data', function (chunk) {
chunks.push(chunk);
});
res.on('end', function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();
const request = require('request');
const options = {
method: 'GET',
url: '{{baseUrl}}/v1experimental/evidence/graph/edges'
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
const unirest = require('unirest');
const req = unirest('GET', '{{baseUrl}}/v1experimental/evidence/graph/edges');
req.end(function (res) {
if (res.error) throw new Error(res.error);
console.log(res.body);
});
const axios = require('axios').default;
const options = {
method: 'GET',
url: '{{baseUrl}}/v1experimental/evidence/graph/edges'
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const fetch = require('node-fetch');
const url = '{{baseUrl}}/v1experimental/evidence/graph/edges';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
#import
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"{{baseUrl}}/v1experimental/evidence/graph/edges"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:10.0];
[request setHTTPMethod:@"GET"];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error) {
NSLog(@"%@", error);
} else {
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
NSLog(@"%@", httpResponse);
}
}];
[dataTask resume];
open Cohttp_lwt_unix
open Cohttp
open Lwt
let uri = Uri.of_string "{{baseUrl}}/v1experimental/evidence/graph/edges" in
Client.call `GET uri
>>= fun (res, body_stream) ->
(* Do stuff with the result *)
"{{baseUrl}}/v1experimental/evidence/graph/edges",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
request('GET', '{{baseUrl}}/v1experimental/evidence/graph/edges');
echo $response->getBody();
setUrl('{{baseUrl}}/v1experimental/evidence/graph/edges');
$request->setMethod(HTTP_METH_GET);
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
setRequestUrl('{{baseUrl}}/v1experimental/evidence/graph/edges');
$request->setRequestMethod('GET');
$client->enqueue($request)->send();
$response = $client->getResponse();
echo $response->getBody();
$response = Invoke-WebRequest -Uri '{{baseUrl}}/v1experimental/evidence/graph/edges' -Method GET
$response = Invoke-RestMethod -Uri '{{baseUrl}}/v1experimental/evidence/graph/edges' -Method GET
import http.client
conn = http.client.HTTPSConnection("example.com")
conn.request("GET", "/baseUrl/v1experimental/evidence/graph/edges")
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
import requests
url = "{{baseUrl}}/v1experimental/evidence/graph/edges"
response = requests.get(url)
print(response.json())
library(httr)
url <- "{{baseUrl}}/v1experimental/evidence/graph/edges"
response <- VERB("GET", url, content_type("application/octet-stream"))
content(response, "text")
require 'uri'
require 'net/http'
url = URI("{{baseUrl}}/v1experimental/evidence/graph/edges")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body
require 'faraday'
conn = Faraday.new(
url: 'https://example.com',
)
response = conn.get('/baseUrl/v1experimental/evidence/graph/edges') do |req|
end
puts response.status
puts response.body
use reqwest;
#[tokio::main]
pub async fn main() {
let url = "{{baseUrl}}/v1experimental/evidence/graph/edges";
let client = reqwest::Client::new();
let response = client.get(url)
.send()
.await;
let results = response.unwrap()
.json::()
.await
.unwrap();
dbg!(results);
}
curl --request GET \
--url {{baseUrl}}/v1experimental/evidence/graph/edges
http GET {{baseUrl}}/v1experimental/evidence/graph/edges
wget --quiet \
--method GET \
--output-document \
- {{baseUrl}}/v1experimental/evidence/graph/edges
import Foundation
let request = NSMutableURLRequest(url: NSURL(string: "{{baseUrl}}/v1experimental/evidence/graph/edges")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "GET"
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error as Any)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()
POST
ExperimentalResources_UpdateResource
{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id
QUERY PARAMS
resource.id
BODY json
{
"resource": {
"account": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {
"region": ""
},
"loggings": [
{
"activityLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"applicationLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"bootLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"osLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"resourceLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
}
}
],
"redundancies": [
{
"geoRedundancy": {
"geoLocations": [
{}
]
},
"localRedundancy": {
"geoLocations": [
{}
]
},
"zoneRedundancy": {
"geoLocations": [
{}
]
}
}
],
"parentId": "",
"usageStatistics": {
"apiHitsPerMonth": 0
}
},
"job": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"workflow": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"codeRepository": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"qpu": {
"creationTime": "",
"description": "",
"errorCorrectionEnabled": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"oneQubitGateErrorRate": "",
"raw": "",
"spamErrorRate": "",
"twoQubitGateErrorRate": "",
"encryptionInUse": {
"enabled": false
},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {
"creationTime": "",
"enabled": false,
"status": false
},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"container": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"encryptionInUse": {},
"geoLocation": {},
"imageId": "",
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"function": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"runtimeLanguage": "",
"runtimeVersion": "",
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"virtualMachine": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"automaticUpdates": {
"enabled": false,
"interval": "",
"securityOnly": false
},
"blockStorageIds": [],
"bootLogging": {},
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"malwareProtection": {
"durationSinceActive": "",
"enabled": false,
"numberOfThreatsFound": 0,
"applicationLogging": {}
},
"networkInterfaceIds": [],
"osLogging": {},
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerOrchestration": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"managementUrl": "",
"name": "",
"raw": "",
"containerIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerRegistry": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"certificate": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"key": {
"algorithm": "",
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"keySize": 0,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"secret": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"identity": {
"activated": false,
"creationTime": "",
"description": "",
"disablePasswordPolicy": false,
"enforceMfa": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"lastActivity": "",
"loginDefenderEnabled": false,
"name": "",
"privileged": false,
"raw": "",
"authenticity": {
"certificateBasedAuthentication": {
"contextIsChecked": false,
"enabled": false
},
"tokenBasedAuthentication": {
"contextIsChecked": false,
"enabled": false,
"enforced": false
},
"multiFactorAuthentiation": {
"contextIsChecked": false,
"authenticities": []
},
"noAuthentication": {
"contextIsChecked": false
},
"otpBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"passwordBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"singleSignOn": {
"contextIsChecked": false,
"enabled": false
}
},
"authorization": {
"abac": {},
"l3Firewall": {
"enabled": false,
"inbound": false,
"restrictedPorts": ""
},
"webApplicationFirewall": {
"enabled": false
},
"rbac": {
"broadAssignments": "",
"mixedDuties": ""
}
},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"roleAssignment": {
"activated": false,
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"authenticity": {},
"authorization": {},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"containerImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"vmImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"deviceProvisioningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"messagingHub": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"keyVault": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"credentialIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkInterface": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"accessRestriction": {
"l3Firewall": {},
"webApplicationFirewall": {}
},
"geoLocation": {},
"loggings": [
{}
],
"networkServiceId": "",
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkSecurityGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"functionService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"functionIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {
"enabled": false,
"enforced": false,
"protocol": "",
"protocolVersion": "",
"cipherSuites": [
{
"authenticationMechanism": "",
"keyExchangeAlgorithm": "",
"macAlgorithm": "",
"sessionCipher": ""
}
]
},
"usageStatistics": {}
},
"genericNetworkService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loadBalancer": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"url": "",
"accessRestriction": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoints": [
{
"handler": "",
"method": "",
"path": "",
"url": "",
"authenticity": {},
"transportEncryption": {}
}
],
"loggings": [
{}
],
"networkServiceIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loggingService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"machineLearningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"machineLearningIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"securityAdvisoryService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"keyIds": [],
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"securityAdvisoryFeeds": [
{
"securityAdvisoryDocumentIds": []
}
],
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"documentDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{
"enabled": false,
"scope": "",
"applicationLogging": {}
}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"keyValueDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"multiModalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"relationalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"fileStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"objectStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"virtualNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"virtualSubNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"passwordPolicy": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"resourceGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"blockStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {
"customerKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
},
"managedKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
}
},
"backups": [
{
"enabled": false,
"interval": "",
"retentionPeriod": "",
"storageId": "",
"transportEncryption": {}
}
],
"geoLocation": {},
"immutability": {
"enabled": false
},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"databaseStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"fileStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"objectStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"codeNotebook": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeIds": [],
"dataLocation": {
"localDataLocation": {
"path": "",
"atRestEncryption": {},
"storageId": ""
},
"remoteDataLocation": {
"path": "",
"authenticity": {},
"storageId": "",
"transportEncryption": {}
}
},
"documentChecksums": [
{
"algorithm": "",
"errors": [
{
"message": ""
}
]
}
],
"documentSignatures": [
{
"algorithm": "",
"errors": [
{}
]
}
],
"parentId": "",
"schemaValidation": {
"format": "",
"schemaUrl": "",
"errors": [
{}
]
},
"securityFeatures": [
{
"anomalyDetection": {},
"activityLogging": {},
"applicationLogging": {},
"bootLogging": {},
"osLogging": {},
"resourceLogging": {},
"malwareProtection": {},
"usageStatistics": {},
"certificateBasedAuthentication": {},
"tokenBasedAuthentication": {},
"multiFactorAuthentiation": {},
"noAuthentication": {},
"otpBasedAuthentication": {},
"passwordBasedAuthentication": {},
"singleSignOn": {},
"abac": {},
"l3Firewall": {},
"webApplicationFirewall": {},
"rbac": {},
"backup": {},
"dDoSProtection": {},
"geoLocation": {},
"geoRedundancy": {},
"localRedundancy": {},
"zoneRedundancy": {},
"customerKeyEncryption": {},
"managedKeyEncryption": {},
"encryptionInUse": {},
"transportEncryption": {},
"localAttestation": {
"enabled": false
},
"remoteAttestation": {},
"automaticUpdates": {},
"documentChecksum": {},
"immutability": {},
"documentSignature": {},
"explainableResults": {},
"robustnessScore": {}
}
]
},
"genericDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"policyDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"securityAdvisoryDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
],
"vulnerabilities": [
{
"cve": "",
"cwe": [],
"description": "",
"name": "",
"url": ""
}
]
},
"serviceMetadataDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"machineLearningDataset": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"size": 0,
"type": "",
"dataLocation": {},
"parentId": ""
},
"machineLearningModel": {
"advRobustness": "",
"creationTime": "",
"description": "",
"explainability": "",
"id": "",
"labels": {},
"name": "",
"poisonLevel": "",
"privacyLabel": "",
"privacyLevel": "",
"raw": "",
"robustness": "",
"dataLocation": {},
"parentId": "",
"vulnerabilities": [
{}
]
},
"awarenessTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"securityTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"application": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"programmingLanguage": "",
"programmingVersion": "",
"raw": "",
"translationUnits": [],
"automaticUpdates": {},
"codeModuleIds": [],
"codeRepositoryId": "",
"computeId": "",
"functionalities": [
{
"cipherSuite": {},
"codeRegion": {
"code": "",
"endColumn": 0,
"endLine": 0,
"file": "",
"startColumn": 0,
"startLine": 0
},
"localDataLocation": {},
"remoteDataLocation": {},
"error": {},
"httpEndpoint": {},
"httpRequestHandler": {
"path": "",
"applicationId": "",
"httpEndpoints": [
{}
]
},
"decryption": {
"algorithm": "",
"codeRegion": {}
},
"encryption": {
"algorithm": "",
"codeRegion": {}
},
"cryptographicHash": {
"algorithm": "",
"usesSalt": false,
"codeRegion": {}
},
"databaseConnect": {
"calls": [],
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"databaseQuery": {
"calls": [],
"modify": false,
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"httpRequest": {
"call": "",
"reqBody": "",
"codeRegion": {},
"httpEndpoints": [
{}
]
},
"logOperation": {
"call": "",
"value": "",
"codeRegion": {},
"logging": {}
},
"objectStorageRequest": {
"source": "",
"codeRegion": {},
"objectStorageIds": []
},
"schemaValidation": {},
"securityAdvisoryFeed": {},
"vulnerability": {}
}
],
"libraryIds": [],
"parentId": ""
},
"library": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"libraryIds": [],
"parentId": "",
"vulnerabilities": [
{}
]
},
"sourceCodeFile": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"parentId": ""
}
}
}
Examples
REQUEST
CURL *hnd = curl_easy_init();
curl_easy_setopt(hnd, CURLOPT_CUSTOMREQUEST, "POST");
curl_easy_setopt(hnd, CURLOPT_URL, "{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id");
struct curl_slist *headers = NULL;
headers = curl_slist_append(headers, "content-type: application/json");
curl_easy_setopt(hnd, CURLOPT_HTTPHEADER, headers);
curl_easy_setopt(hnd, CURLOPT_POSTFIELDS, "{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}");
CURLcode ret = curl_easy_perform(hnd);
(require '[clj-http.client :as client])
(client/post "{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id" {:content-type :json
:form-params {:resource {:account {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {:region ""}
:loggings [{:activityLogging {:enabled false
:monitoringLogDataEnabled false
:retentionPeriod ""
:securityAlertsEnabled false
:loggingServiceIds []}
:applicationLogging {:enabled false
:monitoringLogDataEnabled false
:retentionPeriod ""
:securityAlertsEnabled false
:loggingServiceIds []}
:bootLogging {:enabled false
:monitoringLogDataEnabled false
:retentionPeriod ""
:securityAlertsEnabled false
:loggingServiceIds []}
:osLogging {:enabled false
:monitoringLogDataEnabled false
:retentionPeriod ""
:securityAlertsEnabled false
:loggingServiceIds []}
:resourceLogging {:enabled false
:monitoringLogDataEnabled false
:retentionPeriod ""
:securityAlertsEnabled false
:loggingServiceIds []}}]
:redundancies [{:geoRedundancy {:geoLocations [{}]}
:localRedundancy {:geoLocations [{}]}
:zoneRedundancy {:geoLocations [{}]}}]
:parentId ""
:usageStatistics {:apiHitsPerMonth 0}}
:job {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:workflow {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:codeRepository {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:qpu {:creationTime ""
:description ""
:errorCorrectionEnabled false
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:oneQubitGateErrorRate ""
:raw ""
:spamErrorRate ""
:twoQubitGateErrorRate ""
:encryptionInUse {:enabled false}
:geoLocation {}
:loggings [{}]
:networkInterfaceIds []
:redundancies [{}]
:remoteAttestation {:creationTime ""
:enabled false
:status false}
:parentId ""
:resourceLogging {}
:usageStatistics {}}
:container {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:encryptionInUse {}
:geoLocation {}
:imageId ""
:loggings [{}]
:networkInterfaceIds []
:redundancies [{}]
:remoteAttestation {}
:parentId ""
:resourceLogging {}
:usageStatistics {}}
:function {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:runtimeLanguage ""
:runtimeVersion ""
:encryptionInUse {}
:geoLocation {}
:loggings [{}]
:networkInterfaceIds []
:redundancies [{}]
:remoteAttestation {}
:parentId ""
:resourceLogging {}
:usageStatistics {}}
:virtualMachine {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:activityLogging {}
:automaticUpdates {:enabled false
:interval ""
:securityOnly false}
:blockStorageIds []
:bootLogging {}
:encryptionInUse {}
:geoLocation {}
:loggings [{}]
:malwareProtection {:durationSinceActive ""
:enabled false
:numberOfThreatsFound 0
:applicationLogging {}}
:networkInterfaceIds []
:osLogging {}
:redundancies [{}]
:remoteAttestation {}
:parentId ""
:resourceLogging {}
:usageStatistics {}}
:containerOrchestration {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:managementUrl ""
:name ""
:raw ""
:containerIds []
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:resourceLogging {}
:usageStatistics {}}
:containerRegistry {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:certificate {:creationTime ""
:description ""
:enabled false
:expirationDate ""
:id ""
:internetAccessibleEndpoint false
:isManaged false
:labels {}
:name ""
:notBeforeDate ""
:raw ""
:geoLocation {}
:infrastructureId ""
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:key {:algorithm ""
:creationTime ""
:description ""
:enabled false
:expirationDate ""
:id ""
:internetAccessibleEndpoint false
:isManaged false
:keySize 0
:labels {}
:name ""
:notBeforeDate ""
:raw ""
:geoLocation {}
:infrastructureId ""
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:secret {:creationTime ""
:description ""
:enabled false
:expirationDate ""
:id ""
:internetAccessibleEndpoint false
:isManaged false
:labels {}
:name ""
:notBeforeDate ""
:raw ""
:geoLocation {}
:infrastructureId ""
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:identity {:activated false
:creationTime ""
:description ""
:disablePasswordPolicy false
:enforceMfa false
:id ""
:internetAccessibleEndpoint false
:labels {}
:lastActivity ""
:loginDefenderEnabled false
:name ""
:privileged false
:raw ""
:authenticity {:certificateBasedAuthentication {:contextIsChecked false
:enabled false}
:tokenBasedAuthentication {:contextIsChecked false
:enabled false
:enforced false}
:multiFactorAuthentiation {:contextIsChecked false
:authenticities []}
:noAuthentication {:contextIsChecked false}
:otpBasedAuthentication {:activated false
:contextIsChecked false}
:passwordBasedAuthentication {:activated false
:contextIsChecked false}
:singleSignOn {:contextIsChecked false
:enabled false}}
:authorization {:abac {}
:l3Firewall {:enabled false
:inbound false
:restrictedPorts ""}
:webApplicationFirewall {:enabled false}
:rbac {:broadAssignments ""
:mixedDuties ""}}
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:roleAssignment {:activated false
:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:authenticity {}
:authorization {}
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:containerImage {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:applicationId ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:vmImage {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:applicationId ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:deviceProvisioningService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:messagingHub {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:keyVault {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:credentialIds []
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:networkInterface {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:accessRestriction {:l3Firewall {}
:webApplicationFirewall {}}
:geoLocation {}
:loggings [{}]
:networkServiceId ""
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:networkSecurityGroup {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:functionService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:authenticity {}
:computeIds []
:functionIds []
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:serviceMetadataDocumentId ""
:transportEncryption {:enabled false
:enforced false
:protocol ""
:protocolVersion ""
:cipherSuites [{:authenticationMechanism ""
:keyExchangeAlgorithm ""
:macAlgorithm ""
:sessionCipher ""}]}
:usageStatistics {}}
:genericNetworkService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:authenticity {}
:computeIds []
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:serviceMetadataDocumentId ""
:transportEncryption {}
:usageStatistics {}}
:loadBalancer {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:url ""
:accessRestriction {}
:authenticity {}
:computeIds []
:geoLocation {}
:httpEndpoints [{:handler ""
:method ""
:path ""
:url ""
:authenticity {}
:transportEncryption {}}]
:loggings [{}]
:networkServiceIds []
:redundancies [{}]
:parentId ""
:serviceMetadataDocumentId ""
:transportEncryption {}
:usageStatistics {}}
:loggingService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:authenticity {}
:computeIds []
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:serviceMetadataDocumentId ""
:storageIds []
:transportEncryption {}
:usageStatistics {}}
:machineLearningService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:authenticity {}
:computeIds []
:geoLocation {}
:loggings [{}]
:machineLearningIds []
:redundancies [{}]
:parentId ""
:serviceMetadataDocumentId ""
:storageIds []
:transportEncryption {}
:usageStatistics {}}
:securityAdvisoryService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:authenticity {}
:computeIds []
:geoLocation {}
:keyIds []
:loggings [{}]
:redundancies [{}]
:parentId ""
:securityAdvisoryFeeds [{:securityAdvisoryDocumentIds []}]
:serviceMetadataDocumentId ""
:transportEncryption {}
:usageStatistics {}}
:documentDatabaseService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:activityLogging {}
:anomalyDetections [{:enabled false
:scope ""
:applicationLogging {}}]
:authenticity {}
:computeIds []
:geoLocation {}
:httpEndpoint {}
:loggings [{}]
:malwareProtection {}
:redundancies [{}]
:parentId ""
:serviceMetadataDocumentId ""
:storageIds []
:transportEncryption {}
:usageStatistics {}}
:keyValueDatabaseService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:activityLogging {}
:anomalyDetections [{}]
:authenticity {}
:computeIds []
:geoLocation {}
:httpEndpoint {}
:loggings [{}]
:malwareProtection {}
:redundancies [{}]
:parentId ""
:serviceMetadataDocumentId ""
:storageIds []
:transportEncryption {}
:usageStatistics {}}
:multiModalDatabaseService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:activityLogging {}
:anomalyDetections [{}]
:authenticity {}
:computeIds []
:geoLocation {}
:httpEndpoint {}
:loggings [{}]
:malwareProtection {}
:redundancies [{}]
:parentId ""
:serviceMetadataDocumentId ""
:storageIds []
:transportEncryption {}
:usageStatistics {}}
:relationalDatabaseService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:activityLogging {}
:anomalyDetections [{}]
:authenticity {}
:computeIds []
:geoLocation {}
:httpEndpoint {}
:loggings [{}]
:malwareProtection {}
:redundancies [{}]
:parentId ""
:serviceMetadataDocumentId ""
:storageIds []
:transportEncryption {}
:usageStatistics {}}
:fileStorageService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:activityLogging {}
:authenticity {}
:computeIds []
:geoLocation {}
:httpEndpoint {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:serviceMetadataDocumentId ""
:storageIds []
:transportEncryption {}
:usageStatistics {}}
:objectStorageService {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:ips []
:labels {}
:name ""
:ports []
:raw ""
:activityLogging {}
:authenticity {}
:computeIds []
:geoLocation {}
:httpEndpoint {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:serviceMetadataDocumentId ""
:storageIds []
:transportEncryption {}
:usageStatistics {}}
:virtualNetwork {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:virtualSubNetwork {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:passwordPolicy {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:resourceGroup {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:geoLocation {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:usageStatistics {}}
:blockStorage {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:activityLogging {}
:atRestEncryption {:customerKeyEncryption {:algorithm ""
:enabled false
:keyUrl ""}
:managedKeyEncryption {:algorithm ""
:enabled false
:keyUrl ""}}
:backups [{:enabled false
:interval ""
:retentionPeriod ""
:storageId ""
:transportEncryption {}}]
:geoLocation {}
:immutability {:enabled false}
:loggings [{}]
:redundancies [{}]
:parentId ""
:resourceLogging {}
:usageStatistics {}}
:databaseStorage {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:raw ""
:activityLogging {}
:atRestEncryption {}
:backups [{}]
:geoLocation {}
:immutability {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:resourceLogging {}
:usageStatistics {}}
:fileStorage {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:publicAccess false
:raw ""
:activityLogging {}
:atRestEncryption {}
:backups [{}]
:geoLocation {}
:immutability {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:resourceLogging {}
:usageStatistics {}}
:objectStorage {:creationTime ""
:description ""
:id ""
:internetAccessibleEndpoint false
:labels {}
:name ""
:publicAccess false
:raw ""
:activityLogging {}
:atRestEncryption {}
:backups [{}]
:geoLocation {}
:immutability {}
:loggings [{}]
:redundancies [{}]
:parentId ""
:resourceLogging {}
:usageStatistics {}}
:codeNotebook {:creationTime ""
:description ""
:filetype ""
:id ""
:labels {}
:name ""
:raw ""
:codeIds []
:dataLocation {:localDataLocation {:path ""
:atRestEncryption {}
:storageId ""}
:remoteDataLocation {:path ""
:authenticity {}
:storageId ""
:transportEncryption {}}}
:documentChecksums [{:algorithm ""
:errors [{:message ""}]}]
:documentSignatures [{:algorithm ""
:errors [{}]}]
:parentId ""
:schemaValidation {:format ""
:schemaUrl ""
:errors [{}]}
:securityFeatures [{:anomalyDetection {}
:activityLogging {}
:applicationLogging {}
:bootLogging {}
:osLogging {}
:resourceLogging {}
:malwareProtection {}
:usageStatistics {}
:certificateBasedAuthentication {}
:tokenBasedAuthentication {}
:multiFactorAuthentiation {}
:noAuthentication {}
:otpBasedAuthentication {}
:passwordBasedAuthentication {}
:singleSignOn {}
:abac {}
:l3Firewall {}
:webApplicationFirewall {}
:rbac {}
:backup {}
:dDoSProtection {}
:geoLocation {}
:geoRedundancy {}
:localRedundancy {}
:zoneRedundancy {}
:customerKeyEncryption {}
:managedKeyEncryption {}
:encryptionInUse {}
:transportEncryption {}
:localAttestation {:enabled false}
:remoteAttestation {}
:automaticUpdates {}
:documentChecksum {}
:immutability {}
:documentSignature {}
:explainableResults {}
:robustnessScore {}}]}
:genericDocument {:creationTime ""
:description ""
:filetype ""
:id ""
:labels {}
:name ""
:raw ""
:dataLocation {}
:documentChecksums [{}]
:documentSignatures [{}]
:parentId ""
:schemaValidation {}
:securityFeatures [{}]}
:policyDocument {:creationTime ""
:description ""
:filetype ""
:id ""
:labels {}
:name ""
:raw ""
:dataLocation {}
:documentChecksums [{}]
:documentSignatures [{}]
:parentId ""
:schemaValidation {}
:securityFeatures [{}]}
:securityAdvisoryDocument {:creationTime ""
:description ""
:filetype ""
:id ""
:labels {}
:name ""
:raw ""
:dataLocation {}
:documentChecksums [{}]
:documentSignatures [{}]
:parentId ""
:schemaValidation {}
:securityFeatures [{}]
:vulnerabilities [{:cve ""
:cwe []
:description ""
:name ""
:url ""}]}
:serviceMetadataDocument {:creationTime ""
:description ""
:filetype ""
:id ""
:labels {}
:name ""
:raw ""
:dataLocation {}
:documentChecksums [{}]
:documentSignatures [{}]
:parentId ""
:schemaValidation {}
:securityFeatures [{}]}
:machineLearningDataset {:creationTime ""
:description ""
:id ""
:labels {}
:name ""
:raw ""
:size 0
:type ""
:dataLocation {}
:parentId ""}
:machineLearningModel {:advRobustness ""
:creationTime ""
:description ""
:explainability ""
:id ""
:labels {}
:name ""
:poisonLevel ""
:privacyLabel ""
:privacyLevel ""
:raw ""
:robustness ""
:dataLocation {}
:parentId ""
:vulnerabilities [{}]}
:awarenessTraining {:annualUpdateCompleted false
:creationTime ""
:description ""
:id ""
:labels {}
:name ""
:raw ""
:successfullyCompletedPercentage false
:parentId ""}
:securityTraining {:annualUpdateCompleted false
:creationTime ""
:description ""
:id ""
:labels {}
:name ""
:raw ""
:successfullyCompletedPercentage false
:parentId ""}
:application {:creationTime ""
:description ""
:id ""
:labels {}
:name ""
:programmingLanguage ""
:programmingVersion ""
:raw ""
:translationUnits []
:automaticUpdates {}
:codeModuleIds []
:codeRepositoryId ""
:computeId ""
:functionalities [{:cipherSuite {}
:codeRegion {:code ""
:endColumn 0
:endLine 0
:file ""
:startColumn 0
:startLine 0}
:localDataLocation {}
:remoteDataLocation {}
:error {}
:httpEndpoint {}
:httpRequestHandler {:path ""
:applicationId ""
:httpEndpoints [{}]}
:decryption {:algorithm ""
:codeRegion {}}
:encryption {:algorithm ""
:codeRegion {}}
:cryptographicHash {:algorithm ""
:usesSalt false
:codeRegion {}}
:databaseConnect {:calls []
:codeRegion {}
:databaseServiceIds []
:databaseStorageId ""}
:databaseQuery {:calls []
:modify false
:codeRegion {}
:databaseServiceIds []
:databaseStorageId ""}
:httpRequest {:call ""
:reqBody ""
:codeRegion {}
:httpEndpoints [{}]}
:logOperation {:call ""
:value ""
:codeRegion {}
:logging {}}
:objectStorageRequest {:source ""
:codeRegion {}
:objectStorageIds []}
:schemaValidation {}
:securityAdvisoryFeed {}
:vulnerability {}}]
:libraryIds []
:parentId ""}
:library {:creationTime ""
:description ""
:id ""
:labels {}
:name ""
:raw ""
:codeModuleIds []
:codeRepositoryId ""
:functionalities [{}]
:libraryIds []
:parentId ""
:vulnerabilities [{}]}
:sourceCodeFile {:creationTime ""
:description ""
:id ""
:labels {}
:name ""
:raw ""
:codeModuleIds []
:codeRepositoryId ""
:functionalities [{}]
:parentId ""}}}})
require "http/client"
url = "{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id"
headers = HTTP::Headers{
"content-type" => "application/json"
}
reqBody = "{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}"
response = HTTP::Client.post url, headers: headers, body: reqBody
puts response.body
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
Method = HttpMethod.Post,
RequestUri = new Uri("{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id"),
Content = new StringContent("{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}")
{
Headers =
{
ContentType = new MediaTypeHeaderValue("application/json")
}
}
};
using (var response = await client.SendAsync(request))
{
response.EnsureSuccessStatusCode();
var body = await response.Content.ReadAsStringAsync();
Console.WriteLine(body);
}
var client = new RestClient("{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id");
var request = new RestRequest("", Method.Post);
request.AddHeader("content-type", "application/json");
request.AddParameter("application/json", "{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}", ParameterType.RequestBody);
var response = client.Execute(request);
package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id"
payload := strings.NewReader("{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("content-type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
POST /baseUrl/v1experimental/evidence_store/resources/:resource.id HTTP/1.1
Content-Type: application/json
Host: example.com
Content-Length: 32764
{
"resource": {
"account": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {
"region": ""
},
"loggings": [
{
"activityLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"applicationLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"bootLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"osLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"resourceLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
}
}
],
"redundancies": [
{
"geoRedundancy": {
"geoLocations": [
{}
]
},
"localRedundancy": {
"geoLocations": [
{}
]
},
"zoneRedundancy": {
"geoLocations": [
{}
]
}
}
],
"parentId": "",
"usageStatistics": {
"apiHitsPerMonth": 0
}
},
"job": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"workflow": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"codeRepository": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"qpu": {
"creationTime": "",
"description": "",
"errorCorrectionEnabled": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"oneQubitGateErrorRate": "",
"raw": "",
"spamErrorRate": "",
"twoQubitGateErrorRate": "",
"encryptionInUse": {
"enabled": false
},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {
"creationTime": "",
"enabled": false,
"status": false
},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"container": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"encryptionInUse": {},
"geoLocation": {},
"imageId": "",
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"function": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"runtimeLanguage": "",
"runtimeVersion": "",
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"virtualMachine": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"automaticUpdates": {
"enabled": false,
"interval": "",
"securityOnly": false
},
"blockStorageIds": [],
"bootLogging": {},
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"malwareProtection": {
"durationSinceActive": "",
"enabled": false,
"numberOfThreatsFound": 0,
"applicationLogging": {}
},
"networkInterfaceIds": [],
"osLogging": {},
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerOrchestration": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"managementUrl": "",
"name": "",
"raw": "",
"containerIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerRegistry": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"certificate": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"key": {
"algorithm": "",
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"keySize": 0,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"secret": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"identity": {
"activated": false,
"creationTime": "",
"description": "",
"disablePasswordPolicy": false,
"enforceMfa": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"lastActivity": "",
"loginDefenderEnabled": false,
"name": "",
"privileged": false,
"raw": "",
"authenticity": {
"certificateBasedAuthentication": {
"contextIsChecked": false,
"enabled": false
},
"tokenBasedAuthentication": {
"contextIsChecked": false,
"enabled": false,
"enforced": false
},
"multiFactorAuthentiation": {
"contextIsChecked": false,
"authenticities": []
},
"noAuthentication": {
"contextIsChecked": false
},
"otpBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"passwordBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"singleSignOn": {
"contextIsChecked": false,
"enabled": false
}
},
"authorization": {
"abac": {},
"l3Firewall": {
"enabled": false,
"inbound": false,
"restrictedPorts": ""
},
"webApplicationFirewall": {
"enabled": false
},
"rbac": {
"broadAssignments": "",
"mixedDuties": ""
}
},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"roleAssignment": {
"activated": false,
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"authenticity": {},
"authorization": {},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"containerImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"vmImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"deviceProvisioningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"messagingHub": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"keyVault": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"credentialIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkInterface": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"accessRestriction": {
"l3Firewall": {},
"webApplicationFirewall": {}
},
"geoLocation": {},
"loggings": [
{}
],
"networkServiceId": "",
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkSecurityGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"functionService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"functionIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {
"enabled": false,
"enforced": false,
"protocol": "",
"protocolVersion": "",
"cipherSuites": [
{
"authenticationMechanism": "",
"keyExchangeAlgorithm": "",
"macAlgorithm": "",
"sessionCipher": ""
}
]
},
"usageStatistics": {}
},
"genericNetworkService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loadBalancer": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"url": "",
"accessRestriction": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoints": [
{
"handler": "",
"method": "",
"path": "",
"url": "",
"authenticity": {},
"transportEncryption": {}
}
],
"loggings": [
{}
],
"networkServiceIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loggingService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"machineLearningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"machineLearningIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"securityAdvisoryService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"keyIds": [],
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"securityAdvisoryFeeds": [
{
"securityAdvisoryDocumentIds": []
}
],
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"documentDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{
"enabled": false,
"scope": "",
"applicationLogging": {}
}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"keyValueDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"multiModalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"relationalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"fileStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"objectStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"virtualNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"virtualSubNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"passwordPolicy": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"resourceGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"blockStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {
"customerKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
},
"managedKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
}
},
"backups": [
{
"enabled": false,
"interval": "",
"retentionPeriod": "",
"storageId": "",
"transportEncryption": {}
}
],
"geoLocation": {},
"immutability": {
"enabled": false
},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"databaseStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"fileStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"objectStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"codeNotebook": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeIds": [],
"dataLocation": {
"localDataLocation": {
"path": "",
"atRestEncryption": {},
"storageId": ""
},
"remoteDataLocation": {
"path": "",
"authenticity": {},
"storageId": "",
"transportEncryption": {}
}
},
"documentChecksums": [
{
"algorithm": "",
"errors": [
{
"message": ""
}
]
}
],
"documentSignatures": [
{
"algorithm": "",
"errors": [
{}
]
}
],
"parentId": "",
"schemaValidation": {
"format": "",
"schemaUrl": "",
"errors": [
{}
]
},
"securityFeatures": [
{
"anomalyDetection": {},
"activityLogging": {},
"applicationLogging": {},
"bootLogging": {},
"osLogging": {},
"resourceLogging": {},
"malwareProtection": {},
"usageStatistics": {},
"certificateBasedAuthentication": {},
"tokenBasedAuthentication": {},
"multiFactorAuthentiation": {},
"noAuthentication": {},
"otpBasedAuthentication": {},
"passwordBasedAuthentication": {},
"singleSignOn": {},
"abac": {},
"l3Firewall": {},
"webApplicationFirewall": {},
"rbac": {},
"backup": {},
"dDoSProtection": {},
"geoLocation": {},
"geoRedundancy": {},
"localRedundancy": {},
"zoneRedundancy": {},
"customerKeyEncryption": {},
"managedKeyEncryption": {},
"encryptionInUse": {},
"transportEncryption": {},
"localAttestation": {
"enabled": false
},
"remoteAttestation": {},
"automaticUpdates": {},
"documentChecksum": {},
"immutability": {},
"documentSignature": {},
"explainableResults": {},
"robustnessScore": {}
}
]
},
"genericDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"policyDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"securityAdvisoryDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
],
"vulnerabilities": [
{
"cve": "",
"cwe": [],
"description": "",
"name": "",
"url": ""
}
]
},
"serviceMetadataDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"machineLearningDataset": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"size": 0,
"type": "",
"dataLocation": {},
"parentId": ""
},
"machineLearningModel": {
"advRobustness": "",
"creationTime": "",
"description": "",
"explainability": "",
"id": "",
"labels": {},
"name": "",
"poisonLevel": "",
"privacyLabel": "",
"privacyLevel": "",
"raw": "",
"robustness": "",
"dataLocation": {},
"parentId": "",
"vulnerabilities": [
{}
]
},
"awarenessTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"securityTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"application": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"programmingLanguage": "",
"programmingVersion": "",
"raw": "",
"translationUnits": [],
"automaticUpdates": {},
"codeModuleIds": [],
"codeRepositoryId": "",
"computeId": "",
"functionalities": [
{
"cipherSuite": {},
"codeRegion": {
"code": "",
"endColumn": 0,
"endLine": 0,
"file": "",
"startColumn": 0,
"startLine": 0
},
"localDataLocation": {},
"remoteDataLocation": {},
"error": {},
"httpEndpoint": {},
"httpRequestHandler": {
"path": "",
"applicationId": "",
"httpEndpoints": [
{}
]
},
"decryption": {
"algorithm": "",
"codeRegion": {}
},
"encryption": {
"algorithm": "",
"codeRegion": {}
},
"cryptographicHash": {
"algorithm": "",
"usesSalt": false,
"codeRegion": {}
},
"databaseConnect": {
"calls": [],
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"databaseQuery": {
"calls": [],
"modify": false,
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"httpRequest": {
"call": "",
"reqBody": "",
"codeRegion": {},
"httpEndpoints": [
{}
]
},
"logOperation": {
"call": "",
"value": "",
"codeRegion": {},
"logging": {}
},
"objectStorageRequest": {
"source": "",
"codeRegion": {},
"objectStorageIds": []
},
"schemaValidation": {},
"securityAdvisoryFeed": {},
"vulnerability": {}
}
],
"libraryIds": [],
"parentId": ""
},
"library": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"libraryIds": [],
"parentId": "",
"vulnerabilities": [
{}
]
},
"sourceCodeFile": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"parentId": ""
}
}
}
AsyncHttpClient client = new DefaultAsyncHttpClient();
client.prepare("POST", "{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id")
.setHeader("content-type", "application/json")
.setBody("{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}")
.execute()
.toCompletableFuture()
.thenAccept(System.out::println)
.join();
client.close();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id"))
.header("content-type", "application/json")
.method("POST", HttpRequest.BodyPublishers.ofString("{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}"))
.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}");
Request request = new Request.Builder()
.url("{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id")
.post(body)
.addHeader("content-type", "application/json")
.build();
Response response = client.newCall(request).execute();
HttpResponse response = Unirest.post("{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id")
.header("content-type", "application/json")
.body("{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}")
.asString();
const data = JSON.stringify({
resource: {
account: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {
region: ''
},
loggings: [
{
activityLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
applicationLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
bootLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
osLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
resourceLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
}
}
],
redundancies: [
{
geoRedundancy: {
geoLocations: [
{}
]
},
localRedundancy: {
geoLocations: [
{}
]
},
zoneRedundancy: {
geoLocations: [
{}
]
}
}
],
parentId: '',
usageStatistics: {
apiHitsPerMonth: 0
}
},
job: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
workflow: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
codeRepository: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
qpu: {
creationTime: '',
description: '',
errorCorrectionEnabled: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
oneQubitGateErrorRate: '',
raw: '',
spamErrorRate: '',
twoQubitGateErrorRate: '',
encryptionInUse: {
enabled: false
},
geoLocation: {},
loggings: [
{}
],
networkInterfaceIds: [],
redundancies: [
{}
],
remoteAttestation: {
creationTime: '',
enabled: false,
status: false
},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
container: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
encryptionInUse: {},
geoLocation: {},
imageId: '',
loggings: [
{}
],
networkInterfaceIds: [],
redundancies: [
{}
],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
function: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
runtimeLanguage: '',
runtimeVersion: '',
encryptionInUse: {},
geoLocation: {},
loggings: [
{}
],
networkInterfaceIds: [],
redundancies: [
{}
],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
virtualMachine: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
automaticUpdates: {
enabled: false,
interval: '',
securityOnly: false
},
blockStorageIds: [],
bootLogging: {},
encryptionInUse: {},
geoLocation: {},
loggings: [
{}
],
malwareProtection: {
durationSinceActive: '',
enabled: false,
numberOfThreatsFound: 0,
applicationLogging: {}
},
networkInterfaceIds: [],
osLogging: {},
redundancies: [
{}
],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerOrchestration: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
managementUrl: '',
name: '',
raw: '',
containerIds: [],
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerRegistry: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
certificate: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
key: {
algorithm: '',
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
keySize: 0,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
secret: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
identity: {
activated: false,
creationTime: '',
description: '',
disablePasswordPolicy: false,
enforceMfa: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
lastActivity: '',
loginDefenderEnabled: false,
name: '',
privileged: false,
raw: '',
authenticity: {
certificateBasedAuthentication: {
contextIsChecked: false,
enabled: false
},
tokenBasedAuthentication: {
contextIsChecked: false,
enabled: false,
enforced: false
},
multiFactorAuthentiation: {
contextIsChecked: false,
authenticities: []
},
noAuthentication: {
contextIsChecked: false
},
otpBasedAuthentication: {
activated: false,
contextIsChecked: false
},
passwordBasedAuthentication: {
activated: false,
contextIsChecked: false
},
singleSignOn: {
contextIsChecked: false,
enabled: false
}
},
authorization: {
abac: {},
l3Firewall: {
enabled: false,
inbound: false,
restrictedPorts: ''
},
webApplicationFirewall: {
enabled: false
},
rbac: {
broadAssignments: '',
mixedDuties: ''
}
},
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
roleAssignment: {
activated: false,
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
authenticity: {},
authorization: {},
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
containerImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
vmImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
deviceProvisioningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
messagingHub: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
keyVault: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
credentialIds: [],
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
networkInterface: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
accessRestriction: {
l3Firewall: {},
webApplicationFirewall: {}
},
geoLocation: {},
loggings: [
{}
],
networkServiceId: '',
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
networkSecurityGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
functionService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
functionIds: [],
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {
enabled: false,
enforced: false,
protocol: '',
protocolVersion: '',
cipherSuites: [
{
authenticationMechanism: '',
keyExchangeAlgorithm: '',
macAlgorithm: '',
sessionCipher: ''
}
]
},
usageStatistics: {}
},
genericNetworkService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loadBalancer: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
url: '',
accessRestriction: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoints: [
{
handler: '',
method: '',
path: '',
url: '',
authenticity: {},
transportEncryption: {}
}
],
loggings: [
{}
],
networkServiceIds: [],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loggingService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
machineLearningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [
{}
],
machineLearningIds: [],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
securityAdvisoryService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
keyIds: [],
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
securityAdvisoryFeeds: [
{
securityAdvisoryDocumentIds: []
}
],
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
documentDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [
{
enabled: false,
scope: '',
applicationLogging: {}
}
],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
malwareProtection: {},
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
keyValueDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [
{}
],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
malwareProtection: {},
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
multiModalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [
{}
],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
malwareProtection: {},
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
relationalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [
{}
],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
malwareProtection: {},
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
fileStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
objectStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
virtualNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
virtualSubNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
passwordPolicy: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
resourceGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
blockStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {
customerKeyEncryption: {
algorithm: '',
enabled: false,
keyUrl: ''
},
managedKeyEncryption: {
algorithm: '',
enabled: false,
keyUrl: ''
}
},
backups: [
{
enabled: false,
interval: '',
retentionPeriod: '',
storageId: '',
transportEncryption: {}
}
],
geoLocation: {},
immutability: {
enabled: false
},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
databaseStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [
{}
],
geoLocation: {},
immutability: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
fileStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [
{}
],
geoLocation: {},
immutability: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
objectStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [
{}
],
geoLocation: {},
immutability: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
codeNotebook: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
codeIds: [],
dataLocation: {
localDataLocation: {
path: '',
atRestEncryption: {},
storageId: ''
},
remoteDataLocation: {
path: '',
authenticity: {},
storageId: '',
transportEncryption: {}
}
},
documentChecksums: [
{
algorithm: '',
errors: [
{
message: ''
}
]
}
],
documentSignatures: [
{
algorithm: '',
errors: [
{}
]
}
],
parentId: '',
schemaValidation: {
format: '',
schemaUrl: '',
errors: [
{}
]
},
securityFeatures: [
{
anomalyDetection: {},
activityLogging: {},
applicationLogging: {},
bootLogging: {},
osLogging: {},
resourceLogging: {},
malwareProtection: {},
usageStatistics: {},
certificateBasedAuthentication: {},
tokenBasedAuthentication: {},
multiFactorAuthentiation: {},
noAuthentication: {},
otpBasedAuthentication: {},
passwordBasedAuthentication: {},
singleSignOn: {},
abac: {},
l3Firewall: {},
webApplicationFirewall: {},
rbac: {},
backup: {},
dDoSProtection: {},
geoLocation: {},
geoRedundancy: {},
localRedundancy: {},
zoneRedundancy: {},
customerKeyEncryption: {},
managedKeyEncryption: {},
encryptionInUse: {},
transportEncryption: {},
localAttestation: {
enabled: false
},
remoteAttestation: {},
automaticUpdates: {},
documentChecksum: {},
immutability: {},
documentSignature: {},
explainableResults: {},
robustnessScore: {}
}
]
},
genericDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [
{}
],
documentSignatures: [
{}
],
parentId: '',
schemaValidation: {},
securityFeatures: [
{}
]
},
policyDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [
{}
],
documentSignatures: [
{}
],
parentId: '',
schemaValidation: {},
securityFeatures: [
{}
]
},
securityAdvisoryDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [
{}
],
documentSignatures: [
{}
],
parentId: '',
schemaValidation: {},
securityFeatures: [
{}
],
vulnerabilities: [
{
cve: '',
cwe: [],
description: '',
name: '',
url: ''
}
]
},
serviceMetadataDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [
{}
],
documentSignatures: [
{}
],
parentId: '',
schemaValidation: {},
securityFeatures: [
{}
]
},
machineLearningDataset: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
size: 0,
type: '',
dataLocation: {},
parentId: ''
},
machineLearningModel: {
advRobustness: '',
creationTime: '',
description: '',
explainability: '',
id: '',
labels: {},
name: '',
poisonLevel: '',
privacyLabel: '',
privacyLevel: '',
raw: '',
robustness: '',
dataLocation: {},
parentId: '',
vulnerabilities: [
{}
]
},
awarenessTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
securityTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
application: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
programmingLanguage: '',
programmingVersion: '',
raw: '',
translationUnits: [],
automaticUpdates: {},
codeModuleIds: [],
codeRepositoryId: '',
computeId: '',
functionalities: [
{
cipherSuite: {},
codeRegion: {
code: '',
endColumn: 0,
endLine: 0,
file: '',
startColumn: 0,
startLine: 0
},
localDataLocation: {},
remoteDataLocation: {},
error: {},
httpEndpoint: {},
httpRequestHandler: {
path: '',
applicationId: '',
httpEndpoints: [
{}
]
},
decryption: {
algorithm: '',
codeRegion: {}
},
encryption: {
algorithm: '',
codeRegion: {}
},
cryptographicHash: {
algorithm: '',
usesSalt: false,
codeRegion: {}
},
databaseConnect: {
calls: [],
codeRegion: {},
databaseServiceIds: [],
databaseStorageId: ''
},
databaseQuery: {
calls: [],
modify: false,
codeRegion: {},
databaseServiceIds: [],
databaseStorageId: ''
},
httpRequest: {
call: '',
reqBody: '',
codeRegion: {},
httpEndpoints: [
{}
]
},
logOperation: {
call: '',
value: '',
codeRegion: {},
logging: {}
},
objectStorageRequest: {
source: '',
codeRegion: {},
objectStorageIds: []
},
schemaValidation: {},
securityAdvisoryFeed: {},
vulnerability: {}
}
],
libraryIds: [],
parentId: ''
},
library: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [
{}
],
libraryIds: [],
parentId: '',
vulnerabilities: [
{}
]
},
sourceCodeFile: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [
{}
],
parentId: ''
}
}
});
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('POST', '{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id');
xhr.setRequestHeader('content-type', 'application/json');
xhr.send(data);
import axios from 'axios';
const options = {
method: 'POST',
url: '{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id',
headers: {'content-type': 'application/json'},
data: {
resource: {
account: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {region: ''},
loggings: [
{
activityLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
applicationLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
bootLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
osLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
resourceLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
}
}
],
redundancies: [
{
geoRedundancy: {geoLocations: [{}]},
localRedundancy: {geoLocations: [{}]},
zoneRedundancy: {geoLocations: [{}]}
}
],
parentId: '',
usageStatistics: {apiHitsPerMonth: 0}
},
job: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
workflow: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
codeRepository: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
qpu: {
creationTime: '',
description: '',
errorCorrectionEnabled: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
oneQubitGateErrorRate: '',
raw: '',
spamErrorRate: '',
twoQubitGateErrorRate: '',
encryptionInUse: {enabled: false},
geoLocation: {},
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {creationTime: '', enabled: false, status: false},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
container: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
encryptionInUse: {},
geoLocation: {},
imageId: '',
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
function: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
runtimeLanguage: '',
runtimeVersion: '',
encryptionInUse: {},
geoLocation: {},
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
virtualMachine: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
automaticUpdates: {enabled: false, interval: '', securityOnly: false},
blockStorageIds: [],
bootLogging: {},
encryptionInUse: {},
geoLocation: {},
loggings: [{}],
malwareProtection: {
durationSinceActive: '',
enabled: false,
numberOfThreatsFound: 0,
applicationLogging: {}
},
networkInterfaceIds: [],
osLogging: {},
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerOrchestration: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
managementUrl: '',
name: '',
raw: '',
containerIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerRegistry: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
certificate: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
key: {
algorithm: '',
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
keySize: 0,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
secret: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
identity: {
activated: false,
creationTime: '',
description: '',
disablePasswordPolicy: false,
enforceMfa: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
lastActivity: '',
loginDefenderEnabled: false,
name: '',
privileged: false,
raw: '',
authenticity: {
certificateBasedAuthentication: {contextIsChecked: false, enabled: false},
tokenBasedAuthentication: {contextIsChecked: false, enabled: false, enforced: false},
multiFactorAuthentiation: {contextIsChecked: false, authenticities: []},
noAuthentication: {contextIsChecked: false},
otpBasedAuthentication: {activated: false, contextIsChecked: false},
passwordBasedAuthentication: {activated: false, contextIsChecked: false},
singleSignOn: {contextIsChecked: false, enabled: false}
},
authorization: {
abac: {},
l3Firewall: {enabled: false, inbound: false, restrictedPorts: ''},
webApplicationFirewall: {enabled: false},
rbac: {broadAssignments: '', mixedDuties: ''}
},
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
roleAssignment: {
activated: false,
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
authenticity: {},
authorization: {},
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
containerImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
vmImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
deviceProvisioningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
messagingHub: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
keyVault: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
credentialIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
networkInterface: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
accessRestriction: {l3Firewall: {}, webApplicationFirewall: {}},
geoLocation: {},
loggings: [{}],
networkServiceId: '',
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
networkSecurityGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
functionService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
functionIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {
enabled: false,
enforced: false,
protocol: '',
protocolVersion: '',
cipherSuites: [
{
authenticationMechanism: '',
keyExchangeAlgorithm: '',
macAlgorithm: '',
sessionCipher: ''
}
]
},
usageStatistics: {}
},
genericNetworkService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loadBalancer: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
url: '',
accessRestriction: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoints: [
{
handler: '',
method: '',
path: '',
url: '',
authenticity: {},
transportEncryption: {}
}
],
loggings: [{}],
networkServiceIds: [],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loggingService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
machineLearningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
machineLearningIds: [],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
securityAdvisoryService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
keyIds: [],
loggings: [{}],
redundancies: [{}],
parentId: '',
securityAdvisoryFeeds: [{securityAdvisoryDocumentIds: []}],
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
documentDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{enabled: false, scope: '', applicationLogging: {}}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
keyValueDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
multiModalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
relationalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
fileStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
objectStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
virtualNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
virtualSubNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
passwordPolicy: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
resourceGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
blockStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {
customerKeyEncryption: {algorithm: '', enabled: false, keyUrl: ''},
managedKeyEncryption: {algorithm: '', enabled: false, keyUrl: ''}
},
backups: [
{
enabled: false,
interval: '',
retentionPeriod: '',
storageId: '',
transportEncryption: {}
}
],
geoLocation: {},
immutability: {enabled: false},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
databaseStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
fileStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
objectStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
codeNotebook: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
codeIds: [],
dataLocation: {
localDataLocation: {path: '', atRestEncryption: {}, storageId: ''},
remoteDataLocation: {path: '', authenticity: {}, storageId: '', transportEncryption: {}}
},
documentChecksums: [{algorithm: '', errors: [{message: ''}]}],
documentSignatures: [{algorithm: '', errors: [{}]}],
parentId: '',
schemaValidation: {format: '', schemaUrl: '', errors: [{}]},
securityFeatures: [
{
anomalyDetection: {},
activityLogging: {},
applicationLogging: {},
bootLogging: {},
osLogging: {},
resourceLogging: {},
malwareProtection: {},
usageStatistics: {},
certificateBasedAuthentication: {},
tokenBasedAuthentication: {},
multiFactorAuthentiation: {},
noAuthentication: {},
otpBasedAuthentication: {},
passwordBasedAuthentication: {},
singleSignOn: {},
abac: {},
l3Firewall: {},
webApplicationFirewall: {},
rbac: {},
backup: {},
dDoSProtection: {},
geoLocation: {},
geoRedundancy: {},
localRedundancy: {},
zoneRedundancy: {},
customerKeyEncryption: {},
managedKeyEncryption: {},
encryptionInUse: {},
transportEncryption: {},
localAttestation: {enabled: false},
remoteAttestation: {},
automaticUpdates: {},
documentChecksum: {},
immutability: {},
documentSignature: {},
explainableResults: {},
robustnessScore: {}
}
]
},
genericDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
policyDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
securityAdvisoryDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}],
vulnerabilities: [{cve: '', cwe: [], description: '', name: '', url: ''}]
},
serviceMetadataDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
machineLearningDataset: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
size: 0,
type: '',
dataLocation: {},
parentId: ''
},
machineLearningModel: {
advRobustness: '',
creationTime: '',
description: '',
explainability: '',
id: '',
labels: {},
name: '',
poisonLevel: '',
privacyLabel: '',
privacyLevel: '',
raw: '',
robustness: '',
dataLocation: {},
parentId: '',
vulnerabilities: [{}]
},
awarenessTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
securityTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
application: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
programmingLanguage: '',
programmingVersion: '',
raw: '',
translationUnits: [],
automaticUpdates: {},
codeModuleIds: [],
codeRepositoryId: '',
computeId: '',
functionalities: [
{
cipherSuite: {},
codeRegion: {code: '', endColumn: 0, endLine: 0, file: '', startColumn: 0, startLine: 0},
localDataLocation: {},
remoteDataLocation: {},
error: {},
httpEndpoint: {},
httpRequestHandler: {path: '', applicationId: '', httpEndpoints: [{}]},
decryption: {algorithm: '', codeRegion: {}},
encryption: {algorithm: '', codeRegion: {}},
cryptographicHash: {algorithm: '', usesSalt: false, codeRegion: {}},
databaseConnect: {calls: [], codeRegion: {}, databaseServiceIds: [], databaseStorageId: ''},
databaseQuery: {
calls: [],
modify: false,
codeRegion: {},
databaseServiceIds: [],
databaseStorageId: ''
},
httpRequest: {call: '', reqBody: '', codeRegion: {}, httpEndpoints: [{}]},
logOperation: {call: '', value: '', codeRegion: {}, logging: {}},
objectStorageRequest: {source: '', codeRegion: {}, objectStorageIds: []},
schemaValidation: {},
securityAdvisoryFeed: {},
vulnerability: {}
}
],
libraryIds: [],
parentId: ''
},
library: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [{}],
libraryIds: [],
parentId: '',
vulnerabilities: [{}]
},
sourceCodeFile: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [{}],
parentId: ''
}
}
}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const url = '{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id';
const options = {
method: 'POST',
headers: {'content-type': 'application/json'},
body: '{"resource":{"account":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{"region":""},"loggings":[{"activityLogging":{"enabled":false,"monitoringLogDataEnabled":false,"retentionPeriod":"","securityAlertsEnabled":false,"loggingServiceIds":[]},"applicationLogging":{"enabled":false,"monitoringLogDataEnabled":false,"retentionPeriod":"","securityAlertsEnabled":false,"loggingServiceIds":[]},"bootLogging":{"enabled":false,"monitoringLogDataEnabled":false,"retentionPeriod":"","securityAlertsEnabled":false,"loggingServiceIds":[]},"osLogging":{"enabled":false,"monitoringLogDataEnabled":false,"retentionPeriod":"","securityAlertsEnabled":false,"loggingServiceIds":[]},"resourceLogging":{"enabled":false,"monitoringLogDataEnabled":false,"retentionPeriod":"","securityAlertsEnabled":false,"loggingServiceIds":[]}}],"redundancies":[{"geoRedundancy":{"geoLocations":[{}]},"localRedundancy":{"geoLocations":[{}]},"zoneRedundancy":{"geoLocations":[{}]}}],"parentId":"","usageStatistics":{"apiHitsPerMonth":0}},"job":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"workflow":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"codeRepository":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"qpu":{"creationTime":"","description":"","errorCorrectionEnabled":false,"id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","oneQubitGateErrorRate":"","raw":"","spamErrorRate":"","twoQubitGateErrorRate":"","encryptionInUse":{"enabled":false},"geoLocation":{},"loggings":[{}],"networkInterfaceIds":[],"redundancies":[{}],"remoteAttestation":{"creationTime":"","enabled":false,"status":false},"parentId":"","resourceLogging":{},"usageStatistics":{}},"container":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","encryptionInUse":{},"geoLocation":{},"imageId":"","loggings":[{}],"networkInterfaceIds":[],"redundancies":[{}],"remoteAttestation":{},"parentId":"","resourceLogging":{},"usageStatistics":{}},"function":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","runtimeLanguage":"","runtimeVersion":"","encryptionInUse":{},"geoLocation":{},"loggings":[{}],"networkInterfaceIds":[],"redundancies":[{}],"remoteAttestation":{},"parentId":"","resourceLogging":{},"usageStatistics":{}},"virtualMachine":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","activityLogging":{},"automaticUpdates":{"enabled":false,"interval":"","securityOnly":false},"blockStorageIds":[],"bootLogging":{},"encryptionInUse":{},"geoLocation":{},"loggings":[{}],"malwareProtection":{"durationSinceActive":"","enabled":false,"numberOfThreatsFound":0,"applicationLogging":{}},"networkInterfaceIds":[],"osLogging":{},"redundancies":[{}],"remoteAttestation":{},"parentId":"","resourceLogging":{},"usageStatistics":{}},"containerOrchestration":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"managementUrl":"","name":"","raw":"","containerIds":[],"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","resourceLogging":{},"usageStatistics":{}},"containerRegistry":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"certificate":{"creationTime":"","description":"","enabled":false,"expirationDate":"","id":"","internetAccessibleEndpoint":false,"isManaged":false,"labels":{},"name":"","notBeforeDate":"","raw":"","geoLocation":{},"infrastructureId":"","loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"key":{"algorithm":"","creationTime":"","description":"","enabled":false,"expirationDate":"","id":"","internetAccessibleEndpoint":false,"isManaged":false,"keySize":0,"labels":{},"name":"","notBeforeDate":"","raw":"","geoLocation":{},"infrastructureId":"","loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"secret":{"creationTime":"","description":"","enabled":false,"expirationDate":"","id":"","internetAccessibleEndpoint":false,"isManaged":false,"labels":{},"name":"","notBeforeDate":"","raw":"","geoLocation":{},"infrastructureId":"","loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"identity":{"activated":false,"creationTime":"","description":"","disablePasswordPolicy":false,"enforceMfa":false,"id":"","internetAccessibleEndpoint":false,"labels":{},"lastActivity":"","loginDefenderEnabled":false,"name":"","privileged":false,"raw":"","authenticity":{"certificateBasedAuthentication":{"contextIsChecked":false,"enabled":false},"tokenBasedAuthentication":{"contextIsChecked":false,"enabled":false,"enforced":false},"multiFactorAuthentiation":{"contextIsChecked":false,"authenticities":[]},"noAuthentication":{"contextIsChecked":false},"otpBasedAuthentication":{"activated":false,"contextIsChecked":false},"passwordBasedAuthentication":{"activated":false,"contextIsChecked":false},"singleSignOn":{"contextIsChecked":false,"enabled":false}},"authorization":{"abac":{},"l3Firewall":{"enabled":false,"inbound":false,"restrictedPorts":""},"webApplicationFirewall":{"enabled":false},"rbac":{"broadAssignments":"","mixedDuties":""}},"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"roleAssignment":{"activated":false,"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","authenticity":{},"authorization":{},"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"containerImage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","applicationId":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"vmImage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","applicationId":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"deviceProvisioningService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"messagingHub":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"keyVault":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","credentialIds":[],"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"networkInterface":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","accessRestriction":{"l3Firewall":{},"webApplicationFirewall":{}},"geoLocation":{},"loggings":[{}],"networkServiceId":"","redundancies":[{}],"parentId":"","usageStatistics":{}},"networkSecurityGroup":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"functionService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","authenticity":{},"computeIds":[],"functionIds":[],"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","transportEncryption":{"enabled":false,"enforced":false,"protocol":"","protocolVersion":"","cipherSuites":[{"authenticationMechanism":"","keyExchangeAlgorithm":"","macAlgorithm":"","sessionCipher":""}]},"usageStatistics":{}},"genericNetworkService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","authenticity":{},"computeIds":[],"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","transportEncryption":{},"usageStatistics":{}},"loadBalancer":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","url":"","accessRestriction":{},"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoints":[{"handler":"","method":"","path":"","url":"","authenticity":{},"transportEncryption":{}}],"loggings":[{}],"networkServiceIds":[],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","transportEncryption":{},"usageStatistics":{}},"loggingService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","authenticity":{},"computeIds":[],"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"machineLearningService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","authenticity":{},"computeIds":[],"geoLocation":{},"loggings":[{}],"machineLearningIds":[],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"securityAdvisoryService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","authenticity":{},"computeIds":[],"geoLocation":{},"keyIds":[],"loggings":[{}],"redundancies":[{}],"parentId":"","securityAdvisoryFeeds":[{"securityAdvisoryDocumentIds":[]}],"serviceMetadataDocumentId":"","transportEncryption":{},"usageStatistics":{}},"documentDatabaseService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"anomalyDetections":[{"enabled":false,"scope":"","applicationLogging":{}}],"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"malwareProtection":{},"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"keyValueDatabaseService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"anomalyDetections":[{}],"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"malwareProtection":{},"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"multiModalDatabaseService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"anomalyDetections":[{}],"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"malwareProtection":{},"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"relationalDatabaseService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"anomalyDetections":[{}],"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"malwareProtection":{},"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"fileStorageService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"objectStorageService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"virtualNetwork":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"virtualSubNetwork":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"passwordPolicy":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"resourceGroup":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"blockStorage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","activityLogging":{},"atRestEncryption":{"customerKeyEncryption":{"algorithm":"","enabled":false,"keyUrl":""},"managedKeyEncryption":{"algorithm":"","enabled":false,"keyUrl":""}},"backups":[{"enabled":false,"interval":"","retentionPeriod":"","storageId":"","transportEncryption":{}}],"geoLocation":{},"immutability":{"enabled":false},"loggings":[{}],"redundancies":[{}],"parentId":"","resourceLogging":{},"usageStatistics":{}},"databaseStorage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","activityLogging":{},"atRestEncryption":{},"backups":[{}],"geoLocation":{},"immutability":{},"loggings":[{}],"redundancies":[{}],"parentId":"","resourceLogging":{},"usageStatistics":{}},"fileStorage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","publicAccess":false,"raw":"","activityLogging":{},"atRestEncryption":{},"backups":[{}],"geoLocation":{},"immutability":{},"loggings":[{}],"redundancies":[{}],"parentId":"","resourceLogging":{},"usageStatistics":{}},"objectStorage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","publicAccess":false,"raw":"","activityLogging":{},"atRestEncryption":{},"backups":[{}],"geoLocation":{},"immutability":{},"loggings":[{}],"redundancies":[{}],"parentId":"","resourceLogging":{},"usageStatistics":{}},"codeNotebook":{"creationTime":"","description":"","filetype":"","id":"","labels":{},"name":"","raw":"","codeIds":[],"dataLocation":{"localDataLocation":{"path":"","atRestEncryption":{},"storageId":""},"remoteDataLocation":{"path":"","authenticity":{},"storageId":"","transportEncryption":{}}},"documentChecksums":[{"algorithm":"","errors":[{"message":""}]}],"documentSignatures":[{"algorithm":"","errors":[{}]}],"parentId":"","schemaValidation":{"format":"","schemaUrl":"","errors":[{}]},"securityFeatures":[{"anomalyDetection":{},"activityLogging":{},"applicationLogging":{},"bootLogging":{},"osLogging":{},"resourceLogging":{},"malwareProtection":{},"usageStatistics":{},"certificateBasedAuthentication":{},"tokenBasedAuthentication":{},"multiFactorAuthentiation":{},"noAuthentication":{},"otpBasedAuthentication":{},"passwordBasedAuthentication":{},"singleSignOn":{},"abac":{},"l3Firewall":{},"webApplicationFirewall":{},"rbac":{},"backup":{},"dDoSProtection":{},"geoLocation":{},"geoRedundancy":{},"localRedundancy":{},"zoneRedundancy":{},"customerKeyEncryption":{},"managedKeyEncryption":{},"encryptionInUse":{},"transportEncryption":{},"localAttestation":{"enabled":false},"remoteAttestation":{},"automaticUpdates":{},"documentChecksum":{},"immutability":{},"documentSignature":{},"explainableResults":{},"robustnessScore":{}}]},"genericDocument":{"creationTime":"","description":"","filetype":"","id":"","labels":{},"name":"","raw":"","dataLocation":{},"documentChecksums":[{}],"documentSignatures":[{}],"parentId":"","schemaValidation":{},"securityFeatures":[{}]},"policyDocument":{"creationTime":"","description":"","filetype":"","id":"","labels":{},"name":"","raw":"","dataLocation":{},"documentChecksums":[{}],"documentSignatures":[{}],"parentId":"","schemaValidation":{},"securityFeatures":[{}]},"securityAdvisoryDocument":{"creationTime":"","description":"","filetype":"","id":"","labels":{},"name":"","raw":"","dataLocation":{},"documentChecksums":[{}],"documentSignatures":[{}],"parentId":"","schemaValidation":{},"securityFeatures":[{}],"vulnerabilities":[{"cve":"","cwe":[],"description":"","name":"","url":""}]},"serviceMetadataDocument":{"creationTime":"","description":"","filetype":"","id":"","labels":{},"name":"","raw":"","dataLocation":{},"documentChecksums":[{}],"documentSignatures":[{}],"parentId":"","schemaValidation":{},"securityFeatures":[{}]},"machineLearningDataset":{"creationTime":"","description":"","id":"","labels":{},"name":"","raw":"","size":0,"type":"","dataLocation":{},"parentId":""},"machineLearningModel":{"advRobustness":"","creationTime":"","description":"","explainability":"","id":"","labels":{},"name":"","poisonLevel":"","privacyLabel":"","privacyLevel":"","raw":"","robustness":"","dataLocation":{},"parentId":"","vulnerabilities":[{}]},"awarenessTraining":{"annualUpdateCompleted":false,"creationTime":"","description":"","id":"","labels":{},"name":"","raw":"","successfullyCompletedPercentage":false,"parentId":""},"securityTraining":{"annualUpdateCompleted":false,"creationTime":"","description":"","id":"","labels":{},"name":"","raw":"","successfullyCompletedPercentage":false,"parentId":""},"application":{"creationTime":"","description":"","id":"","labels":{},"name":"","programmingLanguage":"","programmingVersion":"","raw":"","translationUnits":[],"automaticUpdates":{},"codeModuleIds":[],"codeRepositoryId":"","computeId":"","functionalities":[{"cipherSuite":{},"codeRegion":{"code":"","endColumn":0,"endLine":0,"file":"","startColumn":0,"startLine":0},"localDataLocation":{},"remoteDataLocation":{},"error":{},"httpEndpoint":{},"httpRequestHandler":{"path":"","applicationId":"","httpEndpoints":[{}]},"decryption":{"algorithm":"","codeRegion":{}},"encryption":{"algorithm":"","codeRegion":{}},"cryptographicHash":{"algorithm":"","usesSalt":false,"codeRegion":{}},"databaseConnect":{"calls":[],"codeRegion":{},"databaseServiceIds":[],"databaseStorageId":""},"databaseQuery":{"calls":[],"modify":false,"codeRegion":{},"databaseServiceIds":[],"databaseStorageId":""},"httpRequest":{"call":"","reqBody":"","codeRegion":{},"httpEndpoints":[{}]},"logOperation":{"call":"","value":"","codeRegion":{},"logging":{}},"objectStorageRequest":{"source":"","codeRegion":{},"objectStorageIds":[]},"schemaValidation":{},"securityAdvisoryFeed":{},"vulnerability":{}}],"libraryIds":[],"parentId":""},"library":{"creationTime":"","description":"","id":"","labels":{},"name":"","raw":"","codeModuleIds":[],"codeRepositoryId":"","functionalities":[{}],"libraryIds":[],"parentId":"","vulnerabilities":[{}]},"sourceCodeFile":{"creationTime":"","description":"","id":"","labels":{},"name":"","raw":"","codeModuleIds":[],"codeRepositoryId":"","functionalities":[{}],"parentId":""}}}'
};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
const settings = {
async: true,
crossDomain: true,
url: '{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id',
method: 'POST',
headers: {
'content-type': 'application/json'
},
processData: false,
data: '{\n "resource": {\n "account": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {\n "region": ""\n },\n "loggings": [\n {\n "activityLogging": {\n "enabled": false,\n "monitoringLogDataEnabled": false,\n "retentionPeriod": "",\n "securityAlertsEnabled": false,\n "loggingServiceIds": []\n },\n "applicationLogging": {\n "enabled": false,\n "monitoringLogDataEnabled": false,\n "retentionPeriod": "",\n "securityAlertsEnabled": false,\n "loggingServiceIds": []\n },\n "bootLogging": {\n "enabled": false,\n "monitoringLogDataEnabled": false,\n "retentionPeriod": "",\n "securityAlertsEnabled": false,\n "loggingServiceIds": []\n },\n "osLogging": {\n "enabled": false,\n "monitoringLogDataEnabled": false,\n "retentionPeriod": "",\n "securityAlertsEnabled": false,\n "loggingServiceIds": []\n },\n "resourceLogging": {\n "enabled": false,\n "monitoringLogDataEnabled": false,\n "retentionPeriod": "",\n "securityAlertsEnabled": false,\n "loggingServiceIds": []\n }\n }\n ],\n "redundancies": [\n {\n "geoRedundancy": {\n "geoLocations": [\n {}\n ]\n },\n "localRedundancy": {\n "geoLocations": [\n {}\n ]\n },\n "zoneRedundancy": {\n "geoLocations": [\n {}\n ]\n }\n }\n ],\n "parentId": "",\n "usageStatistics": {\n "apiHitsPerMonth": 0\n }\n },\n "job": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "workflow": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "codeRepository": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "qpu": {\n "creationTime": "",\n "description": "",\n "errorCorrectionEnabled": false,\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "oneQubitGateErrorRate": "",\n "raw": "",\n "spamErrorRate": "",\n "twoQubitGateErrorRate": "",\n "encryptionInUse": {\n "enabled": false\n },\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "networkInterfaceIds": [],\n "redundancies": [\n {}\n ],\n "remoteAttestation": {\n "creationTime": "",\n "enabled": false,\n "status": false\n },\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "container": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "encryptionInUse": {},\n "geoLocation": {},\n "imageId": "",\n "loggings": [\n {}\n ],\n "networkInterfaceIds": [],\n "redundancies": [\n {}\n ],\n "remoteAttestation": {},\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "function": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "runtimeLanguage": "",\n "runtimeVersion": "",\n "encryptionInUse": {},\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "networkInterfaceIds": [],\n "redundancies": [\n {}\n ],\n "remoteAttestation": {},\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "virtualMachine": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "activityLogging": {},\n "automaticUpdates": {\n "enabled": false,\n "interval": "",\n "securityOnly": false\n },\n "blockStorageIds": [],\n "bootLogging": {},\n "encryptionInUse": {},\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "malwareProtection": {\n "durationSinceActive": "",\n "enabled": false,\n "numberOfThreatsFound": 0,\n "applicationLogging": {}\n },\n "networkInterfaceIds": [],\n "osLogging": {},\n "redundancies": [\n {}\n ],\n "remoteAttestation": {},\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "containerOrchestration": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "managementUrl": "",\n "name": "",\n "raw": "",\n "containerIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "containerRegistry": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "certificate": {\n "creationTime": "",\n "description": "",\n "enabled": false,\n "expirationDate": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "isManaged": false,\n "labels": {},\n "name": "",\n "notBeforeDate": "",\n "raw": "",\n "geoLocation": {},\n "infrastructureId": "",\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "key": {\n "algorithm": "",\n "creationTime": "",\n "description": "",\n "enabled": false,\n "expirationDate": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "isManaged": false,\n "keySize": 0,\n "labels": {},\n "name": "",\n "notBeforeDate": "",\n "raw": "",\n "geoLocation": {},\n "infrastructureId": "",\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "secret": {\n "creationTime": "",\n "description": "",\n "enabled": false,\n "expirationDate": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "isManaged": false,\n "labels": {},\n "name": "",\n "notBeforeDate": "",\n "raw": "",\n "geoLocation": {},\n "infrastructureId": "",\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "identity": {\n "activated": false,\n "creationTime": "",\n "description": "",\n "disablePasswordPolicy": false,\n "enforceMfa": false,\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "lastActivity": "",\n "loginDefenderEnabled": false,\n "name": "",\n "privileged": false,\n "raw": "",\n "authenticity": {\n "certificateBasedAuthentication": {\n "contextIsChecked": false,\n "enabled": false\n },\n "tokenBasedAuthentication": {\n "contextIsChecked": false,\n "enabled": false,\n "enforced": false\n },\n "multiFactorAuthentiation": {\n "contextIsChecked": false,\n "authenticities": []\n },\n "noAuthentication": {\n "contextIsChecked": false\n },\n "otpBasedAuthentication": {\n "activated": false,\n "contextIsChecked": false\n },\n "passwordBasedAuthentication": {\n "activated": false,\n "contextIsChecked": false\n },\n "singleSignOn": {\n "contextIsChecked": false,\n "enabled": false\n }\n },\n "authorization": {\n "abac": {},\n "l3Firewall": {\n "enabled": false,\n "inbound": false,\n "restrictedPorts": ""\n },\n "webApplicationFirewall": {\n "enabled": false\n },\n "rbac": {\n "broadAssignments": "",\n "mixedDuties": ""\n }\n },\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "roleAssignment": {\n "activated": false,\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "authenticity": {},\n "authorization": {},\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "containerImage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "applicationId": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "vmImage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "applicationId": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "deviceProvisioningService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "messagingHub": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "keyVault": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "credentialIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "networkInterface": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "accessRestriction": {\n "l3Firewall": {},\n "webApplicationFirewall": {}\n },\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "networkServiceId": "",\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "networkSecurityGroup": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "functionService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "authenticity": {},\n "computeIds": [],\n "functionIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "transportEncryption": {\n "enabled": false,\n "enforced": false,\n "protocol": "",\n "protocolVersion": "",\n "cipherSuites": [\n {\n "authenticationMechanism": "",\n "keyExchangeAlgorithm": "",\n "macAlgorithm": "",\n "sessionCipher": ""\n }\n ]\n },\n "usageStatistics": {}\n },\n "genericNetworkService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "loadBalancer": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "url": "",\n "accessRestriction": {},\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoints": [\n {\n "handler": "",\n "method": "",\n "path": "",\n "url": "",\n "authenticity": {},\n "transportEncryption": {}\n }\n ],\n "loggings": [\n {}\n ],\n "networkServiceIds": [],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "loggingService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "machineLearningService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "machineLearningIds": [],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "securityAdvisoryService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "keyIds": [],\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "securityAdvisoryFeeds": [\n {\n "securityAdvisoryDocumentIds": []\n }\n ],\n "serviceMetadataDocumentId": "",\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "documentDatabaseService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "anomalyDetections": [\n {\n "enabled": false,\n "scope": "",\n "applicationLogging": {}\n }\n ],\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "malwareProtection": {},\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "keyValueDatabaseService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "anomalyDetections": [\n {}\n ],\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "malwareProtection": {},\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "multiModalDatabaseService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "anomalyDetections": [\n {}\n ],\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "malwareProtection": {},\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "relationalDatabaseService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "anomalyDetections": [\n {}\n ],\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "malwareProtection": {},\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "fileStorageService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "objectStorageService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "virtualNetwork": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "virtualSubNetwork": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "passwordPolicy": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "resourceGroup": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "blockStorage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "activityLogging": {},\n "atRestEncryption": {\n "customerKeyEncryption": {\n "algorithm": "",\n "enabled": false,\n "keyUrl": ""\n },\n "managedKeyEncryption": {\n "algorithm": "",\n "enabled": false,\n "keyUrl": ""\n }\n },\n "backups": [\n {\n "enabled": false,\n "interval": "",\n "retentionPeriod": "",\n "storageId": "",\n "transportEncryption": {}\n }\n ],\n "geoLocation": {},\n "immutability": {\n "enabled": false\n },\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "databaseStorage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "activityLogging": {},\n "atRestEncryption": {},\n "backups": [\n {}\n ],\n "geoLocation": {},\n "immutability": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "fileStorage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "publicAccess": false,\n "raw": "",\n "activityLogging": {},\n "atRestEncryption": {},\n "backups": [\n {}\n ],\n "geoLocation": {},\n "immutability": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "objectStorage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "publicAccess": false,\n "raw": "",\n "activityLogging": {},\n "atRestEncryption": {},\n "backups": [\n {}\n ],\n "geoLocation": {},\n "immutability": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "codeNotebook": {\n "creationTime": "",\n "description": "",\n "filetype": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "codeIds": [],\n "dataLocation": {\n "localDataLocation": {\n "path": "",\n "atRestEncryption": {},\n "storageId": ""\n },\n "remoteDataLocation": {\n "path": "",\n "authenticity": {},\n "storageId": "",\n "transportEncryption": {}\n }\n },\n "documentChecksums": [\n {\n "algorithm": "",\n "errors": [\n {\n "message": ""\n }\n ]\n }\n ],\n "documentSignatures": [\n {\n "algorithm": "",\n "errors": [\n {}\n ]\n }\n ],\n "parentId": "",\n "schemaValidation": {\n "format": "",\n "schemaUrl": "",\n "errors": [\n {}\n ]\n },\n "securityFeatures": [\n {\n "anomalyDetection": {},\n "activityLogging": {},\n "applicationLogging": {},\n "bootLogging": {},\n "osLogging": {},\n "resourceLogging": {},\n "malwareProtection": {},\n "usageStatistics": {},\n "certificateBasedAuthentication": {},\n "tokenBasedAuthentication": {},\n "multiFactorAuthentiation": {},\n "noAuthentication": {},\n "otpBasedAuthentication": {},\n "passwordBasedAuthentication": {},\n "singleSignOn": {},\n "abac": {},\n "l3Firewall": {},\n "webApplicationFirewall": {},\n "rbac": {},\n "backup": {},\n "dDoSProtection": {},\n "geoLocation": {},\n "geoRedundancy": {},\n "localRedundancy": {},\n "zoneRedundancy": {},\n "customerKeyEncryption": {},\n "managedKeyEncryption": {},\n "encryptionInUse": {},\n "transportEncryption": {},\n "localAttestation": {\n "enabled": false\n },\n "remoteAttestation": {},\n "automaticUpdates": {},\n "documentChecksum": {},\n "immutability": {},\n "documentSignature": {},\n "explainableResults": {},\n "robustnessScore": {}\n }\n ]\n },\n "genericDocument": {\n "creationTime": "",\n "description": "",\n "filetype": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "dataLocation": {},\n "documentChecksums": [\n {}\n ],\n "documentSignatures": [\n {}\n ],\n "parentId": "",\n "schemaValidation": {},\n "securityFeatures": [\n {}\n ]\n },\n "policyDocument": {\n "creationTime": "",\n "description": "",\n "filetype": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "dataLocation": {},\n "documentChecksums": [\n {}\n ],\n "documentSignatures": [\n {}\n ],\n "parentId": "",\n "schemaValidation": {},\n "securityFeatures": [\n {}\n ]\n },\n "securityAdvisoryDocument": {\n "creationTime": "",\n "description": "",\n "filetype": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "dataLocation": {},\n "documentChecksums": [\n {}\n ],\n "documentSignatures": [\n {}\n ],\n "parentId": "",\n "schemaValidation": {},\n "securityFeatures": [\n {}\n ],\n "vulnerabilities": [\n {\n "cve": "",\n "cwe": [],\n "description": "",\n "name": "",\n "url": ""\n }\n ]\n },\n "serviceMetadataDocument": {\n "creationTime": "",\n "description": "",\n "filetype": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "dataLocation": {},\n "documentChecksums": [\n {}\n ],\n "documentSignatures": [\n {}\n ],\n "parentId": "",\n "schemaValidation": {},\n "securityFeatures": [\n {}\n ]\n },\n "machineLearningDataset": {\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "size": 0,\n "type": "",\n "dataLocation": {},\n "parentId": ""\n },\n "machineLearningModel": {\n "advRobustness": "",\n "creationTime": "",\n "description": "",\n "explainability": "",\n "id": "",\n "labels": {},\n "name": "",\n "poisonLevel": "",\n "privacyLabel": "",\n "privacyLevel": "",\n "raw": "",\n "robustness": "",\n "dataLocation": {},\n "parentId": "",\n "vulnerabilities": [\n {}\n ]\n },\n "awarenessTraining": {\n "annualUpdateCompleted": false,\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "successfullyCompletedPercentage": false,\n "parentId": ""\n },\n "securityTraining": {\n "annualUpdateCompleted": false,\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "successfullyCompletedPercentage": false,\n "parentId": ""\n },\n "application": {\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "programmingLanguage": "",\n "programmingVersion": "",\n "raw": "",\n "translationUnits": [],\n "automaticUpdates": {},\n "codeModuleIds": [],\n "codeRepositoryId": "",\n "computeId": "",\n "functionalities": [\n {\n "cipherSuite": {},\n "codeRegion": {\n "code": "",\n "endColumn": 0,\n "endLine": 0,\n "file": "",\n "startColumn": 0,\n "startLine": 0\n },\n "localDataLocation": {},\n "remoteDataLocation": {},\n "error": {},\n "httpEndpoint": {},\n "httpRequestHandler": {\n "path": "",\n "applicationId": "",\n "httpEndpoints": [\n {}\n ]\n },\n "decryption": {\n "algorithm": "",\n "codeRegion": {}\n },\n "encryption": {\n "algorithm": "",\n "codeRegion": {}\n },\n "cryptographicHash": {\n "algorithm": "",\n "usesSalt": false,\n "codeRegion": {}\n },\n "databaseConnect": {\n "calls": [],\n "codeRegion": {},\n "databaseServiceIds": [],\n "databaseStorageId": ""\n },\n "databaseQuery": {\n "calls": [],\n "modify": false,\n "codeRegion": {},\n "databaseServiceIds": [],\n "databaseStorageId": ""\n },\n "httpRequest": {\n "call": "",\n "reqBody": "",\n "codeRegion": {},\n "httpEndpoints": [\n {}\n ]\n },\n "logOperation": {\n "call": "",\n "value": "",\n "codeRegion": {},\n "logging": {}\n },\n "objectStorageRequest": {\n "source": "",\n "codeRegion": {},\n "objectStorageIds": []\n },\n "schemaValidation": {},\n "securityAdvisoryFeed": {},\n "vulnerability": {}\n }\n ],\n "libraryIds": [],\n "parentId": ""\n },\n "library": {\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "codeModuleIds": [],\n "codeRepositoryId": "",\n "functionalities": [\n {}\n ],\n "libraryIds": [],\n "parentId": "",\n "vulnerabilities": [\n {}\n ]\n },\n "sourceCodeFile": {\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "codeModuleIds": [],\n "codeRepositoryId": "",\n "functionalities": [\n {}\n ],\n "parentId": ""\n }\n }\n}'
};
$.ajax(settings).done(function (response) {
console.log(response);
});
val client = OkHttpClient()
val mediaType = MediaType.parse("application/json")
val body = RequestBody.create(mediaType, "{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}")
val request = Request.Builder()
.url("{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id")
.post(body)
.addHeader("content-type", "application/json")
.build()
val response = client.newCall(request).execute()
const http = require('https');
const options = {
method: 'POST',
hostname: 'example.com',
port: null,
path: '/baseUrl/v1experimental/evidence_store/resources/:resource.id',
headers: {
'content-type': 'application/json'
}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on('data', function (chunk) {
chunks.push(chunk);
});
res.on('end', function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.write(JSON.stringify({
resource: {
account: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {region: ''},
loggings: [
{
activityLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
applicationLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
bootLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
osLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
resourceLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
}
}
],
redundancies: [
{
geoRedundancy: {geoLocations: [{}]},
localRedundancy: {geoLocations: [{}]},
zoneRedundancy: {geoLocations: [{}]}
}
],
parentId: '',
usageStatistics: {apiHitsPerMonth: 0}
},
job: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
workflow: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
codeRepository: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
qpu: {
creationTime: '',
description: '',
errorCorrectionEnabled: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
oneQubitGateErrorRate: '',
raw: '',
spamErrorRate: '',
twoQubitGateErrorRate: '',
encryptionInUse: {enabled: false},
geoLocation: {},
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {creationTime: '', enabled: false, status: false},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
container: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
encryptionInUse: {},
geoLocation: {},
imageId: '',
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
function: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
runtimeLanguage: '',
runtimeVersion: '',
encryptionInUse: {},
geoLocation: {},
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
virtualMachine: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
automaticUpdates: {enabled: false, interval: '', securityOnly: false},
blockStorageIds: [],
bootLogging: {},
encryptionInUse: {},
geoLocation: {},
loggings: [{}],
malwareProtection: {
durationSinceActive: '',
enabled: false,
numberOfThreatsFound: 0,
applicationLogging: {}
},
networkInterfaceIds: [],
osLogging: {},
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerOrchestration: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
managementUrl: '',
name: '',
raw: '',
containerIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerRegistry: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
certificate: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
key: {
algorithm: '',
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
keySize: 0,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
secret: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
identity: {
activated: false,
creationTime: '',
description: '',
disablePasswordPolicy: false,
enforceMfa: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
lastActivity: '',
loginDefenderEnabled: false,
name: '',
privileged: false,
raw: '',
authenticity: {
certificateBasedAuthentication: {contextIsChecked: false, enabled: false},
tokenBasedAuthentication: {contextIsChecked: false, enabled: false, enforced: false},
multiFactorAuthentiation: {contextIsChecked: false, authenticities: []},
noAuthentication: {contextIsChecked: false},
otpBasedAuthentication: {activated: false, contextIsChecked: false},
passwordBasedAuthentication: {activated: false, contextIsChecked: false},
singleSignOn: {contextIsChecked: false, enabled: false}
},
authorization: {
abac: {},
l3Firewall: {enabled: false, inbound: false, restrictedPorts: ''},
webApplicationFirewall: {enabled: false},
rbac: {broadAssignments: '', mixedDuties: ''}
},
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
roleAssignment: {
activated: false,
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
authenticity: {},
authorization: {},
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
containerImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
vmImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
deviceProvisioningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
messagingHub: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
keyVault: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
credentialIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
networkInterface: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
accessRestriction: {l3Firewall: {}, webApplicationFirewall: {}},
geoLocation: {},
loggings: [{}],
networkServiceId: '',
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
networkSecurityGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
functionService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
functionIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {
enabled: false,
enforced: false,
protocol: '',
protocolVersion: '',
cipherSuites: [
{
authenticationMechanism: '',
keyExchangeAlgorithm: '',
macAlgorithm: '',
sessionCipher: ''
}
]
},
usageStatistics: {}
},
genericNetworkService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loadBalancer: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
url: '',
accessRestriction: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoints: [
{
handler: '',
method: '',
path: '',
url: '',
authenticity: {},
transportEncryption: {}
}
],
loggings: [{}],
networkServiceIds: [],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loggingService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
machineLearningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
machineLearningIds: [],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
securityAdvisoryService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
keyIds: [],
loggings: [{}],
redundancies: [{}],
parentId: '',
securityAdvisoryFeeds: [{securityAdvisoryDocumentIds: []}],
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
documentDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{enabled: false, scope: '', applicationLogging: {}}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
keyValueDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
multiModalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
relationalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
fileStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
objectStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
virtualNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
virtualSubNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
passwordPolicy: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
resourceGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
blockStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {
customerKeyEncryption: {algorithm: '', enabled: false, keyUrl: ''},
managedKeyEncryption: {algorithm: '', enabled: false, keyUrl: ''}
},
backups: [
{
enabled: false,
interval: '',
retentionPeriod: '',
storageId: '',
transportEncryption: {}
}
],
geoLocation: {},
immutability: {enabled: false},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
databaseStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
fileStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
objectStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
codeNotebook: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
codeIds: [],
dataLocation: {
localDataLocation: {path: '', atRestEncryption: {}, storageId: ''},
remoteDataLocation: {path: '', authenticity: {}, storageId: '', transportEncryption: {}}
},
documentChecksums: [{algorithm: '', errors: [{message: ''}]}],
documentSignatures: [{algorithm: '', errors: [{}]}],
parentId: '',
schemaValidation: {format: '', schemaUrl: '', errors: [{}]},
securityFeatures: [
{
anomalyDetection: {},
activityLogging: {},
applicationLogging: {},
bootLogging: {},
osLogging: {},
resourceLogging: {},
malwareProtection: {},
usageStatistics: {},
certificateBasedAuthentication: {},
tokenBasedAuthentication: {},
multiFactorAuthentiation: {},
noAuthentication: {},
otpBasedAuthentication: {},
passwordBasedAuthentication: {},
singleSignOn: {},
abac: {},
l3Firewall: {},
webApplicationFirewall: {},
rbac: {},
backup: {},
dDoSProtection: {},
geoLocation: {},
geoRedundancy: {},
localRedundancy: {},
zoneRedundancy: {},
customerKeyEncryption: {},
managedKeyEncryption: {},
encryptionInUse: {},
transportEncryption: {},
localAttestation: {enabled: false},
remoteAttestation: {},
automaticUpdates: {},
documentChecksum: {},
immutability: {},
documentSignature: {},
explainableResults: {},
robustnessScore: {}
}
]
},
genericDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
policyDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
securityAdvisoryDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}],
vulnerabilities: [{cve: '', cwe: [], description: '', name: '', url: ''}]
},
serviceMetadataDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
machineLearningDataset: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
size: 0,
type: '',
dataLocation: {},
parentId: ''
},
machineLearningModel: {
advRobustness: '',
creationTime: '',
description: '',
explainability: '',
id: '',
labels: {},
name: '',
poisonLevel: '',
privacyLabel: '',
privacyLevel: '',
raw: '',
robustness: '',
dataLocation: {},
parentId: '',
vulnerabilities: [{}]
},
awarenessTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
securityTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
application: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
programmingLanguage: '',
programmingVersion: '',
raw: '',
translationUnits: [],
automaticUpdates: {},
codeModuleIds: [],
codeRepositoryId: '',
computeId: '',
functionalities: [
{
cipherSuite: {},
codeRegion: {code: '', endColumn: 0, endLine: 0, file: '', startColumn: 0, startLine: 0},
localDataLocation: {},
remoteDataLocation: {},
error: {},
httpEndpoint: {},
httpRequestHandler: {path: '', applicationId: '', httpEndpoints: [{}]},
decryption: {algorithm: '', codeRegion: {}},
encryption: {algorithm: '', codeRegion: {}},
cryptographicHash: {algorithm: '', usesSalt: false, codeRegion: {}},
databaseConnect: {calls: [], codeRegion: {}, databaseServiceIds: [], databaseStorageId: ''},
databaseQuery: {
calls: [],
modify: false,
codeRegion: {},
databaseServiceIds: [],
databaseStorageId: ''
},
httpRequest: {call: '', reqBody: '', codeRegion: {}, httpEndpoints: [{}]},
logOperation: {call: '', value: '', codeRegion: {}, logging: {}},
objectStorageRequest: {source: '', codeRegion: {}, objectStorageIds: []},
schemaValidation: {},
securityAdvisoryFeed: {},
vulnerability: {}
}
],
libraryIds: [],
parentId: ''
},
library: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [{}],
libraryIds: [],
parentId: '',
vulnerabilities: [{}]
},
sourceCodeFile: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [{}],
parentId: ''
}
}
}));
req.end();
const request = require('request');
const options = {
method: 'POST',
url: '{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id',
headers: {'content-type': 'application/json'},
body: {
resource: {
account: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {region: ''},
loggings: [
{
activityLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
applicationLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
bootLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
osLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
resourceLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
}
}
],
redundancies: [
{
geoRedundancy: {geoLocations: [{}]},
localRedundancy: {geoLocations: [{}]},
zoneRedundancy: {geoLocations: [{}]}
}
],
parentId: '',
usageStatistics: {apiHitsPerMonth: 0}
},
job: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
workflow: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
codeRepository: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
qpu: {
creationTime: '',
description: '',
errorCorrectionEnabled: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
oneQubitGateErrorRate: '',
raw: '',
spamErrorRate: '',
twoQubitGateErrorRate: '',
encryptionInUse: {enabled: false},
geoLocation: {},
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {creationTime: '', enabled: false, status: false},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
container: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
encryptionInUse: {},
geoLocation: {},
imageId: '',
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
function: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
runtimeLanguage: '',
runtimeVersion: '',
encryptionInUse: {},
geoLocation: {},
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
virtualMachine: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
automaticUpdates: {enabled: false, interval: '', securityOnly: false},
blockStorageIds: [],
bootLogging: {},
encryptionInUse: {},
geoLocation: {},
loggings: [{}],
malwareProtection: {
durationSinceActive: '',
enabled: false,
numberOfThreatsFound: 0,
applicationLogging: {}
},
networkInterfaceIds: [],
osLogging: {},
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerOrchestration: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
managementUrl: '',
name: '',
raw: '',
containerIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerRegistry: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
certificate: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
key: {
algorithm: '',
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
keySize: 0,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
secret: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
identity: {
activated: false,
creationTime: '',
description: '',
disablePasswordPolicy: false,
enforceMfa: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
lastActivity: '',
loginDefenderEnabled: false,
name: '',
privileged: false,
raw: '',
authenticity: {
certificateBasedAuthentication: {contextIsChecked: false, enabled: false},
tokenBasedAuthentication: {contextIsChecked: false, enabled: false, enforced: false},
multiFactorAuthentiation: {contextIsChecked: false, authenticities: []},
noAuthentication: {contextIsChecked: false},
otpBasedAuthentication: {activated: false, contextIsChecked: false},
passwordBasedAuthentication: {activated: false, contextIsChecked: false},
singleSignOn: {contextIsChecked: false, enabled: false}
},
authorization: {
abac: {},
l3Firewall: {enabled: false, inbound: false, restrictedPorts: ''},
webApplicationFirewall: {enabled: false},
rbac: {broadAssignments: '', mixedDuties: ''}
},
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
roleAssignment: {
activated: false,
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
authenticity: {},
authorization: {},
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
containerImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
vmImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
deviceProvisioningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
messagingHub: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
keyVault: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
credentialIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
networkInterface: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
accessRestriction: {l3Firewall: {}, webApplicationFirewall: {}},
geoLocation: {},
loggings: [{}],
networkServiceId: '',
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
networkSecurityGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
functionService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
functionIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {
enabled: false,
enforced: false,
protocol: '',
protocolVersion: '',
cipherSuites: [
{
authenticationMechanism: '',
keyExchangeAlgorithm: '',
macAlgorithm: '',
sessionCipher: ''
}
]
},
usageStatistics: {}
},
genericNetworkService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loadBalancer: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
url: '',
accessRestriction: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoints: [
{
handler: '',
method: '',
path: '',
url: '',
authenticity: {},
transportEncryption: {}
}
],
loggings: [{}],
networkServiceIds: [],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loggingService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
machineLearningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
machineLearningIds: [],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
securityAdvisoryService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
keyIds: [],
loggings: [{}],
redundancies: [{}],
parentId: '',
securityAdvisoryFeeds: [{securityAdvisoryDocumentIds: []}],
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
documentDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{enabled: false, scope: '', applicationLogging: {}}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
keyValueDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
multiModalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
relationalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
fileStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
objectStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
virtualNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
virtualSubNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
passwordPolicy: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
resourceGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
blockStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {
customerKeyEncryption: {algorithm: '', enabled: false, keyUrl: ''},
managedKeyEncryption: {algorithm: '', enabled: false, keyUrl: ''}
},
backups: [
{
enabled: false,
interval: '',
retentionPeriod: '',
storageId: '',
transportEncryption: {}
}
],
geoLocation: {},
immutability: {enabled: false},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
databaseStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
fileStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
objectStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
codeNotebook: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
codeIds: [],
dataLocation: {
localDataLocation: {path: '', atRestEncryption: {}, storageId: ''},
remoteDataLocation: {path: '', authenticity: {}, storageId: '', transportEncryption: {}}
},
documentChecksums: [{algorithm: '', errors: [{message: ''}]}],
documentSignatures: [{algorithm: '', errors: [{}]}],
parentId: '',
schemaValidation: {format: '', schemaUrl: '', errors: [{}]},
securityFeatures: [
{
anomalyDetection: {},
activityLogging: {},
applicationLogging: {},
bootLogging: {},
osLogging: {},
resourceLogging: {},
malwareProtection: {},
usageStatistics: {},
certificateBasedAuthentication: {},
tokenBasedAuthentication: {},
multiFactorAuthentiation: {},
noAuthentication: {},
otpBasedAuthentication: {},
passwordBasedAuthentication: {},
singleSignOn: {},
abac: {},
l3Firewall: {},
webApplicationFirewall: {},
rbac: {},
backup: {},
dDoSProtection: {},
geoLocation: {},
geoRedundancy: {},
localRedundancy: {},
zoneRedundancy: {},
customerKeyEncryption: {},
managedKeyEncryption: {},
encryptionInUse: {},
transportEncryption: {},
localAttestation: {enabled: false},
remoteAttestation: {},
automaticUpdates: {},
documentChecksum: {},
immutability: {},
documentSignature: {},
explainableResults: {},
robustnessScore: {}
}
]
},
genericDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
policyDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
securityAdvisoryDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}],
vulnerabilities: [{cve: '', cwe: [], description: '', name: '', url: ''}]
},
serviceMetadataDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
machineLearningDataset: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
size: 0,
type: '',
dataLocation: {},
parentId: ''
},
machineLearningModel: {
advRobustness: '',
creationTime: '',
description: '',
explainability: '',
id: '',
labels: {},
name: '',
poisonLevel: '',
privacyLabel: '',
privacyLevel: '',
raw: '',
robustness: '',
dataLocation: {},
parentId: '',
vulnerabilities: [{}]
},
awarenessTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
securityTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
application: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
programmingLanguage: '',
programmingVersion: '',
raw: '',
translationUnits: [],
automaticUpdates: {},
codeModuleIds: [],
codeRepositoryId: '',
computeId: '',
functionalities: [
{
cipherSuite: {},
codeRegion: {code: '', endColumn: 0, endLine: 0, file: '', startColumn: 0, startLine: 0},
localDataLocation: {},
remoteDataLocation: {},
error: {},
httpEndpoint: {},
httpRequestHandler: {path: '', applicationId: '', httpEndpoints: [{}]},
decryption: {algorithm: '', codeRegion: {}},
encryption: {algorithm: '', codeRegion: {}},
cryptographicHash: {algorithm: '', usesSalt: false, codeRegion: {}},
databaseConnect: {calls: [], codeRegion: {}, databaseServiceIds: [], databaseStorageId: ''},
databaseQuery: {
calls: [],
modify: false,
codeRegion: {},
databaseServiceIds: [],
databaseStorageId: ''
},
httpRequest: {call: '', reqBody: '', codeRegion: {}, httpEndpoints: [{}]},
logOperation: {call: '', value: '', codeRegion: {}, logging: {}},
objectStorageRequest: {source: '', codeRegion: {}, objectStorageIds: []},
schemaValidation: {},
securityAdvisoryFeed: {},
vulnerability: {}
}
],
libraryIds: [],
parentId: ''
},
library: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [{}],
libraryIds: [],
parentId: '',
vulnerabilities: [{}]
},
sourceCodeFile: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [{}],
parentId: ''
}
}
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
const unirest = require('unirest');
const req = unirest('POST', '{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id');
req.headers({
'content-type': 'application/json'
});
req.type('json');
req.send({
resource: {
account: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {
region: ''
},
loggings: [
{
activityLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
applicationLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
bootLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
osLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
resourceLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
}
}
],
redundancies: [
{
geoRedundancy: {
geoLocations: [
{}
]
},
localRedundancy: {
geoLocations: [
{}
]
},
zoneRedundancy: {
geoLocations: [
{}
]
}
}
],
parentId: '',
usageStatistics: {
apiHitsPerMonth: 0
}
},
job: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
workflow: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
codeRepository: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
qpu: {
creationTime: '',
description: '',
errorCorrectionEnabled: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
oneQubitGateErrorRate: '',
raw: '',
spamErrorRate: '',
twoQubitGateErrorRate: '',
encryptionInUse: {
enabled: false
},
geoLocation: {},
loggings: [
{}
],
networkInterfaceIds: [],
redundancies: [
{}
],
remoteAttestation: {
creationTime: '',
enabled: false,
status: false
},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
container: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
encryptionInUse: {},
geoLocation: {},
imageId: '',
loggings: [
{}
],
networkInterfaceIds: [],
redundancies: [
{}
],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
function: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
runtimeLanguage: '',
runtimeVersion: '',
encryptionInUse: {},
geoLocation: {},
loggings: [
{}
],
networkInterfaceIds: [],
redundancies: [
{}
],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
virtualMachine: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
automaticUpdates: {
enabled: false,
interval: '',
securityOnly: false
},
blockStorageIds: [],
bootLogging: {},
encryptionInUse: {},
geoLocation: {},
loggings: [
{}
],
malwareProtection: {
durationSinceActive: '',
enabled: false,
numberOfThreatsFound: 0,
applicationLogging: {}
},
networkInterfaceIds: [],
osLogging: {},
redundancies: [
{}
],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerOrchestration: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
managementUrl: '',
name: '',
raw: '',
containerIds: [],
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerRegistry: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
certificate: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
key: {
algorithm: '',
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
keySize: 0,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
secret: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
identity: {
activated: false,
creationTime: '',
description: '',
disablePasswordPolicy: false,
enforceMfa: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
lastActivity: '',
loginDefenderEnabled: false,
name: '',
privileged: false,
raw: '',
authenticity: {
certificateBasedAuthentication: {
contextIsChecked: false,
enabled: false
},
tokenBasedAuthentication: {
contextIsChecked: false,
enabled: false,
enforced: false
},
multiFactorAuthentiation: {
contextIsChecked: false,
authenticities: []
},
noAuthentication: {
contextIsChecked: false
},
otpBasedAuthentication: {
activated: false,
contextIsChecked: false
},
passwordBasedAuthentication: {
activated: false,
contextIsChecked: false
},
singleSignOn: {
contextIsChecked: false,
enabled: false
}
},
authorization: {
abac: {},
l3Firewall: {
enabled: false,
inbound: false,
restrictedPorts: ''
},
webApplicationFirewall: {
enabled: false
},
rbac: {
broadAssignments: '',
mixedDuties: ''
}
},
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
roleAssignment: {
activated: false,
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
authenticity: {},
authorization: {},
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
containerImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
vmImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
deviceProvisioningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
messagingHub: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
keyVault: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
credentialIds: [],
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
networkInterface: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
accessRestriction: {
l3Firewall: {},
webApplicationFirewall: {}
},
geoLocation: {},
loggings: [
{}
],
networkServiceId: '',
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
networkSecurityGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
functionService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
functionIds: [],
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {
enabled: false,
enforced: false,
protocol: '',
protocolVersion: '',
cipherSuites: [
{
authenticationMechanism: '',
keyExchangeAlgorithm: '',
macAlgorithm: '',
sessionCipher: ''
}
]
},
usageStatistics: {}
},
genericNetworkService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loadBalancer: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
url: '',
accessRestriction: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoints: [
{
handler: '',
method: '',
path: '',
url: '',
authenticity: {},
transportEncryption: {}
}
],
loggings: [
{}
],
networkServiceIds: [],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loggingService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
machineLearningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [
{}
],
machineLearningIds: [],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
securityAdvisoryService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
keyIds: [],
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
securityAdvisoryFeeds: [
{
securityAdvisoryDocumentIds: []
}
],
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
documentDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [
{
enabled: false,
scope: '',
applicationLogging: {}
}
],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
malwareProtection: {},
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
keyValueDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [
{}
],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
malwareProtection: {},
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
multiModalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [
{}
],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
malwareProtection: {},
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
relationalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [
{}
],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
malwareProtection: {},
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
fileStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
objectStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
virtualNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
virtualSubNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
passwordPolicy: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
resourceGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
usageStatistics: {}
},
blockStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {
customerKeyEncryption: {
algorithm: '',
enabled: false,
keyUrl: ''
},
managedKeyEncryption: {
algorithm: '',
enabled: false,
keyUrl: ''
}
},
backups: [
{
enabled: false,
interval: '',
retentionPeriod: '',
storageId: '',
transportEncryption: {}
}
],
geoLocation: {},
immutability: {
enabled: false
},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
databaseStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [
{}
],
geoLocation: {},
immutability: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
fileStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [
{}
],
geoLocation: {},
immutability: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
objectStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [
{}
],
geoLocation: {},
immutability: {},
loggings: [
{}
],
redundancies: [
{}
],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
codeNotebook: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
codeIds: [],
dataLocation: {
localDataLocation: {
path: '',
atRestEncryption: {},
storageId: ''
},
remoteDataLocation: {
path: '',
authenticity: {},
storageId: '',
transportEncryption: {}
}
},
documentChecksums: [
{
algorithm: '',
errors: [
{
message: ''
}
]
}
],
documentSignatures: [
{
algorithm: '',
errors: [
{}
]
}
],
parentId: '',
schemaValidation: {
format: '',
schemaUrl: '',
errors: [
{}
]
},
securityFeatures: [
{
anomalyDetection: {},
activityLogging: {},
applicationLogging: {},
bootLogging: {},
osLogging: {},
resourceLogging: {},
malwareProtection: {},
usageStatistics: {},
certificateBasedAuthentication: {},
tokenBasedAuthentication: {},
multiFactorAuthentiation: {},
noAuthentication: {},
otpBasedAuthentication: {},
passwordBasedAuthentication: {},
singleSignOn: {},
abac: {},
l3Firewall: {},
webApplicationFirewall: {},
rbac: {},
backup: {},
dDoSProtection: {},
geoLocation: {},
geoRedundancy: {},
localRedundancy: {},
zoneRedundancy: {},
customerKeyEncryption: {},
managedKeyEncryption: {},
encryptionInUse: {},
transportEncryption: {},
localAttestation: {
enabled: false
},
remoteAttestation: {},
automaticUpdates: {},
documentChecksum: {},
immutability: {},
documentSignature: {},
explainableResults: {},
robustnessScore: {}
}
]
},
genericDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [
{}
],
documentSignatures: [
{}
],
parentId: '',
schemaValidation: {},
securityFeatures: [
{}
]
},
policyDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [
{}
],
documentSignatures: [
{}
],
parentId: '',
schemaValidation: {},
securityFeatures: [
{}
]
},
securityAdvisoryDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [
{}
],
documentSignatures: [
{}
],
parentId: '',
schemaValidation: {},
securityFeatures: [
{}
],
vulnerabilities: [
{
cve: '',
cwe: [],
description: '',
name: '',
url: ''
}
]
},
serviceMetadataDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [
{}
],
documentSignatures: [
{}
],
parentId: '',
schemaValidation: {},
securityFeatures: [
{}
]
},
machineLearningDataset: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
size: 0,
type: '',
dataLocation: {},
parentId: ''
},
machineLearningModel: {
advRobustness: '',
creationTime: '',
description: '',
explainability: '',
id: '',
labels: {},
name: '',
poisonLevel: '',
privacyLabel: '',
privacyLevel: '',
raw: '',
robustness: '',
dataLocation: {},
parentId: '',
vulnerabilities: [
{}
]
},
awarenessTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
securityTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
application: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
programmingLanguage: '',
programmingVersion: '',
raw: '',
translationUnits: [],
automaticUpdates: {},
codeModuleIds: [],
codeRepositoryId: '',
computeId: '',
functionalities: [
{
cipherSuite: {},
codeRegion: {
code: '',
endColumn: 0,
endLine: 0,
file: '',
startColumn: 0,
startLine: 0
},
localDataLocation: {},
remoteDataLocation: {},
error: {},
httpEndpoint: {},
httpRequestHandler: {
path: '',
applicationId: '',
httpEndpoints: [
{}
]
},
decryption: {
algorithm: '',
codeRegion: {}
},
encryption: {
algorithm: '',
codeRegion: {}
},
cryptographicHash: {
algorithm: '',
usesSalt: false,
codeRegion: {}
},
databaseConnect: {
calls: [],
codeRegion: {},
databaseServiceIds: [],
databaseStorageId: ''
},
databaseQuery: {
calls: [],
modify: false,
codeRegion: {},
databaseServiceIds: [],
databaseStorageId: ''
},
httpRequest: {
call: '',
reqBody: '',
codeRegion: {},
httpEndpoints: [
{}
]
},
logOperation: {
call: '',
value: '',
codeRegion: {},
logging: {}
},
objectStorageRequest: {
source: '',
codeRegion: {},
objectStorageIds: []
},
schemaValidation: {},
securityAdvisoryFeed: {},
vulnerability: {}
}
],
libraryIds: [],
parentId: ''
},
library: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [
{}
],
libraryIds: [],
parentId: '',
vulnerabilities: [
{}
]
},
sourceCodeFile: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [
{}
],
parentId: ''
}
}
});
req.end(function (res) {
if (res.error) throw new Error(res.error);
console.log(res.body);
});
const axios = require('axios').default;
const options = {
method: 'POST',
url: '{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id',
headers: {'content-type': 'application/json'},
data: {
resource: {
account: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {region: ''},
loggings: [
{
activityLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
applicationLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
bootLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
osLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
},
resourceLogging: {
enabled: false,
monitoringLogDataEnabled: false,
retentionPeriod: '',
securityAlertsEnabled: false,
loggingServiceIds: []
}
}
],
redundancies: [
{
geoRedundancy: {geoLocations: [{}]},
localRedundancy: {geoLocations: [{}]},
zoneRedundancy: {geoLocations: [{}]}
}
],
parentId: '',
usageStatistics: {apiHitsPerMonth: 0}
},
job: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
workflow: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
codeRepository: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
qpu: {
creationTime: '',
description: '',
errorCorrectionEnabled: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
oneQubitGateErrorRate: '',
raw: '',
spamErrorRate: '',
twoQubitGateErrorRate: '',
encryptionInUse: {enabled: false},
geoLocation: {},
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {creationTime: '', enabled: false, status: false},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
container: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
encryptionInUse: {},
geoLocation: {},
imageId: '',
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
function: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
runtimeLanguage: '',
runtimeVersion: '',
encryptionInUse: {},
geoLocation: {},
loggings: [{}],
networkInterfaceIds: [],
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
virtualMachine: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
automaticUpdates: {enabled: false, interval: '', securityOnly: false},
blockStorageIds: [],
bootLogging: {},
encryptionInUse: {},
geoLocation: {},
loggings: [{}],
malwareProtection: {
durationSinceActive: '',
enabled: false,
numberOfThreatsFound: 0,
applicationLogging: {}
},
networkInterfaceIds: [],
osLogging: {},
redundancies: [{}],
remoteAttestation: {},
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerOrchestration: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
managementUrl: '',
name: '',
raw: '',
containerIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
containerRegistry: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
certificate: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
key: {
algorithm: '',
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
keySize: 0,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
secret: {
creationTime: '',
description: '',
enabled: false,
expirationDate: '',
id: '',
internetAccessibleEndpoint: false,
isManaged: false,
labels: {},
name: '',
notBeforeDate: '',
raw: '',
geoLocation: {},
infrastructureId: '',
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
identity: {
activated: false,
creationTime: '',
description: '',
disablePasswordPolicy: false,
enforceMfa: false,
id: '',
internetAccessibleEndpoint: false,
labels: {},
lastActivity: '',
loginDefenderEnabled: false,
name: '',
privileged: false,
raw: '',
authenticity: {
certificateBasedAuthentication: {contextIsChecked: false, enabled: false},
tokenBasedAuthentication: {contextIsChecked: false, enabled: false, enforced: false},
multiFactorAuthentiation: {contextIsChecked: false, authenticities: []},
noAuthentication: {contextIsChecked: false},
otpBasedAuthentication: {activated: false, contextIsChecked: false},
passwordBasedAuthentication: {activated: false, contextIsChecked: false},
singleSignOn: {contextIsChecked: false, enabled: false}
},
authorization: {
abac: {},
l3Firewall: {enabled: false, inbound: false, restrictedPorts: ''},
webApplicationFirewall: {enabled: false},
rbac: {broadAssignments: '', mixedDuties: ''}
},
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
roleAssignment: {
activated: false,
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
authenticity: {},
authorization: {},
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
containerImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
vmImage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
applicationId: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
deviceProvisioningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
messagingHub: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
keyVault: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
credentialIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
networkInterface: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
accessRestriction: {l3Firewall: {}, webApplicationFirewall: {}},
geoLocation: {},
loggings: [{}],
networkServiceId: '',
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
networkSecurityGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
functionService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
functionIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {
enabled: false,
enforced: false,
protocol: '',
protocolVersion: '',
cipherSuites: [
{
authenticationMechanism: '',
keyExchangeAlgorithm: '',
macAlgorithm: '',
sessionCipher: ''
}
]
},
usageStatistics: {}
},
genericNetworkService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loadBalancer: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
url: '',
accessRestriction: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoints: [
{
handler: '',
method: '',
path: '',
url: '',
authenticity: {},
transportEncryption: {}
}
],
loggings: [{}],
networkServiceIds: [],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
loggingService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
machineLearningService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
loggings: [{}],
machineLearningIds: [],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
securityAdvisoryService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
authenticity: {},
computeIds: [],
geoLocation: {},
keyIds: [],
loggings: [{}],
redundancies: [{}],
parentId: '',
securityAdvisoryFeeds: [{securityAdvisoryDocumentIds: []}],
serviceMetadataDocumentId: '',
transportEncryption: {},
usageStatistics: {}
},
documentDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{enabled: false, scope: '', applicationLogging: {}}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
keyValueDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
multiModalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
relationalDatabaseService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
anomalyDetections: [{}],
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
malwareProtection: {},
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
fileStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
objectStorageService: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
ips: [],
labels: {},
name: '',
ports: [],
raw: '',
activityLogging: {},
authenticity: {},
computeIds: [],
geoLocation: {},
httpEndpoint: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
serviceMetadataDocumentId: '',
storageIds: [],
transportEncryption: {},
usageStatistics: {}
},
virtualNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
virtualSubNetwork: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
passwordPolicy: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
resourceGroup: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
geoLocation: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
usageStatistics: {}
},
blockStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {
customerKeyEncryption: {algorithm: '', enabled: false, keyUrl: ''},
managedKeyEncryption: {algorithm: '', enabled: false, keyUrl: ''}
},
backups: [
{
enabled: false,
interval: '',
retentionPeriod: '',
storageId: '',
transportEncryption: {}
}
],
geoLocation: {},
immutability: {enabled: false},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
databaseStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
fileStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
objectStorage: {
creationTime: '',
description: '',
id: '',
internetAccessibleEndpoint: false,
labels: {},
name: '',
publicAccess: false,
raw: '',
activityLogging: {},
atRestEncryption: {},
backups: [{}],
geoLocation: {},
immutability: {},
loggings: [{}],
redundancies: [{}],
parentId: '',
resourceLogging: {},
usageStatistics: {}
},
codeNotebook: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
codeIds: [],
dataLocation: {
localDataLocation: {path: '', atRestEncryption: {}, storageId: ''},
remoteDataLocation: {path: '', authenticity: {}, storageId: '', transportEncryption: {}}
},
documentChecksums: [{algorithm: '', errors: [{message: ''}]}],
documentSignatures: [{algorithm: '', errors: [{}]}],
parentId: '',
schemaValidation: {format: '', schemaUrl: '', errors: [{}]},
securityFeatures: [
{
anomalyDetection: {},
activityLogging: {},
applicationLogging: {},
bootLogging: {},
osLogging: {},
resourceLogging: {},
malwareProtection: {},
usageStatistics: {},
certificateBasedAuthentication: {},
tokenBasedAuthentication: {},
multiFactorAuthentiation: {},
noAuthentication: {},
otpBasedAuthentication: {},
passwordBasedAuthentication: {},
singleSignOn: {},
abac: {},
l3Firewall: {},
webApplicationFirewall: {},
rbac: {},
backup: {},
dDoSProtection: {},
geoLocation: {},
geoRedundancy: {},
localRedundancy: {},
zoneRedundancy: {},
customerKeyEncryption: {},
managedKeyEncryption: {},
encryptionInUse: {},
transportEncryption: {},
localAttestation: {enabled: false},
remoteAttestation: {},
automaticUpdates: {},
documentChecksum: {},
immutability: {},
documentSignature: {},
explainableResults: {},
robustnessScore: {}
}
]
},
genericDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
policyDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
securityAdvisoryDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}],
vulnerabilities: [{cve: '', cwe: [], description: '', name: '', url: ''}]
},
serviceMetadataDocument: {
creationTime: '',
description: '',
filetype: '',
id: '',
labels: {},
name: '',
raw: '',
dataLocation: {},
documentChecksums: [{}],
documentSignatures: [{}],
parentId: '',
schemaValidation: {},
securityFeatures: [{}]
},
machineLearningDataset: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
size: 0,
type: '',
dataLocation: {},
parentId: ''
},
machineLearningModel: {
advRobustness: '',
creationTime: '',
description: '',
explainability: '',
id: '',
labels: {},
name: '',
poisonLevel: '',
privacyLabel: '',
privacyLevel: '',
raw: '',
robustness: '',
dataLocation: {},
parentId: '',
vulnerabilities: [{}]
},
awarenessTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
securityTraining: {
annualUpdateCompleted: false,
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
successfullyCompletedPercentage: false,
parentId: ''
},
application: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
programmingLanguage: '',
programmingVersion: '',
raw: '',
translationUnits: [],
automaticUpdates: {},
codeModuleIds: [],
codeRepositoryId: '',
computeId: '',
functionalities: [
{
cipherSuite: {},
codeRegion: {code: '', endColumn: 0, endLine: 0, file: '', startColumn: 0, startLine: 0},
localDataLocation: {},
remoteDataLocation: {},
error: {},
httpEndpoint: {},
httpRequestHandler: {path: '', applicationId: '', httpEndpoints: [{}]},
decryption: {algorithm: '', codeRegion: {}},
encryption: {algorithm: '', codeRegion: {}},
cryptographicHash: {algorithm: '', usesSalt: false, codeRegion: {}},
databaseConnect: {calls: [], codeRegion: {}, databaseServiceIds: [], databaseStorageId: ''},
databaseQuery: {
calls: [],
modify: false,
codeRegion: {},
databaseServiceIds: [],
databaseStorageId: ''
},
httpRequest: {call: '', reqBody: '', codeRegion: {}, httpEndpoints: [{}]},
logOperation: {call: '', value: '', codeRegion: {}, logging: {}},
objectStorageRequest: {source: '', codeRegion: {}, objectStorageIds: []},
schemaValidation: {},
securityAdvisoryFeed: {},
vulnerability: {}
}
],
libraryIds: [],
parentId: ''
},
library: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [{}],
libraryIds: [],
parentId: '',
vulnerabilities: [{}]
},
sourceCodeFile: {
creationTime: '',
description: '',
id: '',
labels: {},
name: '',
raw: '',
codeModuleIds: [],
codeRepositoryId: '',
functionalities: [{}],
parentId: ''
}
}
}
};
try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
const fetch = require('node-fetch');
const url = '{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id';
const options = {
method: 'POST',
headers: {'content-type': 'application/json'},
body: '{"resource":{"account":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{"region":""},"loggings":[{"activityLogging":{"enabled":false,"monitoringLogDataEnabled":false,"retentionPeriod":"","securityAlertsEnabled":false,"loggingServiceIds":[]},"applicationLogging":{"enabled":false,"monitoringLogDataEnabled":false,"retentionPeriod":"","securityAlertsEnabled":false,"loggingServiceIds":[]},"bootLogging":{"enabled":false,"monitoringLogDataEnabled":false,"retentionPeriod":"","securityAlertsEnabled":false,"loggingServiceIds":[]},"osLogging":{"enabled":false,"monitoringLogDataEnabled":false,"retentionPeriod":"","securityAlertsEnabled":false,"loggingServiceIds":[]},"resourceLogging":{"enabled":false,"monitoringLogDataEnabled":false,"retentionPeriod":"","securityAlertsEnabled":false,"loggingServiceIds":[]}}],"redundancies":[{"geoRedundancy":{"geoLocations":[{}]},"localRedundancy":{"geoLocations":[{}]},"zoneRedundancy":{"geoLocations":[{}]}}],"parentId":"","usageStatistics":{"apiHitsPerMonth":0}},"job":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"workflow":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"codeRepository":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"qpu":{"creationTime":"","description":"","errorCorrectionEnabled":false,"id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","oneQubitGateErrorRate":"","raw":"","spamErrorRate":"","twoQubitGateErrorRate":"","encryptionInUse":{"enabled":false},"geoLocation":{},"loggings":[{}],"networkInterfaceIds":[],"redundancies":[{}],"remoteAttestation":{"creationTime":"","enabled":false,"status":false},"parentId":"","resourceLogging":{},"usageStatistics":{}},"container":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","encryptionInUse":{},"geoLocation":{},"imageId":"","loggings":[{}],"networkInterfaceIds":[],"redundancies":[{}],"remoteAttestation":{},"parentId":"","resourceLogging":{},"usageStatistics":{}},"function":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","runtimeLanguage":"","runtimeVersion":"","encryptionInUse":{},"geoLocation":{},"loggings":[{}],"networkInterfaceIds":[],"redundancies":[{}],"remoteAttestation":{},"parentId":"","resourceLogging":{},"usageStatistics":{}},"virtualMachine":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","activityLogging":{},"automaticUpdates":{"enabled":false,"interval":"","securityOnly":false},"blockStorageIds":[],"bootLogging":{},"encryptionInUse":{},"geoLocation":{},"loggings":[{}],"malwareProtection":{"durationSinceActive":"","enabled":false,"numberOfThreatsFound":0,"applicationLogging":{}},"networkInterfaceIds":[],"osLogging":{},"redundancies":[{}],"remoteAttestation":{},"parentId":"","resourceLogging":{},"usageStatistics":{}},"containerOrchestration":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"managementUrl":"","name":"","raw":"","containerIds":[],"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","resourceLogging":{},"usageStatistics":{}},"containerRegistry":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"certificate":{"creationTime":"","description":"","enabled":false,"expirationDate":"","id":"","internetAccessibleEndpoint":false,"isManaged":false,"labels":{},"name":"","notBeforeDate":"","raw":"","geoLocation":{},"infrastructureId":"","loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"key":{"algorithm":"","creationTime":"","description":"","enabled":false,"expirationDate":"","id":"","internetAccessibleEndpoint":false,"isManaged":false,"keySize":0,"labels":{},"name":"","notBeforeDate":"","raw":"","geoLocation":{},"infrastructureId":"","loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"secret":{"creationTime":"","description":"","enabled":false,"expirationDate":"","id":"","internetAccessibleEndpoint":false,"isManaged":false,"labels":{},"name":"","notBeforeDate":"","raw":"","geoLocation":{},"infrastructureId":"","loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"identity":{"activated":false,"creationTime":"","description":"","disablePasswordPolicy":false,"enforceMfa":false,"id":"","internetAccessibleEndpoint":false,"labels":{},"lastActivity":"","loginDefenderEnabled":false,"name":"","privileged":false,"raw":"","authenticity":{"certificateBasedAuthentication":{"contextIsChecked":false,"enabled":false},"tokenBasedAuthentication":{"contextIsChecked":false,"enabled":false,"enforced":false},"multiFactorAuthentiation":{"contextIsChecked":false,"authenticities":[]},"noAuthentication":{"contextIsChecked":false},"otpBasedAuthentication":{"activated":false,"contextIsChecked":false},"passwordBasedAuthentication":{"activated":false,"contextIsChecked":false},"singleSignOn":{"contextIsChecked":false,"enabled":false}},"authorization":{"abac":{},"l3Firewall":{"enabled":false,"inbound":false,"restrictedPorts":""},"webApplicationFirewall":{"enabled":false},"rbac":{"broadAssignments":"","mixedDuties":""}},"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"roleAssignment":{"activated":false,"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","authenticity":{},"authorization":{},"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"containerImage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","applicationId":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"vmImage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","applicationId":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"deviceProvisioningService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"messagingHub":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"keyVault":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","credentialIds":[],"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"networkInterface":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","accessRestriction":{"l3Firewall":{},"webApplicationFirewall":{}},"geoLocation":{},"loggings":[{}],"networkServiceId":"","redundancies":[{}],"parentId":"","usageStatistics":{}},"networkSecurityGroup":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"functionService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","authenticity":{},"computeIds":[],"functionIds":[],"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","transportEncryption":{"enabled":false,"enforced":false,"protocol":"","protocolVersion":"","cipherSuites":[{"authenticationMechanism":"","keyExchangeAlgorithm":"","macAlgorithm":"","sessionCipher":""}]},"usageStatistics":{}},"genericNetworkService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","authenticity":{},"computeIds":[],"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","transportEncryption":{},"usageStatistics":{}},"loadBalancer":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","url":"","accessRestriction":{},"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoints":[{"handler":"","method":"","path":"","url":"","authenticity":{},"transportEncryption":{}}],"loggings":[{}],"networkServiceIds":[],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","transportEncryption":{},"usageStatistics":{}},"loggingService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","authenticity":{},"computeIds":[],"geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"machineLearningService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","authenticity":{},"computeIds":[],"geoLocation":{},"loggings":[{}],"machineLearningIds":[],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"securityAdvisoryService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","authenticity":{},"computeIds":[],"geoLocation":{},"keyIds":[],"loggings":[{}],"redundancies":[{}],"parentId":"","securityAdvisoryFeeds":[{"securityAdvisoryDocumentIds":[]}],"serviceMetadataDocumentId":"","transportEncryption":{},"usageStatistics":{}},"documentDatabaseService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"anomalyDetections":[{"enabled":false,"scope":"","applicationLogging":{}}],"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"malwareProtection":{},"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"keyValueDatabaseService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"anomalyDetections":[{}],"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"malwareProtection":{},"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"multiModalDatabaseService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"anomalyDetections":[{}],"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"malwareProtection":{},"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"relationalDatabaseService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"anomalyDetections":[{}],"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"malwareProtection":{},"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"fileStorageService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"objectStorageService":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"ips":[],"labels":{},"name":"","ports":[],"raw":"","activityLogging":{},"authenticity":{},"computeIds":[],"geoLocation":{},"httpEndpoint":{},"loggings":[{}],"redundancies":[{}],"parentId":"","serviceMetadataDocumentId":"","storageIds":[],"transportEncryption":{},"usageStatistics":{}},"virtualNetwork":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"virtualSubNetwork":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"passwordPolicy":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"resourceGroup":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","geoLocation":{},"loggings":[{}],"redundancies":[{}],"parentId":"","usageStatistics":{}},"blockStorage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","activityLogging":{},"atRestEncryption":{"customerKeyEncryption":{"algorithm":"","enabled":false,"keyUrl":""},"managedKeyEncryption":{"algorithm":"","enabled":false,"keyUrl":""}},"backups":[{"enabled":false,"interval":"","retentionPeriod":"","storageId":"","transportEncryption":{}}],"geoLocation":{},"immutability":{"enabled":false},"loggings":[{}],"redundancies":[{}],"parentId":"","resourceLogging":{},"usageStatistics":{}},"databaseStorage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","raw":"","activityLogging":{},"atRestEncryption":{},"backups":[{}],"geoLocation":{},"immutability":{},"loggings":[{}],"redundancies":[{}],"parentId":"","resourceLogging":{},"usageStatistics":{}},"fileStorage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","publicAccess":false,"raw":"","activityLogging":{},"atRestEncryption":{},"backups":[{}],"geoLocation":{},"immutability":{},"loggings":[{}],"redundancies":[{}],"parentId":"","resourceLogging":{},"usageStatistics":{}},"objectStorage":{"creationTime":"","description":"","id":"","internetAccessibleEndpoint":false,"labels":{},"name":"","publicAccess":false,"raw":"","activityLogging":{},"atRestEncryption":{},"backups":[{}],"geoLocation":{},"immutability":{},"loggings":[{}],"redundancies":[{}],"parentId":"","resourceLogging":{},"usageStatistics":{}},"codeNotebook":{"creationTime":"","description":"","filetype":"","id":"","labels":{},"name":"","raw":"","codeIds":[],"dataLocation":{"localDataLocation":{"path":"","atRestEncryption":{},"storageId":""},"remoteDataLocation":{"path":"","authenticity":{},"storageId":"","transportEncryption":{}}},"documentChecksums":[{"algorithm":"","errors":[{"message":""}]}],"documentSignatures":[{"algorithm":"","errors":[{}]}],"parentId":"","schemaValidation":{"format":"","schemaUrl":"","errors":[{}]},"securityFeatures":[{"anomalyDetection":{},"activityLogging":{},"applicationLogging":{},"bootLogging":{},"osLogging":{},"resourceLogging":{},"malwareProtection":{},"usageStatistics":{},"certificateBasedAuthentication":{},"tokenBasedAuthentication":{},"multiFactorAuthentiation":{},"noAuthentication":{},"otpBasedAuthentication":{},"passwordBasedAuthentication":{},"singleSignOn":{},"abac":{},"l3Firewall":{},"webApplicationFirewall":{},"rbac":{},"backup":{},"dDoSProtection":{},"geoLocation":{},"geoRedundancy":{},"localRedundancy":{},"zoneRedundancy":{},"customerKeyEncryption":{},"managedKeyEncryption":{},"encryptionInUse":{},"transportEncryption":{},"localAttestation":{"enabled":false},"remoteAttestation":{},"automaticUpdates":{},"documentChecksum":{},"immutability":{},"documentSignature":{},"explainableResults":{},"robustnessScore":{}}]},"genericDocument":{"creationTime":"","description":"","filetype":"","id":"","labels":{},"name":"","raw":"","dataLocation":{},"documentChecksums":[{}],"documentSignatures":[{}],"parentId":"","schemaValidation":{},"securityFeatures":[{}]},"policyDocument":{"creationTime":"","description":"","filetype":"","id":"","labels":{},"name":"","raw":"","dataLocation":{},"documentChecksums":[{}],"documentSignatures":[{}],"parentId":"","schemaValidation":{},"securityFeatures":[{}]},"securityAdvisoryDocument":{"creationTime":"","description":"","filetype":"","id":"","labels":{},"name":"","raw":"","dataLocation":{},"documentChecksums":[{}],"documentSignatures":[{}],"parentId":"","schemaValidation":{},"securityFeatures":[{}],"vulnerabilities":[{"cve":"","cwe":[],"description":"","name":"","url":""}]},"serviceMetadataDocument":{"creationTime":"","description":"","filetype":"","id":"","labels":{},"name":"","raw":"","dataLocation":{},"documentChecksums":[{}],"documentSignatures":[{}],"parentId":"","schemaValidation":{},"securityFeatures":[{}]},"machineLearningDataset":{"creationTime":"","description":"","id":"","labels":{},"name":"","raw":"","size":0,"type":"","dataLocation":{},"parentId":""},"machineLearningModel":{"advRobustness":"","creationTime":"","description":"","explainability":"","id":"","labels":{},"name":"","poisonLevel":"","privacyLabel":"","privacyLevel":"","raw":"","robustness":"","dataLocation":{},"parentId":"","vulnerabilities":[{}]},"awarenessTraining":{"annualUpdateCompleted":false,"creationTime":"","description":"","id":"","labels":{},"name":"","raw":"","successfullyCompletedPercentage":false,"parentId":""},"securityTraining":{"annualUpdateCompleted":false,"creationTime":"","description":"","id":"","labels":{},"name":"","raw":"","successfullyCompletedPercentage":false,"parentId":""},"application":{"creationTime":"","description":"","id":"","labels":{},"name":"","programmingLanguage":"","programmingVersion":"","raw":"","translationUnits":[],"automaticUpdates":{},"codeModuleIds":[],"codeRepositoryId":"","computeId":"","functionalities":[{"cipherSuite":{},"codeRegion":{"code":"","endColumn":0,"endLine":0,"file":"","startColumn":0,"startLine":0},"localDataLocation":{},"remoteDataLocation":{},"error":{},"httpEndpoint":{},"httpRequestHandler":{"path":"","applicationId":"","httpEndpoints":[{}]},"decryption":{"algorithm":"","codeRegion":{}},"encryption":{"algorithm":"","codeRegion":{}},"cryptographicHash":{"algorithm":"","usesSalt":false,"codeRegion":{}},"databaseConnect":{"calls":[],"codeRegion":{},"databaseServiceIds":[],"databaseStorageId":""},"databaseQuery":{"calls":[],"modify":false,"codeRegion":{},"databaseServiceIds":[],"databaseStorageId":""},"httpRequest":{"call":"","reqBody":"","codeRegion":{},"httpEndpoints":[{}]},"logOperation":{"call":"","value":"","codeRegion":{},"logging":{}},"objectStorageRequest":{"source":"","codeRegion":{},"objectStorageIds":[]},"schemaValidation":{},"securityAdvisoryFeed":{},"vulnerability":{}}],"libraryIds":[],"parentId":""},"library":{"creationTime":"","description":"","id":"","labels":{},"name":"","raw":"","codeModuleIds":[],"codeRepositoryId":"","functionalities":[{}],"libraryIds":[],"parentId":"","vulnerabilities":[{}]},"sourceCodeFile":{"creationTime":"","description":"","id":"","labels":{},"name":"","raw":"","codeModuleIds":[],"codeRepositoryId":"","functionalities":[{}],"parentId":""}}}'
};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
#import
NSDictionary *headers = @{ @"content-type": @"application/json" };
NSDictionary *parameters = @{ @"resource": @{ @"account": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ @"region": @"" }, @"loggings": @[ @{ @"activityLogging": @{ @"enabled": @NO, @"monitoringLogDataEnabled": @NO, @"retentionPeriod": @"", @"securityAlertsEnabled": @NO, @"loggingServiceIds": @[ ] }, @"applicationLogging": @{ @"enabled": @NO, @"monitoringLogDataEnabled": @NO, @"retentionPeriod": @"", @"securityAlertsEnabled": @NO, @"loggingServiceIds": @[ ] }, @"bootLogging": @{ @"enabled": @NO, @"monitoringLogDataEnabled": @NO, @"retentionPeriod": @"", @"securityAlertsEnabled": @NO, @"loggingServiceIds": @[ ] }, @"osLogging": @{ @"enabled": @NO, @"monitoringLogDataEnabled": @NO, @"retentionPeriod": @"", @"securityAlertsEnabled": @NO, @"loggingServiceIds": @[ ] }, @"resourceLogging": @{ @"enabled": @NO, @"monitoringLogDataEnabled": @NO, @"retentionPeriod": @"", @"securityAlertsEnabled": @NO, @"loggingServiceIds": @[ ] } } ], @"redundancies": @[ @{ @"geoRedundancy": @{ @"geoLocations": @[ @{ } ] }, @"localRedundancy": @{ @"geoLocations": @[ @{ } ] }, @"zoneRedundancy": @{ @"geoLocations": @[ @{ } ] } } ], @"parentId": @"", @"usageStatistics": @{ @"apiHitsPerMonth": @0 } }, @"job": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"workflow": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"codeRepository": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"qpu": @{ @"creationTime": @"", @"description": @"", @"errorCorrectionEnabled": @NO, @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"oneQubitGateErrorRate": @"", @"raw": @"", @"spamErrorRate": @"", @"twoQubitGateErrorRate": @"", @"encryptionInUse": @{ @"enabled": @NO }, @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"networkInterfaceIds": @[ ], @"redundancies": @[ @{ } ], @"remoteAttestation": @{ @"creationTime": @"", @"enabled": @NO, @"status": @NO }, @"parentId": @"", @"resourceLogging": @{ }, @"usageStatistics": @{ } }, @"container": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"encryptionInUse": @{ }, @"geoLocation": @{ }, @"imageId": @"", @"loggings": @[ @{ } ], @"networkInterfaceIds": @[ ], @"redundancies": @[ @{ } ], @"remoteAttestation": @{ }, @"parentId": @"", @"resourceLogging": @{ }, @"usageStatistics": @{ } }, @"function": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"runtimeLanguage": @"", @"runtimeVersion": @"", @"encryptionInUse": @{ }, @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"networkInterfaceIds": @[ ], @"redundancies": @[ @{ } ], @"remoteAttestation": @{ }, @"parentId": @"", @"resourceLogging": @{ }, @"usageStatistics": @{ } }, @"virtualMachine": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"activityLogging": @{ }, @"automaticUpdates": @{ @"enabled": @NO, @"interval": @"", @"securityOnly": @NO }, @"blockStorageIds": @[ ], @"bootLogging": @{ }, @"encryptionInUse": @{ }, @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"malwareProtection": @{ @"durationSinceActive": @"", @"enabled": @NO, @"numberOfThreatsFound": @0, @"applicationLogging": @{ } }, @"networkInterfaceIds": @[ ], @"osLogging": @{ }, @"redundancies": @[ @{ } ], @"remoteAttestation": @{ }, @"parentId": @"", @"resourceLogging": @{ }, @"usageStatistics": @{ } }, @"containerOrchestration": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"managementUrl": @"", @"name": @"", @"raw": @"", @"containerIds": @[ ], @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"resourceLogging": @{ }, @"usageStatistics": @{ } }, @"containerRegistry": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"certificate": @{ @"creationTime": @"", @"description": @"", @"enabled": @NO, @"expirationDate": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"isManaged": @NO, @"labels": @{ }, @"name": @"", @"notBeforeDate": @"", @"raw": @"", @"geoLocation": @{ }, @"infrastructureId": @"", @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"key": @{ @"algorithm": @"", @"creationTime": @"", @"description": @"", @"enabled": @NO, @"expirationDate": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"isManaged": @NO, @"keySize": @0, @"labels": @{ }, @"name": @"", @"notBeforeDate": @"", @"raw": @"", @"geoLocation": @{ }, @"infrastructureId": @"", @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"secret": @{ @"creationTime": @"", @"description": @"", @"enabled": @NO, @"expirationDate": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"isManaged": @NO, @"labels": @{ }, @"name": @"", @"notBeforeDate": @"", @"raw": @"", @"geoLocation": @{ }, @"infrastructureId": @"", @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"identity": @{ @"activated": @NO, @"creationTime": @"", @"description": @"", @"disablePasswordPolicy": @NO, @"enforceMfa": @NO, @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"lastActivity": @"", @"loginDefenderEnabled": @NO, @"name": @"", @"privileged": @NO, @"raw": @"", @"authenticity": @{ @"certificateBasedAuthentication": @{ @"contextIsChecked": @NO, @"enabled": @NO }, @"tokenBasedAuthentication": @{ @"contextIsChecked": @NO, @"enabled": @NO, @"enforced": @NO }, @"multiFactorAuthentiation": @{ @"contextIsChecked": @NO, @"authenticities": @[ ] }, @"noAuthentication": @{ @"contextIsChecked": @NO }, @"otpBasedAuthentication": @{ @"activated": @NO, @"contextIsChecked": @NO }, @"passwordBasedAuthentication": @{ @"activated": @NO, @"contextIsChecked": @NO }, @"singleSignOn": @{ @"contextIsChecked": @NO, @"enabled": @NO } }, @"authorization": @{ @"abac": @{ }, @"l3Firewall": @{ @"enabled": @NO, @"inbound": @NO, @"restrictedPorts": @"" }, @"webApplicationFirewall": @{ @"enabled": @NO }, @"rbac": @{ @"broadAssignments": @"", @"mixedDuties": @"" } }, @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"roleAssignment": @{ @"activated": @NO, @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"authenticity": @{ }, @"authorization": @{ }, @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"containerImage": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"applicationId": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"vmImage": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"applicationId": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"deviceProvisioningService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"messagingHub": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"keyVault": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"credentialIds": @[ ], @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"networkInterface": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"accessRestriction": @{ @"l3Firewall": @{ }, @"webApplicationFirewall": @{ } }, @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"networkServiceId": @"", @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"networkSecurityGroup": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"functionService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"authenticity": @{ }, @"computeIds": @[ ], @"functionIds": @[ ], @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"serviceMetadataDocumentId": @"", @"transportEncryption": @{ @"enabled": @NO, @"enforced": @NO, @"protocol": @"", @"protocolVersion": @"", @"cipherSuites": @[ @{ @"authenticationMechanism": @"", @"keyExchangeAlgorithm": @"", @"macAlgorithm": @"", @"sessionCipher": @"" } ] }, @"usageStatistics": @{ } }, @"genericNetworkService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"authenticity": @{ }, @"computeIds": @[ ], @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"serviceMetadataDocumentId": @"", @"transportEncryption": @{ }, @"usageStatistics": @{ } }, @"loadBalancer": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"url": @"", @"accessRestriction": @{ }, @"authenticity": @{ }, @"computeIds": @[ ], @"geoLocation": @{ }, @"httpEndpoints": @[ @{ @"handler": @"", @"method": @"", @"path": @"", @"url": @"", @"authenticity": @{ }, @"transportEncryption": @{ } } ], @"loggings": @[ @{ } ], @"networkServiceIds": @[ ], @"redundancies": @[ @{ } ], @"parentId": @"", @"serviceMetadataDocumentId": @"", @"transportEncryption": @{ }, @"usageStatistics": @{ } }, @"loggingService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"authenticity": @{ }, @"computeIds": @[ ], @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"serviceMetadataDocumentId": @"", @"storageIds": @[ ], @"transportEncryption": @{ }, @"usageStatistics": @{ } }, @"machineLearningService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"authenticity": @{ }, @"computeIds": @[ ], @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"machineLearningIds": @[ ], @"redundancies": @[ @{ } ], @"parentId": @"", @"serviceMetadataDocumentId": @"", @"storageIds": @[ ], @"transportEncryption": @{ }, @"usageStatistics": @{ } }, @"securityAdvisoryService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"authenticity": @{ }, @"computeIds": @[ ], @"geoLocation": @{ }, @"keyIds": @[ ], @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"securityAdvisoryFeeds": @[ @{ @"securityAdvisoryDocumentIds": @[ ] } ], @"serviceMetadataDocumentId": @"", @"transportEncryption": @{ }, @"usageStatistics": @{ } }, @"documentDatabaseService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"activityLogging": @{ }, @"anomalyDetections": @[ @{ @"enabled": @NO, @"scope": @"", @"applicationLogging": @{ } } ], @"authenticity": @{ }, @"computeIds": @[ ], @"geoLocation": @{ }, @"httpEndpoint": @{ }, @"loggings": @[ @{ } ], @"malwareProtection": @{ }, @"redundancies": @[ @{ } ], @"parentId": @"", @"serviceMetadataDocumentId": @"", @"storageIds": @[ ], @"transportEncryption": @{ }, @"usageStatistics": @{ } }, @"keyValueDatabaseService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"activityLogging": @{ }, @"anomalyDetections": @[ @{ } ], @"authenticity": @{ }, @"computeIds": @[ ], @"geoLocation": @{ }, @"httpEndpoint": @{ }, @"loggings": @[ @{ } ], @"malwareProtection": @{ }, @"redundancies": @[ @{ } ], @"parentId": @"", @"serviceMetadataDocumentId": @"", @"storageIds": @[ ], @"transportEncryption": @{ }, @"usageStatistics": @{ } }, @"multiModalDatabaseService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"activityLogging": @{ }, @"anomalyDetections": @[ @{ } ], @"authenticity": @{ }, @"computeIds": @[ ], @"geoLocation": @{ }, @"httpEndpoint": @{ }, @"loggings": @[ @{ } ], @"malwareProtection": @{ }, @"redundancies": @[ @{ } ], @"parentId": @"", @"serviceMetadataDocumentId": @"", @"storageIds": @[ ], @"transportEncryption": @{ }, @"usageStatistics": @{ } }, @"relationalDatabaseService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"activityLogging": @{ }, @"anomalyDetections": @[ @{ } ], @"authenticity": @{ }, @"computeIds": @[ ], @"geoLocation": @{ }, @"httpEndpoint": @{ }, @"loggings": @[ @{ } ], @"malwareProtection": @{ }, @"redundancies": @[ @{ } ], @"parentId": @"", @"serviceMetadataDocumentId": @"", @"storageIds": @[ ], @"transportEncryption": @{ }, @"usageStatistics": @{ } }, @"fileStorageService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"activityLogging": @{ }, @"authenticity": @{ }, @"computeIds": @[ ], @"geoLocation": @{ }, @"httpEndpoint": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"serviceMetadataDocumentId": @"", @"storageIds": @[ ], @"transportEncryption": @{ }, @"usageStatistics": @{ } }, @"objectStorageService": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"ips": @[ ], @"labels": @{ }, @"name": @"", @"ports": @[ ], @"raw": @"", @"activityLogging": @{ }, @"authenticity": @{ }, @"computeIds": @[ ], @"geoLocation": @{ }, @"httpEndpoint": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"serviceMetadataDocumentId": @"", @"storageIds": @[ ], @"transportEncryption": @{ }, @"usageStatistics": @{ } }, @"virtualNetwork": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"virtualSubNetwork": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"passwordPolicy": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"resourceGroup": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"geoLocation": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"usageStatistics": @{ } }, @"blockStorage": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"activityLogging": @{ }, @"atRestEncryption": @{ @"customerKeyEncryption": @{ @"algorithm": @"", @"enabled": @NO, @"keyUrl": @"" }, @"managedKeyEncryption": @{ @"algorithm": @"", @"enabled": @NO, @"keyUrl": @"" } }, @"backups": @[ @{ @"enabled": @NO, @"interval": @"", @"retentionPeriod": @"", @"storageId": @"", @"transportEncryption": @{ } } ], @"geoLocation": @{ }, @"immutability": @{ @"enabled": @NO }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"resourceLogging": @{ }, @"usageStatistics": @{ } }, @"databaseStorage": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"raw": @"", @"activityLogging": @{ }, @"atRestEncryption": @{ }, @"backups": @[ @{ } ], @"geoLocation": @{ }, @"immutability": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"resourceLogging": @{ }, @"usageStatistics": @{ } }, @"fileStorage": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"publicAccess": @NO, @"raw": @"", @"activityLogging": @{ }, @"atRestEncryption": @{ }, @"backups": @[ @{ } ], @"geoLocation": @{ }, @"immutability": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"resourceLogging": @{ }, @"usageStatistics": @{ } }, @"objectStorage": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"internetAccessibleEndpoint": @NO, @"labels": @{ }, @"name": @"", @"publicAccess": @NO, @"raw": @"", @"activityLogging": @{ }, @"atRestEncryption": @{ }, @"backups": @[ @{ } ], @"geoLocation": @{ }, @"immutability": @{ }, @"loggings": @[ @{ } ], @"redundancies": @[ @{ } ], @"parentId": @"", @"resourceLogging": @{ }, @"usageStatistics": @{ } }, @"codeNotebook": @{ @"creationTime": @"", @"description": @"", @"filetype": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"raw": @"", @"codeIds": @[ ], @"dataLocation": @{ @"localDataLocation": @{ @"path": @"", @"atRestEncryption": @{ }, @"storageId": @"" }, @"remoteDataLocation": @{ @"path": @"", @"authenticity": @{ }, @"storageId": @"", @"transportEncryption": @{ } } }, @"documentChecksums": @[ @{ @"algorithm": @"", @"errors": @[ @{ @"message": @"" } ] } ], @"documentSignatures": @[ @{ @"algorithm": @"", @"errors": @[ @{ } ] } ], @"parentId": @"", @"schemaValidation": @{ @"format": @"", @"schemaUrl": @"", @"errors": @[ @{ } ] }, @"securityFeatures": @[ @{ @"anomalyDetection": @{ }, @"activityLogging": @{ }, @"applicationLogging": @{ }, @"bootLogging": @{ }, @"osLogging": @{ }, @"resourceLogging": @{ }, @"malwareProtection": @{ }, @"usageStatistics": @{ }, @"certificateBasedAuthentication": @{ }, @"tokenBasedAuthentication": @{ }, @"multiFactorAuthentiation": @{ }, @"noAuthentication": @{ }, @"otpBasedAuthentication": @{ }, @"passwordBasedAuthentication": @{ }, @"singleSignOn": @{ }, @"abac": @{ }, @"l3Firewall": @{ }, @"webApplicationFirewall": @{ }, @"rbac": @{ }, @"backup": @{ }, @"dDoSProtection": @{ }, @"geoLocation": @{ }, @"geoRedundancy": @{ }, @"localRedundancy": @{ }, @"zoneRedundancy": @{ }, @"customerKeyEncryption": @{ }, @"managedKeyEncryption": @{ }, @"encryptionInUse": @{ }, @"transportEncryption": @{ }, @"localAttestation": @{ @"enabled": @NO }, @"remoteAttestation": @{ }, @"automaticUpdates": @{ }, @"documentChecksum": @{ }, @"immutability": @{ }, @"documentSignature": @{ }, @"explainableResults": @{ }, @"robustnessScore": @{ } } ] }, @"genericDocument": @{ @"creationTime": @"", @"description": @"", @"filetype": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"raw": @"", @"dataLocation": @{ }, @"documentChecksums": @[ @{ } ], @"documentSignatures": @[ @{ } ], @"parentId": @"", @"schemaValidation": @{ }, @"securityFeatures": @[ @{ } ] }, @"policyDocument": @{ @"creationTime": @"", @"description": @"", @"filetype": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"raw": @"", @"dataLocation": @{ }, @"documentChecksums": @[ @{ } ], @"documentSignatures": @[ @{ } ], @"parentId": @"", @"schemaValidation": @{ }, @"securityFeatures": @[ @{ } ] }, @"securityAdvisoryDocument": @{ @"creationTime": @"", @"description": @"", @"filetype": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"raw": @"", @"dataLocation": @{ }, @"documentChecksums": @[ @{ } ], @"documentSignatures": @[ @{ } ], @"parentId": @"", @"schemaValidation": @{ }, @"securityFeatures": @[ @{ } ], @"vulnerabilities": @[ @{ @"cve": @"", @"cwe": @[ ], @"description": @"", @"name": @"", @"url": @"" } ] }, @"serviceMetadataDocument": @{ @"creationTime": @"", @"description": @"", @"filetype": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"raw": @"", @"dataLocation": @{ }, @"documentChecksums": @[ @{ } ], @"documentSignatures": @[ @{ } ], @"parentId": @"", @"schemaValidation": @{ }, @"securityFeatures": @[ @{ } ] }, @"machineLearningDataset": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"raw": @"", @"size": @0, @"type": @"", @"dataLocation": @{ }, @"parentId": @"" }, @"machineLearningModel": @{ @"advRobustness": @"", @"creationTime": @"", @"description": @"", @"explainability": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"poisonLevel": @"", @"privacyLabel": @"", @"privacyLevel": @"", @"raw": @"", @"robustness": @"", @"dataLocation": @{ }, @"parentId": @"", @"vulnerabilities": @[ @{ } ] }, @"awarenessTraining": @{ @"annualUpdateCompleted": @NO, @"creationTime": @"", @"description": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"raw": @"", @"successfullyCompletedPercentage": @NO, @"parentId": @"" }, @"securityTraining": @{ @"annualUpdateCompleted": @NO, @"creationTime": @"", @"description": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"raw": @"", @"successfullyCompletedPercentage": @NO, @"parentId": @"" }, @"application": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"programmingLanguage": @"", @"programmingVersion": @"", @"raw": @"", @"translationUnits": @[ ], @"automaticUpdates": @{ }, @"codeModuleIds": @[ ], @"codeRepositoryId": @"", @"computeId": @"", @"functionalities": @[ @{ @"cipherSuite": @{ }, @"codeRegion": @{ @"code": @"", @"endColumn": @0, @"endLine": @0, @"file": @"", @"startColumn": @0, @"startLine": @0 }, @"localDataLocation": @{ }, @"remoteDataLocation": @{ }, @"error": @{ }, @"httpEndpoint": @{ }, @"httpRequestHandler": @{ @"path": @"", @"applicationId": @"", @"httpEndpoints": @[ @{ } ] }, @"decryption": @{ @"algorithm": @"", @"codeRegion": @{ } }, @"encryption": @{ @"algorithm": @"", @"codeRegion": @{ } }, @"cryptographicHash": @{ @"algorithm": @"", @"usesSalt": @NO, @"codeRegion": @{ } }, @"databaseConnect": @{ @"calls": @[ ], @"codeRegion": @{ }, @"databaseServiceIds": @[ ], @"databaseStorageId": @"" }, @"databaseQuery": @{ @"calls": @[ ], @"modify": @NO, @"codeRegion": @{ }, @"databaseServiceIds": @[ ], @"databaseStorageId": @"" }, @"httpRequest": @{ @"call": @"", @"reqBody": @"", @"codeRegion": @{ }, @"httpEndpoints": @[ @{ } ] }, @"logOperation": @{ @"call": @"", @"value": @"", @"codeRegion": @{ }, @"logging": @{ } }, @"objectStorageRequest": @{ @"source": @"", @"codeRegion": @{ }, @"objectStorageIds": @[ ] }, @"schemaValidation": @{ }, @"securityAdvisoryFeed": @{ }, @"vulnerability": @{ } } ], @"libraryIds": @[ ], @"parentId": @"" }, @"library": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"raw": @"", @"codeModuleIds": @[ ], @"codeRepositoryId": @"", @"functionalities": @[ @{ } ], @"libraryIds": @[ ], @"parentId": @"", @"vulnerabilities": @[ @{ } ] }, @"sourceCodeFile": @{ @"creationTime": @"", @"description": @"", @"id": @"", @"labels": @{ }, @"name": @"", @"raw": @"", @"codeModuleIds": @[ ], @"codeRepositoryId": @"", @"functionalities": @[ @{ } ], @"parentId": @"" } } };
NSData *postData = [NSJSONSerialization dataWithJSONObject:parameters options:0 error:nil];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:10.0];
[request setHTTPMethod:@"POST"];
[request setAllHTTPHeaderFields:headers];
[request setHTTPBody:postData];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithRequest:request
completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
if (error) {
NSLog(@"%@", error);
} else {
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *) response;
NSLog(@"%@", httpResponse);
}
}];
[dataTask resume];
open Cohttp_lwt_unix
open Cohttp
open Lwt
let uri = Uri.of_string "{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id" in
let headers = Header.add (Header.init ()) "content-type" "application/json" in
let body = Cohttp_lwt_body.of_string "{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}" in
Client.call ~headers ~body `POST uri
>>= fun (res, body_stream) ->
(* Do stuff with the result *)
"{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'resource' => [
'account' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
'region' => ''
],
'loggings' => [
[
'activityLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'applicationLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'bootLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'osLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'resourceLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
]
]
],
'redundancies' => [
[
'geoRedundancy' => [
'geoLocations' => [
[
]
]
],
'localRedundancy' => [
'geoLocations' => [
[
]
]
],
'zoneRedundancy' => [
'geoLocations' => [
[
]
]
]
]
],
'parentId' => '',
'usageStatistics' => [
'apiHitsPerMonth' => 0
]
],
'job' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'workflow' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'codeRepository' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'qpu' => [
'creationTime' => '',
'description' => '',
'errorCorrectionEnabled' => null,
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'oneQubitGateErrorRate' => '',
'raw' => '',
'spamErrorRate' => '',
'twoQubitGateErrorRate' => '',
'encryptionInUse' => [
'enabled' => null
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'networkInterfaceIds' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
'creationTime' => '',
'enabled' => null,
'status' => null
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'container' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'encryptionInUse' => [
],
'geoLocation' => [
],
'imageId' => '',
'loggings' => [
[
]
],
'networkInterfaceIds' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'function' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'runtimeLanguage' => '',
'runtimeVersion' => '',
'encryptionInUse' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'networkInterfaceIds' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'virtualMachine' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'activityLogging' => [
],
'automaticUpdates' => [
'enabled' => null,
'interval' => '',
'securityOnly' => null
],
'blockStorageIds' => [
],
'bootLogging' => [
],
'encryptionInUse' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
'durationSinceActive' => '',
'enabled' => null,
'numberOfThreatsFound' => 0,
'applicationLogging' => [
]
],
'networkInterfaceIds' => [
],
'osLogging' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'containerOrchestration' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'managementUrl' => '',
'name' => '',
'raw' => '',
'containerIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'containerRegistry' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'certificate' => [
'creationTime' => '',
'description' => '',
'enabled' => null,
'expirationDate' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'isManaged' => null,
'labels' => [
],
'name' => '',
'notBeforeDate' => '',
'raw' => '',
'geoLocation' => [
],
'infrastructureId' => '',
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'key' => [
'algorithm' => '',
'creationTime' => '',
'description' => '',
'enabled' => null,
'expirationDate' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'isManaged' => null,
'keySize' => 0,
'labels' => [
],
'name' => '',
'notBeforeDate' => '',
'raw' => '',
'geoLocation' => [
],
'infrastructureId' => '',
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'secret' => [
'creationTime' => '',
'description' => '',
'enabled' => null,
'expirationDate' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'isManaged' => null,
'labels' => [
],
'name' => '',
'notBeforeDate' => '',
'raw' => '',
'geoLocation' => [
],
'infrastructureId' => '',
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'identity' => [
'activated' => null,
'creationTime' => '',
'description' => '',
'disablePasswordPolicy' => null,
'enforceMfa' => null,
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'lastActivity' => '',
'loginDefenderEnabled' => null,
'name' => '',
'privileged' => null,
'raw' => '',
'authenticity' => [
'certificateBasedAuthentication' => [
'contextIsChecked' => null,
'enabled' => null
],
'tokenBasedAuthentication' => [
'contextIsChecked' => null,
'enabled' => null,
'enforced' => null
],
'multiFactorAuthentiation' => [
'contextIsChecked' => null,
'authenticities' => [
]
],
'noAuthentication' => [
'contextIsChecked' => null
],
'otpBasedAuthentication' => [
'activated' => null,
'contextIsChecked' => null
],
'passwordBasedAuthentication' => [
'activated' => null,
'contextIsChecked' => null
],
'singleSignOn' => [
'contextIsChecked' => null,
'enabled' => null
]
],
'authorization' => [
'abac' => [
],
'l3Firewall' => [
'enabled' => null,
'inbound' => null,
'restrictedPorts' => ''
],
'webApplicationFirewall' => [
'enabled' => null
],
'rbac' => [
'broadAssignments' => '',
'mixedDuties' => ''
]
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'roleAssignment' => [
'activated' => null,
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'authenticity' => [
],
'authorization' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'containerImage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'applicationId' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'vmImage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'applicationId' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'deviceProvisioningService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'messagingHub' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'keyVault' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'credentialIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'networkInterface' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'accessRestriction' => [
'l3Firewall' => [
],
'webApplicationFirewall' => [
]
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'networkServiceId' => '',
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'networkSecurityGroup' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'functionService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'functionIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
'enabled' => null,
'enforced' => null,
'protocol' => '',
'protocolVersion' => '',
'cipherSuites' => [
[
'authenticationMechanism' => '',
'keyExchangeAlgorithm' => '',
'macAlgorithm' => '',
'sessionCipher' => ''
]
]
],
'usageStatistics' => [
]
],
'genericNetworkService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'loadBalancer' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'url' => '',
'accessRestriction' => [
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoints' => [
[
'handler' => '',
'method' => '',
'path' => '',
'url' => '',
'authenticity' => [
],
'transportEncryption' => [
]
]
],
'loggings' => [
[
]
],
'networkServiceIds' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'loggingService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'machineLearningService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'machineLearningIds' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'securityAdvisoryService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'keyIds' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'securityAdvisoryFeeds' => [
[
'securityAdvisoryDocumentIds' => [
]
]
],
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'documentDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
'enabled' => null,
'scope' => '',
'applicationLogging' => [
]
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'keyValueDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'multiModalDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'relationalDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'fileStorageService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'objectStorageService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'virtualNetwork' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'virtualSubNetwork' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'passwordPolicy' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'resourceGroup' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'blockStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
'customerKeyEncryption' => [
'algorithm' => '',
'enabled' => null,
'keyUrl' => ''
],
'managedKeyEncryption' => [
'algorithm' => '',
'enabled' => null,
'keyUrl' => ''
]
],
'backups' => [
[
'enabled' => null,
'interval' => '',
'retentionPeriod' => '',
'storageId' => '',
'transportEncryption' => [
]
]
],
'geoLocation' => [
],
'immutability' => [
'enabled' => null
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'databaseStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
],
'backups' => [
[
]
],
'geoLocation' => [
],
'immutability' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'fileStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'publicAccess' => null,
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
],
'backups' => [
[
]
],
'geoLocation' => [
],
'immutability' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'objectStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'publicAccess' => null,
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
],
'backups' => [
[
]
],
'geoLocation' => [
],
'immutability' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'codeNotebook' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'codeIds' => [
],
'dataLocation' => [
'localDataLocation' => [
'path' => '',
'atRestEncryption' => [
],
'storageId' => ''
],
'remoteDataLocation' => [
'path' => '',
'authenticity' => [
],
'storageId' => '',
'transportEncryption' => [
]
]
],
'documentChecksums' => [
[
'algorithm' => '',
'errors' => [
[
'message' => ''
]
]
]
],
'documentSignatures' => [
[
'algorithm' => '',
'errors' => [
[
]
]
]
],
'parentId' => '',
'schemaValidation' => [
'format' => '',
'schemaUrl' => '',
'errors' => [
[
]
]
],
'securityFeatures' => [
[
'anomalyDetection' => [
],
'activityLogging' => [
],
'applicationLogging' => [
],
'bootLogging' => [
],
'osLogging' => [
],
'resourceLogging' => [
],
'malwareProtection' => [
],
'usageStatistics' => [
],
'certificateBasedAuthentication' => [
],
'tokenBasedAuthentication' => [
],
'multiFactorAuthentiation' => [
],
'noAuthentication' => [
],
'otpBasedAuthentication' => [
],
'passwordBasedAuthentication' => [
],
'singleSignOn' => [
],
'abac' => [
],
'l3Firewall' => [
],
'webApplicationFirewall' => [
],
'rbac' => [
],
'backup' => [
],
'dDoSProtection' => [
],
'geoLocation' => [
],
'geoRedundancy' => [
],
'localRedundancy' => [
],
'zoneRedundancy' => [
],
'customerKeyEncryption' => [
],
'managedKeyEncryption' => [
],
'encryptionInUse' => [
],
'transportEncryption' => [
],
'localAttestation' => [
'enabled' => null
],
'remoteAttestation' => [
],
'automaticUpdates' => [
],
'documentChecksum' => [
],
'immutability' => [
],
'documentSignature' => [
],
'explainableResults' => [
],
'robustnessScore' => [
]
]
]
],
'genericDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
]
],
'policyDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
]
],
'securityAdvisoryDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
],
'vulnerabilities' => [
[
'cve' => '',
'cwe' => [
],
'description' => '',
'name' => '',
'url' => ''
]
]
],
'serviceMetadataDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
]
],
'machineLearningDataset' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'size' => 0,
'type' => '',
'dataLocation' => [
],
'parentId' => ''
],
'machineLearningModel' => [
'advRobustness' => '',
'creationTime' => '',
'description' => '',
'explainability' => '',
'id' => '',
'labels' => [
],
'name' => '',
'poisonLevel' => '',
'privacyLabel' => '',
'privacyLevel' => '',
'raw' => '',
'robustness' => '',
'dataLocation' => [
],
'parentId' => '',
'vulnerabilities' => [
[
]
]
],
'awarenessTraining' => [
'annualUpdateCompleted' => null,
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'successfullyCompletedPercentage' => null,
'parentId' => ''
],
'securityTraining' => [
'annualUpdateCompleted' => null,
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'successfullyCompletedPercentage' => null,
'parentId' => ''
],
'application' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'programmingLanguage' => '',
'programmingVersion' => '',
'raw' => '',
'translationUnits' => [
],
'automaticUpdates' => [
],
'codeModuleIds' => [
],
'codeRepositoryId' => '',
'computeId' => '',
'functionalities' => [
[
'cipherSuite' => [
],
'codeRegion' => [
'code' => '',
'endColumn' => 0,
'endLine' => 0,
'file' => '',
'startColumn' => 0,
'startLine' => 0
],
'localDataLocation' => [
],
'remoteDataLocation' => [
],
'error' => [
],
'httpEndpoint' => [
],
'httpRequestHandler' => [
'path' => '',
'applicationId' => '',
'httpEndpoints' => [
[
]
]
],
'decryption' => [
'algorithm' => '',
'codeRegion' => [
]
],
'encryption' => [
'algorithm' => '',
'codeRegion' => [
]
],
'cryptographicHash' => [
'algorithm' => '',
'usesSalt' => null,
'codeRegion' => [
]
],
'databaseConnect' => [
'calls' => [
],
'codeRegion' => [
],
'databaseServiceIds' => [
],
'databaseStorageId' => ''
],
'databaseQuery' => [
'calls' => [
],
'modify' => null,
'codeRegion' => [
],
'databaseServiceIds' => [
],
'databaseStorageId' => ''
],
'httpRequest' => [
'call' => '',
'reqBody' => '',
'codeRegion' => [
],
'httpEndpoints' => [
[
]
]
],
'logOperation' => [
'call' => '',
'value' => '',
'codeRegion' => [
],
'logging' => [
]
],
'objectStorageRequest' => [
'source' => '',
'codeRegion' => [
],
'objectStorageIds' => [
]
],
'schemaValidation' => [
],
'securityAdvisoryFeed' => [
],
'vulnerability' => [
]
]
],
'libraryIds' => [
],
'parentId' => ''
],
'library' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'codeModuleIds' => [
],
'codeRepositoryId' => '',
'functionalities' => [
[
]
],
'libraryIds' => [
],
'parentId' => '',
'vulnerabilities' => [
[
]
]
],
'sourceCodeFile' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'codeModuleIds' => [
],
'codeRepositoryId' => '',
'functionalities' => [
[
]
],
'parentId' => ''
]
]
]),
CURLOPT_HTTPHEADER => [
"content-type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
request('POST', '{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id', [
'body' => '{
"resource": {
"account": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {
"region": ""
},
"loggings": [
{
"activityLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"applicationLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"bootLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"osLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"resourceLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
}
}
],
"redundancies": [
{
"geoRedundancy": {
"geoLocations": [
{}
]
},
"localRedundancy": {
"geoLocations": [
{}
]
},
"zoneRedundancy": {
"geoLocations": [
{}
]
}
}
],
"parentId": "",
"usageStatistics": {
"apiHitsPerMonth": 0
}
},
"job": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"workflow": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"codeRepository": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"qpu": {
"creationTime": "",
"description": "",
"errorCorrectionEnabled": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"oneQubitGateErrorRate": "",
"raw": "",
"spamErrorRate": "",
"twoQubitGateErrorRate": "",
"encryptionInUse": {
"enabled": false
},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {
"creationTime": "",
"enabled": false,
"status": false
},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"container": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"encryptionInUse": {},
"geoLocation": {},
"imageId": "",
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"function": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"runtimeLanguage": "",
"runtimeVersion": "",
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"virtualMachine": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"automaticUpdates": {
"enabled": false,
"interval": "",
"securityOnly": false
},
"blockStorageIds": [],
"bootLogging": {},
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"malwareProtection": {
"durationSinceActive": "",
"enabled": false,
"numberOfThreatsFound": 0,
"applicationLogging": {}
},
"networkInterfaceIds": [],
"osLogging": {},
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerOrchestration": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"managementUrl": "",
"name": "",
"raw": "",
"containerIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerRegistry": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"certificate": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"key": {
"algorithm": "",
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"keySize": 0,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"secret": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"identity": {
"activated": false,
"creationTime": "",
"description": "",
"disablePasswordPolicy": false,
"enforceMfa": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"lastActivity": "",
"loginDefenderEnabled": false,
"name": "",
"privileged": false,
"raw": "",
"authenticity": {
"certificateBasedAuthentication": {
"contextIsChecked": false,
"enabled": false
},
"tokenBasedAuthentication": {
"contextIsChecked": false,
"enabled": false,
"enforced": false
},
"multiFactorAuthentiation": {
"contextIsChecked": false,
"authenticities": []
},
"noAuthentication": {
"contextIsChecked": false
},
"otpBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"passwordBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"singleSignOn": {
"contextIsChecked": false,
"enabled": false
}
},
"authorization": {
"abac": {},
"l3Firewall": {
"enabled": false,
"inbound": false,
"restrictedPorts": ""
},
"webApplicationFirewall": {
"enabled": false
},
"rbac": {
"broadAssignments": "",
"mixedDuties": ""
}
},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"roleAssignment": {
"activated": false,
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"authenticity": {},
"authorization": {},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"containerImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"vmImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"deviceProvisioningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"messagingHub": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"keyVault": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"credentialIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkInterface": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"accessRestriction": {
"l3Firewall": {},
"webApplicationFirewall": {}
},
"geoLocation": {},
"loggings": [
{}
],
"networkServiceId": "",
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkSecurityGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"functionService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"functionIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {
"enabled": false,
"enforced": false,
"protocol": "",
"protocolVersion": "",
"cipherSuites": [
{
"authenticationMechanism": "",
"keyExchangeAlgorithm": "",
"macAlgorithm": "",
"sessionCipher": ""
}
]
},
"usageStatistics": {}
},
"genericNetworkService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loadBalancer": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"url": "",
"accessRestriction": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoints": [
{
"handler": "",
"method": "",
"path": "",
"url": "",
"authenticity": {},
"transportEncryption": {}
}
],
"loggings": [
{}
],
"networkServiceIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loggingService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"machineLearningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"machineLearningIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"securityAdvisoryService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"keyIds": [],
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"securityAdvisoryFeeds": [
{
"securityAdvisoryDocumentIds": []
}
],
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"documentDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{
"enabled": false,
"scope": "",
"applicationLogging": {}
}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"keyValueDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"multiModalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"relationalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"fileStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"objectStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"virtualNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"virtualSubNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"passwordPolicy": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"resourceGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"blockStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {
"customerKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
},
"managedKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
}
},
"backups": [
{
"enabled": false,
"interval": "",
"retentionPeriod": "",
"storageId": "",
"transportEncryption": {}
}
],
"geoLocation": {},
"immutability": {
"enabled": false
},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"databaseStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"fileStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"objectStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"codeNotebook": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeIds": [],
"dataLocation": {
"localDataLocation": {
"path": "",
"atRestEncryption": {},
"storageId": ""
},
"remoteDataLocation": {
"path": "",
"authenticity": {},
"storageId": "",
"transportEncryption": {}
}
},
"documentChecksums": [
{
"algorithm": "",
"errors": [
{
"message": ""
}
]
}
],
"documentSignatures": [
{
"algorithm": "",
"errors": [
{}
]
}
],
"parentId": "",
"schemaValidation": {
"format": "",
"schemaUrl": "",
"errors": [
{}
]
},
"securityFeatures": [
{
"anomalyDetection": {},
"activityLogging": {},
"applicationLogging": {},
"bootLogging": {},
"osLogging": {},
"resourceLogging": {},
"malwareProtection": {},
"usageStatistics": {},
"certificateBasedAuthentication": {},
"tokenBasedAuthentication": {},
"multiFactorAuthentiation": {},
"noAuthentication": {},
"otpBasedAuthentication": {},
"passwordBasedAuthentication": {},
"singleSignOn": {},
"abac": {},
"l3Firewall": {},
"webApplicationFirewall": {},
"rbac": {},
"backup": {},
"dDoSProtection": {},
"geoLocation": {},
"geoRedundancy": {},
"localRedundancy": {},
"zoneRedundancy": {},
"customerKeyEncryption": {},
"managedKeyEncryption": {},
"encryptionInUse": {},
"transportEncryption": {},
"localAttestation": {
"enabled": false
},
"remoteAttestation": {},
"automaticUpdates": {},
"documentChecksum": {},
"immutability": {},
"documentSignature": {},
"explainableResults": {},
"robustnessScore": {}
}
]
},
"genericDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"policyDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"securityAdvisoryDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
],
"vulnerabilities": [
{
"cve": "",
"cwe": [],
"description": "",
"name": "",
"url": ""
}
]
},
"serviceMetadataDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"machineLearningDataset": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"size": 0,
"type": "",
"dataLocation": {},
"parentId": ""
},
"machineLearningModel": {
"advRobustness": "",
"creationTime": "",
"description": "",
"explainability": "",
"id": "",
"labels": {},
"name": "",
"poisonLevel": "",
"privacyLabel": "",
"privacyLevel": "",
"raw": "",
"robustness": "",
"dataLocation": {},
"parentId": "",
"vulnerabilities": [
{}
]
},
"awarenessTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"securityTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"application": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"programmingLanguage": "",
"programmingVersion": "",
"raw": "",
"translationUnits": [],
"automaticUpdates": {},
"codeModuleIds": [],
"codeRepositoryId": "",
"computeId": "",
"functionalities": [
{
"cipherSuite": {},
"codeRegion": {
"code": "",
"endColumn": 0,
"endLine": 0,
"file": "",
"startColumn": 0,
"startLine": 0
},
"localDataLocation": {},
"remoteDataLocation": {},
"error": {},
"httpEndpoint": {},
"httpRequestHandler": {
"path": "",
"applicationId": "",
"httpEndpoints": [
{}
]
},
"decryption": {
"algorithm": "",
"codeRegion": {}
},
"encryption": {
"algorithm": "",
"codeRegion": {}
},
"cryptographicHash": {
"algorithm": "",
"usesSalt": false,
"codeRegion": {}
},
"databaseConnect": {
"calls": [],
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"databaseQuery": {
"calls": [],
"modify": false,
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"httpRequest": {
"call": "",
"reqBody": "",
"codeRegion": {},
"httpEndpoints": [
{}
]
},
"logOperation": {
"call": "",
"value": "",
"codeRegion": {},
"logging": {}
},
"objectStorageRequest": {
"source": "",
"codeRegion": {},
"objectStorageIds": []
},
"schemaValidation": {},
"securityAdvisoryFeed": {},
"vulnerability": {}
}
],
"libraryIds": [],
"parentId": ""
},
"library": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"libraryIds": [],
"parentId": "",
"vulnerabilities": [
{}
]
},
"sourceCodeFile": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"parentId": ""
}
}
}',
'headers' => [
'content-type' => 'application/json',
],
]);
echo $response->getBody();
setUrl('{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id');
$request->setMethod(HTTP_METH_POST);
$request->setHeaders([
'content-type' => 'application/json'
]);
$request->setContentType('application/json');
$request->setBody(json_encode([
'resource' => [
'account' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
'region' => ''
],
'loggings' => [
[
'activityLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'applicationLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'bootLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'osLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'resourceLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
]
]
],
'redundancies' => [
[
'geoRedundancy' => [
'geoLocations' => [
[
]
]
],
'localRedundancy' => [
'geoLocations' => [
[
]
]
],
'zoneRedundancy' => [
'geoLocations' => [
[
]
]
]
]
],
'parentId' => '',
'usageStatistics' => [
'apiHitsPerMonth' => 0
]
],
'job' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'workflow' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'codeRepository' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'qpu' => [
'creationTime' => '',
'description' => '',
'errorCorrectionEnabled' => null,
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'oneQubitGateErrorRate' => '',
'raw' => '',
'spamErrorRate' => '',
'twoQubitGateErrorRate' => '',
'encryptionInUse' => [
'enabled' => null
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'networkInterfaceIds' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
'creationTime' => '',
'enabled' => null,
'status' => null
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'container' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'encryptionInUse' => [
],
'geoLocation' => [
],
'imageId' => '',
'loggings' => [
[
]
],
'networkInterfaceIds' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'function' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'runtimeLanguage' => '',
'runtimeVersion' => '',
'encryptionInUse' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'networkInterfaceIds' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'virtualMachine' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'activityLogging' => [
],
'automaticUpdates' => [
'enabled' => null,
'interval' => '',
'securityOnly' => null
],
'blockStorageIds' => [
],
'bootLogging' => [
],
'encryptionInUse' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
'durationSinceActive' => '',
'enabled' => null,
'numberOfThreatsFound' => 0,
'applicationLogging' => [
]
],
'networkInterfaceIds' => [
],
'osLogging' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'containerOrchestration' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'managementUrl' => '',
'name' => '',
'raw' => '',
'containerIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'containerRegistry' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'certificate' => [
'creationTime' => '',
'description' => '',
'enabled' => null,
'expirationDate' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'isManaged' => null,
'labels' => [
],
'name' => '',
'notBeforeDate' => '',
'raw' => '',
'geoLocation' => [
],
'infrastructureId' => '',
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'key' => [
'algorithm' => '',
'creationTime' => '',
'description' => '',
'enabled' => null,
'expirationDate' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'isManaged' => null,
'keySize' => 0,
'labels' => [
],
'name' => '',
'notBeforeDate' => '',
'raw' => '',
'geoLocation' => [
],
'infrastructureId' => '',
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'secret' => [
'creationTime' => '',
'description' => '',
'enabled' => null,
'expirationDate' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'isManaged' => null,
'labels' => [
],
'name' => '',
'notBeforeDate' => '',
'raw' => '',
'geoLocation' => [
],
'infrastructureId' => '',
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'identity' => [
'activated' => null,
'creationTime' => '',
'description' => '',
'disablePasswordPolicy' => null,
'enforceMfa' => null,
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'lastActivity' => '',
'loginDefenderEnabled' => null,
'name' => '',
'privileged' => null,
'raw' => '',
'authenticity' => [
'certificateBasedAuthentication' => [
'contextIsChecked' => null,
'enabled' => null
],
'tokenBasedAuthentication' => [
'contextIsChecked' => null,
'enabled' => null,
'enforced' => null
],
'multiFactorAuthentiation' => [
'contextIsChecked' => null,
'authenticities' => [
]
],
'noAuthentication' => [
'contextIsChecked' => null
],
'otpBasedAuthentication' => [
'activated' => null,
'contextIsChecked' => null
],
'passwordBasedAuthentication' => [
'activated' => null,
'contextIsChecked' => null
],
'singleSignOn' => [
'contextIsChecked' => null,
'enabled' => null
]
],
'authorization' => [
'abac' => [
],
'l3Firewall' => [
'enabled' => null,
'inbound' => null,
'restrictedPorts' => ''
],
'webApplicationFirewall' => [
'enabled' => null
],
'rbac' => [
'broadAssignments' => '',
'mixedDuties' => ''
]
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'roleAssignment' => [
'activated' => null,
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'authenticity' => [
],
'authorization' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'containerImage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'applicationId' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'vmImage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'applicationId' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'deviceProvisioningService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'messagingHub' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'keyVault' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'credentialIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'networkInterface' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'accessRestriction' => [
'l3Firewall' => [
],
'webApplicationFirewall' => [
]
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'networkServiceId' => '',
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'networkSecurityGroup' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'functionService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'functionIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
'enabled' => null,
'enforced' => null,
'protocol' => '',
'protocolVersion' => '',
'cipherSuites' => [
[
'authenticationMechanism' => '',
'keyExchangeAlgorithm' => '',
'macAlgorithm' => '',
'sessionCipher' => ''
]
]
],
'usageStatistics' => [
]
],
'genericNetworkService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'loadBalancer' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'url' => '',
'accessRestriction' => [
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoints' => [
[
'handler' => '',
'method' => '',
'path' => '',
'url' => '',
'authenticity' => [
],
'transportEncryption' => [
]
]
],
'loggings' => [
[
]
],
'networkServiceIds' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'loggingService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'machineLearningService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'machineLearningIds' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'securityAdvisoryService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'keyIds' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'securityAdvisoryFeeds' => [
[
'securityAdvisoryDocumentIds' => [
]
]
],
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'documentDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
'enabled' => null,
'scope' => '',
'applicationLogging' => [
]
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'keyValueDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'multiModalDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'relationalDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'fileStorageService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'objectStorageService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'virtualNetwork' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'virtualSubNetwork' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'passwordPolicy' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'resourceGroup' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'blockStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
'customerKeyEncryption' => [
'algorithm' => '',
'enabled' => null,
'keyUrl' => ''
],
'managedKeyEncryption' => [
'algorithm' => '',
'enabled' => null,
'keyUrl' => ''
]
],
'backups' => [
[
'enabled' => null,
'interval' => '',
'retentionPeriod' => '',
'storageId' => '',
'transportEncryption' => [
]
]
],
'geoLocation' => [
],
'immutability' => [
'enabled' => null
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'databaseStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
],
'backups' => [
[
]
],
'geoLocation' => [
],
'immutability' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'fileStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'publicAccess' => null,
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
],
'backups' => [
[
]
],
'geoLocation' => [
],
'immutability' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'objectStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'publicAccess' => null,
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
],
'backups' => [
[
]
],
'geoLocation' => [
],
'immutability' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'codeNotebook' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'codeIds' => [
],
'dataLocation' => [
'localDataLocation' => [
'path' => '',
'atRestEncryption' => [
],
'storageId' => ''
],
'remoteDataLocation' => [
'path' => '',
'authenticity' => [
],
'storageId' => '',
'transportEncryption' => [
]
]
],
'documentChecksums' => [
[
'algorithm' => '',
'errors' => [
[
'message' => ''
]
]
]
],
'documentSignatures' => [
[
'algorithm' => '',
'errors' => [
[
]
]
]
],
'parentId' => '',
'schemaValidation' => [
'format' => '',
'schemaUrl' => '',
'errors' => [
[
]
]
],
'securityFeatures' => [
[
'anomalyDetection' => [
],
'activityLogging' => [
],
'applicationLogging' => [
],
'bootLogging' => [
],
'osLogging' => [
],
'resourceLogging' => [
],
'malwareProtection' => [
],
'usageStatistics' => [
],
'certificateBasedAuthentication' => [
],
'tokenBasedAuthentication' => [
],
'multiFactorAuthentiation' => [
],
'noAuthentication' => [
],
'otpBasedAuthentication' => [
],
'passwordBasedAuthentication' => [
],
'singleSignOn' => [
],
'abac' => [
],
'l3Firewall' => [
],
'webApplicationFirewall' => [
],
'rbac' => [
],
'backup' => [
],
'dDoSProtection' => [
],
'geoLocation' => [
],
'geoRedundancy' => [
],
'localRedundancy' => [
],
'zoneRedundancy' => [
],
'customerKeyEncryption' => [
],
'managedKeyEncryption' => [
],
'encryptionInUse' => [
],
'transportEncryption' => [
],
'localAttestation' => [
'enabled' => null
],
'remoteAttestation' => [
],
'automaticUpdates' => [
],
'documentChecksum' => [
],
'immutability' => [
],
'documentSignature' => [
],
'explainableResults' => [
],
'robustnessScore' => [
]
]
]
],
'genericDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
]
],
'policyDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
]
],
'securityAdvisoryDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
],
'vulnerabilities' => [
[
'cve' => '',
'cwe' => [
],
'description' => '',
'name' => '',
'url' => ''
]
]
],
'serviceMetadataDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
]
],
'machineLearningDataset' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'size' => 0,
'type' => '',
'dataLocation' => [
],
'parentId' => ''
],
'machineLearningModel' => [
'advRobustness' => '',
'creationTime' => '',
'description' => '',
'explainability' => '',
'id' => '',
'labels' => [
],
'name' => '',
'poisonLevel' => '',
'privacyLabel' => '',
'privacyLevel' => '',
'raw' => '',
'robustness' => '',
'dataLocation' => [
],
'parentId' => '',
'vulnerabilities' => [
[
]
]
],
'awarenessTraining' => [
'annualUpdateCompleted' => null,
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'successfullyCompletedPercentage' => null,
'parentId' => ''
],
'securityTraining' => [
'annualUpdateCompleted' => null,
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'successfullyCompletedPercentage' => null,
'parentId' => ''
],
'application' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'programmingLanguage' => '',
'programmingVersion' => '',
'raw' => '',
'translationUnits' => [
],
'automaticUpdates' => [
],
'codeModuleIds' => [
],
'codeRepositoryId' => '',
'computeId' => '',
'functionalities' => [
[
'cipherSuite' => [
],
'codeRegion' => [
'code' => '',
'endColumn' => 0,
'endLine' => 0,
'file' => '',
'startColumn' => 0,
'startLine' => 0
],
'localDataLocation' => [
],
'remoteDataLocation' => [
],
'error' => [
],
'httpEndpoint' => [
],
'httpRequestHandler' => [
'path' => '',
'applicationId' => '',
'httpEndpoints' => [
[
]
]
],
'decryption' => [
'algorithm' => '',
'codeRegion' => [
]
],
'encryption' => [
'algorithm' => '',
'codeRegion' => [
]
],
'cryptographicHash' => [
'algorithm' => '',
'usesSalt' => null,
'codeRegion' => [
]
],
'databaseConnect' => [
'calls' => [
],
'codeRegion' => [
],
'databaseServiceIds' => [
],
'databaseStorageId' => ''
],
'databaseQuery' => [
'calls' => [
],
'modify' => null,
'codeRegion' => [
],
'databaseServiceIds' => [
],
'databaseStorageId' => ''
],
'httpRequest' => [
'call' => '',
'reqBody' => '',
'codeRegion' => [
],
'httpEndpoints' => [
[
]
]
],
'logOperation' => [
'call' => '',
'value' => '',
'codeRegion' => [
],
'logging' => [
]
],
'objectStorageRequest' => [
'source' => '',
'codeRegion' => [
],
'objectStorageIds' => [
]
],
'schemaValidation' => [
],
'securityAdvisoryFeed' => [
],
'vulnerability' => [
]
]
],
'libraryIds' => [
],
'parentId' => ''
],
'library' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'codeModuleIds' => [
],
'codeRepositoryId' => '',
'functionalities' => [
[
]
],
'libraryIds' => [
],
'parentId' => '',
'vulnerabilities' => [
[
]
]
],
'sourceCodeFile' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'codeModuleIds' => [
],
'codeRepositoryId' => '',
'functionalities' => [
[
]
],
'parentId' => ''
]
]
]));
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
append(json_encode([
'resource' => [
'account' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
'region' => ''
],
'loggings' => [
[
'activityLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'applicationLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'bootLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'osLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
],
'resourceLogging' => [
'enabled' => null,
'monitoringLogDataEnabled' => null,
'retentionPeriod' => '',
'securityAlertsEnabled' => null,
'loggingServiceIds' => [
]
]
]
],
'redundancies' => [
[
'geoRedundancy' => [
'geoLocations' => [
[
]
]
],
'localRedundancy' => [
'geoLocations' => [
[
]
]
],
'zoneRedundancy' => [
'geoLocations' => [
[
]
]
]
]
],
'parentId' => '',
'usageStatistics' => [
'apiHitsPerMonth' => 0
]
],
'job' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'workflow' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'codeRepository' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'qpu' => [
'creationTime' => '',
'description' => '',
'errorCorrectionEnabled' => null,
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'oneQubitGateErrorRate' => '',
'raw' => '',
'spamErrorRate' => '',
'twoQubitGateErrorRate' => '',
'encryptionInUse' => [
'enabled' => null
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'networkInterfaceIds' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
'creationTime' => '',
'enabled' => null,
'status' => null
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'container' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'encryptionInUse' => [
],
'geoLocation' => [
],
'imageId' => '',
'loggings' => [
[
]
],
'networkInterfaceIds' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'function' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'runtimeLanguage' => '',
'runtimeVersion' => '',
'encryptionInUse' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'networkInterfaceIds' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'virtualMachine' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'activityLogging' => [
],
'automaticUpdates' => [
'enabled' => null,
'interval' => '',
'securityOnly' => null
],
'blockStorageIds' => [
],
'bootLogging' => [
],
'encryptionInUse' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
'durationSinceActive' => '',
'enabled' => null,
'numberOfThreatsFound' => 0,
'applicationLogging' => [
]
],
'networkInterfaceIds' => [
],
'osLogging' => [
],
'redundancies' => [
[
]
],
'remoteAttestation' => [
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'containerOrchestration' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'managementUrl' => '',
'name' => '',
'raw' => '',
'containerIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'containerRegistry' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'certificate' => [
'creationTime' => '',
'description' => '',
'enabled' => null,
'expirationDate' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'isManaged' => null,
'labels' => [
],
'name' => '',
'notBeforeDate' => '',
'raw' => '',
'geoLocation' => [
],
'infrastructureId' => '',
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'key' => [
'algorithm' => '',
'creationTime' => '',
'description' => '',
'enabled' => null,
'expirationDate' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'isManaged' => null,
'keySize' => 0,
'labels' => [
],
'name' => '',
'notBeforeDate' => '',
'raw' => '',
'geoLocation' => [
],
'infrastructureId' => '',
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'secret' => [
'creationTime' => '',
'description' => '',
'enabled' => null,
'expirationDate' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'isManaged' => null,
'labels' => [
],
'name' => '',
'notBeforeDate' => '',
'raw' => '',
'geoLocation' => [
],
'infrastructureId' => '',
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'identity' => [
'activated' => null,
'creationTime' => '',
'description' => '',
'disablePasswordPolicy' => null,
'enforceMfa' => null,
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'lastActivity' => '',
'loginDefenderEnabled' => null,
'name' => '',
'privileged' => null,
'raw' => '',
'authenticity' => [
'certificateBasedAuthentication' => [
'contextIsChecked' => null,
'enabled' => null
],
'tokenBasedAuthentication' => [
'contextIsChecked' => null,
'enabled' => null,
'enforced' => null
],
'multiFactorAuthentiation' => [
'contextIsChecked' => null,
'authenticities' => [
]
],
'noAuthentication' => [
'contextIsChecked' => null
],
'otpBasedAuthentication' => [
'activated' => null,
'contextIsChecked' => null
],
'passwordBasedAuthentication' => [
'activated' => null,
'contextIsChecked' => null
],
'singleSignOn' => [
'contextIsChecked' => null,
'enabled' => null
]
],
'authorization' => [
'abac' => [
],
'l3Firewall' => [
'enabled' => null,
'inbound' => null,
'restrictedPorts' => ''
],
'webApplicationFirewall' => [
'enabled' => null
],
'rbac' => [
'broadAssignments' => '',
'mixedDuties' => ''
]
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'roleAssignment' => [
'activated' => null,
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'authenticity' => [
],
'authorization' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'containerImage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'applicationId' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'vmImage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'applicationId' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'deviceProvisioningService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'messagingHub' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'keyVault' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'credentialIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'networkInterface' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'accessRestriction' => [
'l3Firewall' => [
],
'webApplicationFirewall' => [
]
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'networkServiceId' => '',
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'networkSecurityGroup' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'functionService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'functionIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
'enabled' => null,
'enforced' => null,
'protocol' => '',
'protocolVersion' => '',
'cipherSuites' => [
[
'authenticationMechanism' => '',
'keyExchangeAlgorithm' => '',
'macAlgorithm' => '',
'sessionCipher' => ''
]
]
],
'usageStatistics' => [
]
],
'genericNetworkService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'loadBalancer' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'url' => '',
'accessRestriction' => [
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoints' => [
[
'handler' => '',
'method' => '',
'path' => '',
'url' => '',
'authenticity' => [
],
'transportEncryption' => [
]
]
],
'loggings' => [
[
]
],
'networkServiceIds' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'loggingService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'machineLearningService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'loggings' => [
[
]
],
'machineLearningIds' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'securityAdvisoryService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'keyIds' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'securityAdvisoryFeeds' => [
[
'securityAdvisoryDocumentIds' => [
]
]
],
'serviceMetadataDocumentId' => '',
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'documentDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
'enabled' => null,
'scope' => '',
'applicationLogging' => [
]
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'keyValueDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'multiModalDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'relationalDatabaseService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'anomalyDetections' => [
[
]
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'malwareProtection' => [
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'fileStorageService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'objectStorageService' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'ips' => [
],
'labels' => [
],
'name' => '',
'ports' => [
],
'raw' => '',
'activityLogging' => [
],
'authenticity' => [
],
'computeIds' => [
],
'geoLocation' => [
],
'httpEndpoint' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'serviceMetadataDocumentId' => '',
'storageIds' => [
],
'transportEncryption' => [
],
'usageStatistics' => [
]
],
'virtualNetwork' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'virtualSubNetwork' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'passwordPolicy' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'resourceGroup' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'geoLocation' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'usageStatistics' => [
]
],
'blockStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
'customerKeyEncryption' => [
'algorithm' => '',
'enabled' => null,
'keyUrl' => ''
],
'managedKeyEncryption' => [
'algorithm' => '',
'enabled' => null,
'keyUrl' => ''
]
],
'backups' => [
[
'enabled' => null,
'interval' => '',
'retentionPeriod' => '',
'storageId' => '',
'transportEncryption' => [
]
]
],
'geoLocation' => [
],
'immutability' => [
'enabled' => null
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'databaseStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
],
'backups' => [
[
]
],
'geoLocation' => [
],
'immutability' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'fileStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'publicAccess' => null,
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
],
'backups' => [
[
]
],
'geoLocation' => [
],
'immutability' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'objectStorage' => [
'creationTime' => '',
'description' => '',
'id' => '',
'internetAccessibleEndpoint' => null,
'labels' => [
],
'name' => '',
'publicAccess' => null,
'raw' => '',
'activityLogging' => [
],
'atRestEncryption' => [
],
'backups' => [
[
]
],
'geoLocation' => [
],
'immutability' => [
],
'loggings' => [
[
]
],
'redundancies' => [
[
]
],
'parentId' => '',
'resourceLogging' => [
],
'usageStatistics' => [
]
],
'codeNotebook' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'codeIds' => [
],
'dataLocation' => [
'localDataLocation' => [
'path' => '',
'atRestEncryption' => [
],
'storageId' => ''
],
'remoteDataLocation' => [
'path' => '',
'authenticity' => [
],
'storageId' => '',
'transportEncryption' => [
]
]
],
'documentChecksums' => [
[
'algorithm' => '',
'errors' => [
[
'message' => ''
]
]
]
],
'documentSignatures' => [
[
'algorithm' => '',
'errors' => [
[
]
]
]
],
'parentId' => '',
'schemaValidation' => [
'format' => '',
'schemaUrl' => '',
'errors' => [
[
]
]
],
'securityFeatures' => [
[
'anomalyDetection' => [
],
'activityLogging' => [
],
'applicationLogging' => [
],
'bootLogging' => [
],
'osLogging' => [
],
'resourceLogging' => [
],
'malwareProtection' => [
],
'usageStatistics' => [
],
'certificateBasedAuthentication' => [
],
'tokenBasedAuthentication' => [
],
'multiFactorAuthentiation' => [
],
'noAuthentication' => [
],
'otpBasedAuthentication' => [
],
'passwordBasedAuthentication' => [
],
'singleSignOn' => [
],
'abac' => [
],
'l3Firewall' => [
],
'webApplicationFirewall' => [
],
'rbac' => [
],
'backup' => [
],
'dDoSProtection' => [
],
'geoLocation' => [
],
'geoRedundancy' => [
],
'localRedundancy' => [
],
'zoneRedundancy' => [
],
'customerKeyEncryption' => [
],
'managedKeyEncryption' => [
],
'encryptionInUse' => [
],
'transportEncryption' => [
],
'localAttestation' => [
'enabled' => null
],
'remoteAttestation' => [
],
'automaticUpdates' => [
],
'documentChecksum' => [
],
'immutability' => [
],
'documentSignature' => [
],
'explainableResults' => [
],
'robustnessScore' => [
]
]
]
],
'genericDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
]
],
'policyDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
]
],
'securityAdvisoryDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
],
'vulnerabilities' => [
[
'cve' => '',
'cwe' => [
],
'description' => '',
'name' => '',
'url' => ''
]
]
],
'serviceMetadataDocument' => [
'creationTime' => '',
'description' => '',
'filetype' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'dataLocation' => [
],
'documentChecksums' => [
[
]
],
'documentSignatures' => [
[
]
],
'parentId' => '',
'schemaValidation' => [
],
'securityFeatures' => [
[
]
]
],
'machineLearningDataset' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'size' => 0,
'type' => '',
'dataLocation' => [
],
'parentId' => ''
],
'machineLearningModel' => [
'advRobustness' => '',
'creationTime' => '',
'description' => '',
'explainability' => '',
'id' => '',
'labels' => [
],
'name' => '',
'poisonLevel' => '',
'privacyLabel' => '',
'privacyLevel' => '',
'raw' => '',
'robustness' => '',
'dataLocation' => [
],
'parentId' => '',
'vulnerabilities' => [
[
]
]
],
'awarenessTraining' => [
'annualUpdateCompleted' => null,
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'successfullyCompletedPercentage' => null,
'parentId' => ''
],
'securityTraining' => [
'annualUpdateCompleted' => null,
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'successfullyCompletedPercentage' => null,
'parentId' => ''
],
'application' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'programmingLanguage' => '',
'programmingVersion' => '',
'raw' => '',
'translationUnits' => [
],
'automaticUpdates' => [
],
'codeModuleIds' => [
],
'codeRepositoryId' => '',
'computeId' => '',
'functionalities' => [
[
'cipherSuite' => [
],
'codeRegion' => [
'code' => '',
'endColumn' => 0,
'endLine' => 0,
'file' => '',
'startColumn' => 0,
'startLine' => 0
],
'localDataLocation' => [
],
'remoteDataLocation' => [
],
'error' => [
],
'httpEndpoint' => [
],
'httpRequestHandler' => [
'path' => '',
'applicationId' => '',
'httpEndpoints' => [
[
]
]
],
'decryption' => [
'algorithm' => '',
'codeRegion' => [
]
],
'encryption' => [
'algorithm' => '',
'codeRegion' => [
]
],
'cryptographicHash' => [
'algorithm' => '',
'usesSalt' => null,
'codeRegion' => [
]
],
'databaseConnect' => [
'calls' => [
],
'codeRegion' => [
],
'databaseServiceIds' => [
],
'databaseStorageId' => ''
],
'databaseQuery' => [
'calls' => [
],
'modify' => null,
'codeRegion' => [
],
'databaseServiceIds' => [
],
'databaseStorageId' => ''
],
'httpRequest' => [
'call' => '',
'reqBody' => '',
'codeRegion' => [
],
'httpEndpoints' => [
[
]
]
],
'logOperation' => [
'call' => '',
'value' => '',
'codeRegion' => [
],
'logging' => [
]
],
'objectStorageRequest' => [
'source' => '',
'codeRegion' => [
],
'objectStorageIds' => [
]
],
'schemaValidation' => [
],
'securityAdvisoryFeed' => [
],
'vulnerability' => [
]
]
],
'libraryIds' => [
],
'parentId' => ''
],
'library' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'codeModuleIds' => [
],
'codeRepositoryId' => '',
'functionalities' => [
[
]
],
'libraryIds' => [
],
'parentId' => '',
'vulnerabilities' => [
[
]
]
],
'sourceCodeFile' => [
'creationTime' => '',
'description' => '',
'id' => '',
'labels' => [
],
'name' => '',
'raw' => '',
'codeModuleIds' => [
],
'codeRepositoryId' => '',
'functionalities' => [
[
]
],
'parentId' => ''
]
]
]));
$request->setRequestUrl('{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id');
$request->setRequestMethod('POST');
$request->setBody($body);
$request->setHeaders([
'content-type' => 'application/json'
]);
$client->enqueue($request)->send();
$response = $client->getResponse();
echo $response->getBody();
$headers=@{}
$headers.Add("content-type", "application/json")
$response = Invoke-WebRequest -Uri '{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
"resource": {
"account": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {
"region": ""
},
"loggings": [
{
"activityLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"applicationLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"bootLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"osLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"resourceLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
}
}
],
"redundancies": [
{
"geoRedundancy": {
"geoLocations": [
{}
]
},
"localRedundancy": {
"geoLocations": [
{}
]
},
"zoneRedundancy": {
"geoLocations": [
{}
]
}
}
],
"parentId": "",
"usageStatistics": {
"apiHitsPerMonth": 0
}
},
"job": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"workflow": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"codeRepository": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"qpu": {
"creationTime": "",
"description": "",
"errorCorrectionEnabled": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"oneQubitGateErrorRate": "",
"raw": "",
"spamErrorRate": "",
"twoQubitGateErrorRate": "",
"encryptionInUse": {
"enabled": false
},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {
"creationTime": "",
"enabled": false,
"status": false
},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"container": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"encryptionInUse": {},
"geoLocation": {},
"imageId": "",
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"function": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"runtimeLanguage": "",
"runtimeVersion": "",
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"virtualMachine": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"automaticUpdates": {
"enabled": false,
"interval": "",
"securityOnly": false
},
"blockStorageIds": [],
"bootLogging": {},
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"malwareProtection": {
"durationSinceActive": "",
"enabled": false,
"numberOfThreatsFound": 0,
"applicationLogging": {}
},
"networkInterfaceIds": [],
"osLogging": {},
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerOrchestration": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"managementUrl": "",
"name": "",
"raw": "",
"containerIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerRegistry": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"certificate": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"key": {
"algorithm": "",
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"keySize": 0,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"secret": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"identity": {
"activated": false,
"creationTime": "",
"description": "",
"disablePasswordPolicy": false,
"enforceMfa": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"lastActivity": "",
"loginDefenderEnabled": false,
"name": "",
"privileged": false,
"raw": "",
"authenticity": {
"certificateBasedAuthentication": {
"contextIsChecked": false,
"enabled": false
},
"tokenBasedAuthentication": {
"contextIsChecked": false,
"enabled": false,
"enforced": false
},
"multiFactorAuthentiation": {
"contextIsChecked": false,
"authenticities": []
},
"noAuthentication": {
"contextIsChecked": false
},
"otpBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"passwordBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"singleSignOn": {
"contextIsChecked": false,
"enabled": false
}
},
"authorization": {
"abac": {},
"l3Firewall": {
"enabled": false,
"inbound": false,
"restrictedPorts": ""
},
"webApplicationFirewall": {
"enabled": false
},
"rbac": {
"broadAssignments": "",
"mixedDuties": ""
}
},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"roleAssignment": {
"activated": false,
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"authenticity": {},
"authorization": {},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"containerImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"vmImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"deviceProvisioningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"messagingHub": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"keyVault": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"credentialIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkInterface": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"accessRestriction": {
"l3Firewall": {},
"webApplicationFirewall": {}
},
"geoLocation": {},
"loggings": [
{}
],
"networkServiceId": "",
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkSecurityGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"functionService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"functionIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {
"enabled": false,
"enforced": false,
"protocol": "",
"protocolVersion": "",
"cipherSuites": [
{
"authenticationMechanism": "",
"keyExchangeAlgorithm": "",
"macAlgorithm": "",
"sessionCipher": ""
}
]
},
"usageStatistics": {}
},
"genericNetworkService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loadBalancer": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"url": "",
"accessRestriction": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoints": [
{
"handler": "",
"method": "",
"path": "",
"url": "",
"authenticity": {},
"transportEncryption": {}
}
],
"loggings": [
{}
],
"networkServiceIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loggingService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"machineLearningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"machineLearningIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"securityAdvisoryService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"keyIds": [],
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"securityAdvisoryFeeds": [
{
"securityAdvisoryDocumentIds": []
}
],
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"documentDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{
"enabled": false,
"scope": "",
"applicationLogging": {}
}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"keyValueDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"multiModalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"relationalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"fileStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"objectStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"virtualNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"virtualSubNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"passwordPolicy": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"resourceGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"blockStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {
"customerKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
},
"managedKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
}
},
"backups": [
{
"enabled": false,
"interval": "",
"retentionPeriod": "",
"storageId": "",
"transportEncryption": {}
}
],
"geoLocation": {},
"immutability": {
"enabled": false
},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"databaseStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"fileStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"objectStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"codeNotebook": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeIds": [],
"dataLocation": {
"localDataLocation": {
"path": "",
"atRestEncryption": {},
"storageId": ""
},
"remoteDataLocation": {
"path": "",
"authenticity": {},
"storageId": "",
"transportEncryption": {}
}
},
"documentChecksums": [
{
"algorithm": "",
"errors": [
{
"message": ""
}
]
}
],
"documentSignatures": [
{
"algorithm": "",
"errors": [
{}
]
}
],
"parentId": "",
"schemaValidation": {
"format": "",
"schemaUrl": "",
"errors": [
{}
]
},
"securityFeatures": [
{
"anomalyDetection": {},
"activityLogging": {},
"applicationLogging": {},
"bootLogging": {},
"osLogging": {},
"resourceLogging": {},
"malwareProtection": {},
"usageStatistics": {},
"certificateBasedAuthentication": {},
"tokenBasedAuthentication": {},
"multiFactorAuthentiation": {},
"noAuthentication": {},
"otpBasedAuthentication": {},
"passwordBasedAuthentication": {},
"singleSignOn": {},
"abac": {},
"l3Firewall": {},
"webApplicationFirewall": {},
"rbac": {},
"backup": {},
"dDoSProtection": {},
"geoLocation": {},
"geoRedundancy": {},
"localRedundancy": {},
"zoneRedundancy": {},
"customerKeyEncryption": {},
"managedKeyEncryption": {},
"encryptionInUse": {},
"transportEncryption": {},
"localAttestation": {
"enabled": false
},
"remoteAttestation": {},
"automaticUpdates": {},
"documentChecksum": {},
"immutability": {},
"documentSignature": {},
"explainableResults": {},
"robustnessScore": {}
}
]
},
"genericDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"policyDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"securityAdvisoryDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
],
"vulnerabilities": [
{
"cve": "",
"cwe": [],
"description": "",
"name": "",
"url": ""
}
]
},
"serviceMetadataDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"machineLearningDataset": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"size": 0,
"type": "",
"dataLocation": {},
"parentId": ""
},
"machineLearningModel": {
"advRobustness": "",
"creationTime": "",
"description": "",
"explainability": "",
"id": "",
"labels": {},
"name": "",
"poisonLevel": "",
"privacyLabel": "",
"privacyLevel": "",
"raw": "",
"robustness": "",
"dataLocation": {},
"parentId": "",
"vulnerabilities": [
{}
]
},
"awarenessTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"securityTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"application": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"programmingLanguage": "",
"programmingVersion": "",
"raw": "",
"translationUnits": [],
"automaticUpdates": {},
"codeModuleIds": [],
"codeRepositoryId": "",
"computeId": "",
"functionalities": [
{
"cipherSuite": {},
"codeRegion": {
"code": "",
"endColumn": 0,
"endLine": 0,
"file": "",
"startColumn": 0,
"startLine": 0
},
"localDataLocation": {},
"remoteDataLocation": {},
"error": {},
"httpEndpoint": {},
"httpRequestHandler": {
"path": "",
"applicationId": "",
"httpEndpoints": [
{}
]
},
"decryption": {
"algorithm": "",
"codeRegion": {}
},
"encryption": {
"algorithm": "",
"codeRegion": {}
},
"cryptographicHash": {
"algorithm": "",
"usesSalt": false,
"codeRegion": {}
},
"databaseConnect": {
"calls": [],
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"databaseQuery": {
"calls": [],
"modify": false,
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"httpRequest": {
"call": "",
"reqBody": "",
"codeRegion": {},
"httpEndpoints": [
{}
]
},
"logOperation": {
"call": "",
"value": "",
"codeRegion": {},
"logging": {}
},
"objectStorageRequest": {
"source": "",
"codeRegion": {},
"objectStorageIds": []
},
"schemaValidation": {},
"securityAdvisoryFeed": {},
"vulnerability": {}
}
],
"libraryIds": [],
"parentId": ""
},
"library": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"libraryIds": [],
"parentId": "",
"vulnerabilities": [
{}
]
},
"sourceCodeFile": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"parentId": ""
}
}
}'
$headers=@{}
$headers.Add("content-type", "application/json")
$response = Invoke-RestMethod -Uri '{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id' -Method POST -Headers $headers -ContentType 'application/json' -Body '{
"resource": {
"account": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {
"region": ""
},
"loggings": [
{
"activityLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"applicationLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"bootLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"osLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"resourceLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
}
}
],
"redundancies": [
{
"geoRedundancy": {
"geoLocations": [
{}
]
},
"localRedundancy": {
"geoLocations": [
{}
]
},
"zoneRedundancy": {
"geoLocations": [
{}
]
}
}
],
"parentId": "",
"usageStatistics": {
"apiHitsPerMonth": 0
}
},
"job": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"workflow": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"codeRepository": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"qpu": {
"creationTime": "",
"description": "",
"errorCorrectionEnabled": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"oneQubitGateErrorRate": "",
"raw": "",
"spamErrorRate": "",
"twoQubitGateErrorRate": "",
"encryptionInUse": {
"enabled": false
},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {
"creationTime": "",
"enabled": false,
"status": false
},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"container": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"encryptionInUse": {},
"geoLocation": {},
"imageId": "",
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"function": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"runtimeLanguage": "",
"runtimeVersion": "",
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"virtualMachine": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"automaticUpdates": {
"enabled": false,
"interval": "",
"securityOnly": false
},
"blockStorageIds": [],
"bootLogging": {},
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"malwareProtection": {
"durationSinceActive": "",
"enabled": false,
"numberOfThreatsFound": 0,
"applicationLogging": {}
},
"networkInterfaceIds": [],
"osLogging": {},
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerOrchestration": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"managementUrl": "",
"name": "",
"raw": "",
"containerIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerRegistry": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"certificate": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"key": {
"algorithm": "",
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"keySize": 0,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"secret": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"identity": {
"activated": false,
"creationTime": "",
"description": "",
"disablePasswordPolicy": false,
"enforceMfa": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"lastActivity": "",
"loginDefenderEnabled": false,
"name": "",
"privileged": false,
"raw": "",
"authenticity": {
"certificateBasedAuthentication": {
"contextIsChecked": false,
"enabled": false
},
"tokenBasedAuthentication": {
"contextIsChecked": false,
"enabled": false,
"enforced": false
},
"multiFactorAuthentiation": {
"contextIsChecked": false,
"authenticities": []
},
"noAuthentication": {
"contextIsChecked": false
},
"otpBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"passwordBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"singleSignOn": {
"contextIsChecked": false,
"enabled": false
}
},
"authorization": {
"abac": {},
"l3Firewall": {
"enabled": false,
"inbound": false,
"restrictedPorts": ""
},
"webApplicationFirewall": {
"enabled": false
},
"rbac": {
"broadAssignments": "",
"mixedDuties": ""
}
},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"roleAssignment": {
"activated": false,
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"authenticity": {},
"authorization": {},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"containerImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"vmImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"deviceProvisioningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"messagingHub": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"keyVault": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"credentialIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkInterface": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"accessRestriction": {
"l3Firewall": {},
"webApplicationFirewall": {}
},
"geoLocation": {},
"loggings": [
{}
],
"networkServiceId": "",
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkSecurityGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"functionService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"functionIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {
"enabled": false,
"enforced": false,
"protocol": "",
"protocolVersion": "",
"cipherSuites": [
{
"authenticationMechanism": "",
"keyExchangeAlgorithm": "",
"macAlgorithm": "",
"sessionCipher": ""
}
]
},
"usageStatistics": {}
},
"genericNetworkService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loadBalancer": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"url": "",
"accessRestriction": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoints": [
{
"handler": "",
"method": "",
"path": "",
"url": "",
"authenticity": {},
"transportEncryption": {}
}
],
"loggings": [
{}
],
"networkServiceIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loggingService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"machineLearningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"machineLearningIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"securityAdvisoryService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"keyIds": [],
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"securityAdvisoryFeeds": [
{
"securityAdvisoryDocumentIds": []
}
],
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"documentDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{
"enabled": false,
"scope": "",
"applicationLogging": {}
}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"keyValueDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"multiModalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"relationalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"fileStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"objectStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"virtualNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"virtualSubNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"passwordPolicy": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"resourceGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"blockStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {
"customerKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
},
"managedKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
}
},
"backups": [
{
"enabled": false,
"interval": "",
"retentionPeriod": "",
"storageId": "",
"transportEncryption": {}
}
],
"geoLocation": {},
"immutability": {
"enabled": false
},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"databaseStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"fileStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"objectStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"codeNotebook": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeIds": [],
"dataLocation": {
"localDataLocation": {
"path": "",
"atRestEncryption": {},
"storageId": ""
},
"remoteDataLocation": {
"path": "",
"authenticity": {},
"storageId": "",
"transportEncryption": {}
}
},
"documentChecksums": [
{
"algorithm": "",
"errors": [
{
"message": ""
}
]
}
],
"documentSignatures": [
{
"algorithm": "",
"errors": [
{}
]
}
],
"parentId": "",
"schemaValidation": {
"format": "",
"schemaUrl": "",
"errors": [
{}
]
},
"securityFeatures": [
{
"anomalyDetection": {},
"activityLogging": {},
"applicationLogging": {},
"bootLogging": {},
"osLogging": {},
"resourceLogging": {},
"malwareProtection": {},
"usageStatistics": {},
"certificateBasedAuthentication": {},
"tokenBasedAuthentication": {},
"multiFactorAuthentiation": {},
"noAuthentication": {},
"otpBasedAuthentication": {},
"passwordBasedAuthentication": {},
"singleSignOn": {},
"abac": {},
"l3Firewall": {},
"webApplicationFirewall": {},
"rbac": {},
"backup": {},
"dDoSProtection": {},
"geoLocation": {},
"geoRedundancy": {},
"localRedundancy": {},
"zoneRedundancy": {},
"customerKeyEncryption": {},
"managedKeyEncryption": {},
"encryptionInUse": {},
"transportEncryption": {},
"localAttestation": {
"enabled": false
},
"remoteAttestation": {},
"automaticUpdates": {},
"documentChecksum": {},
"immutability": {},
"documentSignature": {},
"explainableResults": {},
"robustnessScore": {}
}
]
},
"genericDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"policyDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"securityAdvisoryDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
],
"vulnerabilities": [
{
"cve": "",
"cwe": [],
"description": "",
"name": "",
"url": ""
}
]
},
"serviceMetadataDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"machineLearningDataset": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"size": 0,
"type": "",
"dataLocation": {},
"parentId": ""
},
"machineLearningModel": {
"advRobustness": "",
"creationTime": "",
"description": "",
"explainability": "",
"id": "",
"labels": {},
"name": "",
"poisonLevel": "",
"privacyLabel": "",
"privacyLevel": "",
"raw": "",
"robustness": "",
"dataLocation": {},
"parentId": "",
"vulnerabilities": [
{}
]
},
"awarenessTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"securityTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"application": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"programmingLanguage": "",
"programmingVersion": "",
"raw": "",
"translationUnits": [],
"automaticUpdates": {},
"codeModuleIds": [],
"codeRepositoryId": "",
"computeId": "",
"functionalities": [
{
"cipherSuite": {},
"codeRegion": {
"code": "",
"endColumn": 0,
"endLine": 0,
"file": "",
"startColumn": 0,
"startLine": 0
},
"localDataLocation": {},
"remoteDataLocation": {},
"error": {},
"httpEndpoint": {},
"httpRequestHandler": {
"path": "",
"applicationId": "",
"httpEndpoints": [
{}
]
},
"decryption": {
"algorithm": "",
"codeRegion": {}
},
"encryption": {
"algorithm": "",
"codeRegion": {}
},
"cryptographicHash": {
"algorithm": "",
"usesSalt": false,
"codeRegion": {}
},
"databaseConnect": {
"calls": [],
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"databaseQuery": {
"calls": [],
"modify": false,
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"httpRequest": {
"call": "",
"reqBody": "",
"codeRegion": {},
"httpEndpoints": [
{}
]
},
"logOperation": {
"call": "",
"value": "",
"codeRegion": {},
"logging": {}
},
"objectStorageRequest": {
"source": "",
"codeRegion": {},
"objectStorageIds": []
},
"schemaValidation": {},
"securityAdvisoryFeed": {},
"vulnerability": {}
}
],
"libraryIds": [],
"parentId": ""
},
"library": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"libraryIds": [],
"parentId": "",
"vulnerabilities": [
{}
]
},
"sourceCodeFile": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"parentId": ""
}
}
}'
import http.client
conn = http.client.HTTPSConnection("example.com")
payload = "{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}"
headers = { 'content-type': "application/json" }
conn.request("POST", "/baseUrl/v1experimental/evidence_store/resources/:resource.id", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
import requests
url = "{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id"
payload = { "resource": {
"account": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": { "region": "" },
"loggings": [
{
"activityLogging": {
"enabled": False,
"monitoringLogDataEnabled": False,
"retentionPeriod": "",
"securityAlertsEnabled": False,
"loggingServiceIds": []
},
"applicationLogging": {
"enabled": False,
"monitoringLogDataEnabled": False,
"retentionPeriod": "",
"securityAlertsEnabled": False,
"loggingServiceIds": []
},
"bootLogging": {
"enabled": False,
"monitoringLogDataEnabled": False,
"retentionPeriod": "",
"securityAlertsEnabled": False,
"loggingServiceIds": []
},
"osLogging": {
"enabled": False,
"monitoringLogDataEnabled": False,
"retentionPeriod": "",
"securityAlertsEnabled": False,
"loggingServiceIds": []
},
"resourceLogging": {
"enabled": False,
"monitoringLogDataEnabled": False,
"retentionPeriod": "",
"securityAlertsEnabled": False,
"loggingServiceIds": []
}
}
],
"redundancies": [
{
"geoRedundancy": { "geoLocations": [{}] },
"localRedundancy": { "geoLocations": [{}] },
"zoneRedundancy": { "geoLocations": [{}] }
}
],
"parentId": "",
"usageStatistics": { "apiHitsPerMonth": 0 }
},
"job": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"workflow": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"codeRepository": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"qpu": {
"creationTime": "",
"description": "",
"errorCorrectionEnabled": False,
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"oneQubitGateErrorRate": "",
"raw": "",
"spamErrorRate": "",
"twoQubitGateErrorRate": "",
"encryptionInUse": { "enabled": False },
"geoLocation": {},
"loggings": [{}],
"networkInterfaceIds": [],
"redundancies": [{}],
"remoteAttestation": {
"creationTime": "",
"enabled": False,
"status": False
},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"container": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"encryptionInUse": {},
"geoLocation": {},
"imageId": "",
"loggings": [{}],
"networkInterfaceIds": [],
"redundancies": [{}],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"function": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"runtimeLanguage": "",
"runtimeVersion": "",
"encryptionInUse": {},
"geoLocation": {},
"loggings": [{}],
"networkInterfaceIds": [],
"redundancies": [{}],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"virtualMachine": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"automaticUpdates": {
"enabled": False,
"interval": "",
"securityOnly": False
},
"blockStorageIds": [],
"bootLogging": {},
"encryptionInUse": {},
"geoLocation": {},
"loggings": [{}],
"malwareProtection": {
"durationSinceActive": "",
"enabled": False,
"numberOfThreatsFound": 0,
"applicationLogging": {}
},
"networkInterfaceIds": [],
"osLogging": {},
"redundancies": [{}],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerOrchestration": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"managementUrl": "",
"name": "",
"raw": "",
"containerIds": [],
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerRegistry": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"certificate": {
"creationTime": "",
"description": "",
"enabled": False,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": False,
"isManaged": False,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"key": {
"algorithm": "",
"creationTime": "",
"description": "",
"enabled": False,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": False,
"isManaged": False,
"keySize": 0,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"secret": {
"creationTime": "",
"description": "",
"enabled": False,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": False,
"isManaged": False,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"identity": {
"activated": False,
"creationTime": "",
"description": "",
"disablePasswordPolicy": False,
"enforceMfa": False,
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"lastActivity": "",
"loginDefenderEnabled": False,
"name": "",
"privileged": False,
"raw": "",
"authenticity": {
"certificateBasedAuthentication": {
"contextIsChecked": False,
"enabled": False
},
"tokenBasedAuthentication": {
"contextIsChecked": False,
"enabled": False,
"enforced": False
},
"multiFactorAuthentiation": {
"contextIsChecked": False,
"authenticities": []
},
"noAuthentication": { "contextIsChecked": False },
"otpBasedAuthentication": {
"activated": False,
"contextIsChecked": False
},
"passwordBasedAuthentication": {
"activated": False,
"contextIsChecked": False
},
"singleSignOn": {
"contextIsChecked": False,
"enabled": False
}
},
"authorization": {
"abac": {},
"l3Firewall": {
"enabled": False,
"inbound": False,
"restrictedPorts": ""
},
"webApplicationFirewall": { "enabled": False },
"rbac": {
"broadAssignments": "",
"mixedDuties": ""
}
},
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"roleAssignment": {
"activated": False,
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"authenticity": {},
"authorization": {},
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"containerImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"vmImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"deviceProvisioningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"messagingHub": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"keyVault": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"credentialIds": [],
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"networkInterface": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"accessRestriction": {
"l3Firewall": {},
"webApplicationFirewall": {}
},
"geoLocation": {},
"loggings": [{}],
"networkServiceId": "",
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"networkSecurityGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"functionService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"functionIds": [],
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {
"enabled": False,
"enforced": False,
"protocol": "",
"protocolVersion": "",
"cipherSuites": [
{
"authenticationMechanism": "",
"keyExchangeAlgorithm": "",
"macAlgorithm": "",
"sessionCipher": ""
}
]
},
"usageStatistics": {}
},
"genericNetworkService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loadBalancer": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"url": "",
"accessRestriction": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoints": [
{
"handler": "",
"method": "",
"path": "",
"url": "",
"authenticity": {},
"transportEncryption": {}
}
],
"loggings": [{}],
"networkServiceIds": [],
"redundancies": [{}],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loggingService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"machineLearningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [{}],
"machineLearningIds": [],
"redundancies": [{}],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"securityAdvisoryService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"keyIds": [],
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"securityAdvisoryFeeds": [{ "securityAdvisoryDocumentIds": [] }],
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"documentDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{
"enabled": False,
"scope": "",
"applicationLogging": {}
}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [{}],
"malwareProtection": {},
"redundancies": [{}],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"keyValueDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [{}],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [{}],
"malwareProtection": {},
"redundancies": [{}],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"multiModalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [{}],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [{}],
"malwareProtection": {},
"redundancies": [{}],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"relationalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [{}],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [{}],
"malwareProtection": {},
"redundancies": [{}],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"fileStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"objectStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"virtualNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"virtualSubNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"passwordPolicy": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"resourceGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"usageStatistics": {}
},
"blockStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {
"customerKeyEncryption": {
"algorithm": "",
"enabled": False,
"keyUrl": ""
},
"managedKeyEncryption": {
"algorithm": "",
"enabled": False,
"keyUrl": ""
}
},
"backups": [
{
"enabled": False,
"interval": "",
"retentionPeriod": "",
"storageId": "",
"transportEncryption": {}
}
],
"geoLocation": {},
"immutability": { "enabled": False },
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"databaseStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [{}],
"geoLocation": {},
"immutability": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"fileStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"publicAccess": False,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [{}],
"geoLocation": {},
"immutability": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"objectStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": False,
"labels": {},
"name": "",
"publicAccess": False,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [{}],
"geoLocation": {},
"immutability": {},
"loggings": [{}],
"redundancies": [{}],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"codeNotebook": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeIds": [],
"dataLocation": {
"localDataLocation": {
"path": "",
"atRestEncryption": {},
"storageId": ""
},
"remoteDataLocation": {
"path": "",
"authenticity": {},
"storageId": "",
"transportEncryption": {}
}
},
"documentChecksums": [
{
"algorithm": "",
"errors": [{ "message": "" }]
}
],
"documentSignatures": [
{
"algorithm": "",
"errors": [{}]
}
],
"parentId": "",
"schemaValidation": {
"format": "",
"schemaUrl": "",
"errors": [{}]
},
"securityFeatures": [
{
"anomalyDetection": {},
"activityLogging": {},
"applicationLogging": {},
"bootLogging": {},
"osLogging": {},
"resourceLogging": {},
"malwareProtection": {},
"usageStatistics": {},
"certificateBasedAuthentication": {},
"tokenBasedAuthentication": {},
"multiFactorAuthentiation": {},
"noAuthentication": {},
"otpBasedAuthentication": {},
"passwordBasedAuthentication": {},
"singleSignOn": {},
"abac": {},
"l3Firewall": {},
"webApplicationFirewall": {},
"rbac": {},
"backup": {},
"dDoSProtection": {},
"geoLocation": {},
"geoRedundancy": {},
"localRedundancy": {},
"zoneRedundancy": {},
"customerKeyEncryption": {},
"managedKeyEncryption": {},
"encryptionInUse": {},
"transportEncryption": {},
"localAttestation": { "enabled": False },
"remoteAttestation": {},
"automaticUpdates": {},
"documentChecksum": {},
"immutability": {},
"documentSignature": {},
"explainableResults": {},
"robustnessScore": {}
}
]
},
"genericDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [{}],
"documentSignatures": [{}],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [{}]
},
"policyDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [{}],
"documentSignatures": [{}],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [{}]
},
"securityAdvisoryDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [{}],
"documentSignatures": [{}],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [{}],
"vulnerabilities": [
{
"cve": "",
"cwe": [],
"description": "",
"name": "",
"url": ""
}
]
},
"serviceMetadataDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [{}],
"documentSignatures": [{}],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [{}]
},
"machineLearningDataset": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"size": 0,
"type": "",
"dataLocation": {},
"parentId": ""
},
"machineLearningModel": {
"advRobustness": "",
"creationTime": "",
"description": "",
"explainability": "",
"id": "",
"labels": {},
"name": "",
"poisonLevel": "",
"privacyLabel": "",
"privacyLevel": "",
"raw": "",
"robustness": "",
"dataLocation": {},
"parentId": "",
"vulnerabilities": [{}]
},
"awarenessTraining": {
"annualUpdateCompleted": False,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": False,
"parentId": ""
},
"securityTraining": {
"annualUpdateCompleted": False,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": False,
"parentId": ""
},
"application": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"programmingLanguage": "",
"programmingVersion": "",
"raw": "",
"translationUnits": [],
"automaticUpdates": {},
"codeModuleIds": [],
"codeRepositoryId": "",
"computeId": "",
"functionalities": [
{
"cipherSuite": {},
"codeRegion": {
"code": "",
"endColumn": 0,
"endLine": 0,
"file": "",
"startColumn": 0,
"startLine": 0
},
"localDataLocation": {},
"remoteDataLocation": {},
"error": {},
"httpEndpoint": {},
"httpRequestHandler": {
"path": "",
"applicationId": "",
"httpEndpoints": [{}]
},
"decryption": {
"algorithm": "",
"codeRegion": {}
},
"encryption": {
"algorithm": "",
"codeRegion": {}
},
"cryptographicHash": {
"algorithm": "",
"usesSalt": False,
"codeRegion": {}
},
"databaseConnect": {
"calls": [],
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"databaseQuery": {
"calls": [],
"modify": False,
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"httpRequest": {
"call": "",
"reqBody": "",
"codeRegion": {},
"httpEndpoints": [{}]
},
"logOperation": {
"call": "",
"value": "",
"codeRegion": {},
"logging": {}
},
"objectStorageRequest": {
"source": "",
"codeRegion": {},
"objectStorageIds": []
},
"schemaValidation": {},
"securityAdvisoryFeed": {},
"vulnerability": {}
}
],
"libraryIds": [],
"parentId": ""
},
"library": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [{}],
"libraryIds": [],
"parentId": "",
"vulnerabilities": [{}]
},
"sourceCodeFile": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [{}],
"parentId": ""
}
} }
headers = {"content-type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
library(httr)
url <- "{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id"
payload <- "{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}"
encode <- "json"
response <- VERB("POST", url, body = payload, content_type("application/json"), encode = encode)
content(response, "text")
require 'uri'
require 'net/http'
url = URI("{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["content-type"] = 'application/json'
request.body = "{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}"
response = http.request(request)
puts response.read_body
require 'faraday'
conn = Faraday.new(
url: 'https://example.com',
headers: {'Content-Type' => 'application/json'}
)
response = conn.post('/baseUrl/v1experimental/evidence_store/resources/:resource.id') do |req|
req.body = "{\n \"resource\": {\n \"account\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {\n \"region\": \"\"\n },\n \"loggings\": [\n {\n \"activityLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"applicationLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"bootLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"osLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n },\n \"resourceLogging\": {\n \"enabled\": false,\n \"monitoringLogDataEnabled\": false,\n \"retentionPeriod\": \"\",\n \"securityAlertsEnabled\": false,\n \"loggingServiceIds\": []\n }\n }\n ],\n \"redundancies\": [\n {\n \"geoRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"localRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n },\n \"zoneRedundancy\": {\n \"geoLocations\": [\n {}\n ]\n }\n }\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {\n \"apiHitsPerMonth\": 0\n }\n },\n \"job\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"workflow\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"codeRepository\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"qpu\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"errorCorrectionEnabled\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"oneQubitGateErrorRate\": \"\",\n \"raw\": \"\",\n \"spamErrorRate\": \"\",\n \"twoQubitGateErrorRate\": \"\",\n \"encryptionInUse\": {\n \"enabled\": false\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {\n \"creationTime\": \"\",\n \"enabled\": false,\n \"status\": false\n },\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"container\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"imageId\": \"\",\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"function\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"runtimeLanguage\": \"\",\n \"runtimeVersion\": \"\",\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkInterfaceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"virtualMachine\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"automaticUpdates\": {\n \"enabled\": false,\n \"interval\": \"\",\n \"securityOnly\": false\n },\n \"blockStorageIds\": [],\n \"bootLogging\": {},\n \"encryptionInUse\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {\n \"durationSinceActive\": \"\",\n \"enabled\": false,\n \"numberOfThreatsFound\": 0,\n \"applicationLogging\": {}\n },\n \"networkInterfaceIds\": [],\n \"osLogging\": {},\n \"redundancies\": [\n {}\n ],\n \"remoteAttestation\": {},\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerOrchestration\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"managementUrl\": \"\",\n \"name\": \"\",\n \"raw\": \"\",\n \"containerIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"containerRegistry\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"certificate\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"key\": {\n \"algorithm\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"keySize\": 0,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"secret\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"enabled\": false,\n \"expirationDate\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"isManaged\": false,\n \"labels\": {},\n \"name\": \"\",\n \"notBeforeDate\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"infrastructureId\": \"\",\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"identity\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"disablePasswordPolicy\": false,\n \"enforceMfa\": false,\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"lastActivity\": \"\",\n \"loginDefenderEnabled\": false,\n \"name\": \"\",\n \"privileged\": false,\n \"raw\": \"\",\n \"authenticity\": {\n \"certificateBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n },\n \"tokenBasedAuthentication\": {\n \"contextIsChecked\": false,\n \"enabled\": false,\n \"enforced\": false\n },\n \"multiFactorAuthentiation\": {\n \"contextIsChecked\": false,\n \"authenticities\": []\n },\n \"noAuthentication\": {\n \"contextIsChecked\": false\n },\n \"otpBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"passwordBasedAuthentication\": {\n \"activated\": false,\n \"contextIsChecked\": false\n },\n \"singleSignOn\": {\n \"contextIsChecked\": false,\n \"enabled\": false\n }\n },\n \"authorization\": {\n \"abac\": {},\n \"l3Firewall\": {\n \"enabled\": false,\n \"inbound\": false,\n \"restrictedPorts\": \"\"\n },\n \"webApplicationFirewall\": {\n \"enabled\": false\n },\n \"rbac\": {\n \"broadAssignments\": \"\",\n \"mixedDuties\": \"\"\n }\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"roleAssignment\": {\n \"activated\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"authenticity\": {},\n \"authorization\": {},\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"containerImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"vmImage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"applicationId\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"deviceProvisioningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"messagingHub\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"keyVault\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"credentialIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkInterface\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"accessRestriction\": {\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {}\n },\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"networkServiceId\": \"\",\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"networkSecurityGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"functionService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"functionIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {\n \"enabled\": false,\n \"enforced\": false,\n \"protocol\": \"\",\n \"protocolVersion\": \"\",\n \"cipherSuites\": [\n {\n \"authenticationMechanism\": \"\",\n \"keyExchangeAlgorithm\": \"\",\n \"macAlgorithm\": \"\",\n \"sessionCipher\": \"\"\n }\n ]\n },\n \"usageStatistics\": {}\n },\n \"genericNetworkService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loadBalancer\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"url\": \"\",\n \"accessRestriction\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoints\": [\n {\n \"handler\": \"\",\n \"method\": \"\",\n \"path\": \"\",\n \"url\": \"\",\n \"authenticity\": {},\n \"transportEncryption\": {}\n }\n ],\n \"loggings\": [\n {}\n ],\n \"networkServiceIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"loggingService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"machineLearningService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"machineLearningIds\": [],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"securityAdvisoryService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"keyIds\": [],\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"securityAdvisoryFeeds\": [\n {\n \"securityAdvisoryDocumentIds\": []\n }\n ],\n \"serviceMetadataDocumentId\": \"\",\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"documentDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {\n \"enabled\": false,\n \"scope\": \"\",\n \"applicationLogging\": {}\n }\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"keyValueDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"multiModalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"relationalDatabaseService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"anomalyDetections\": [\n {}\n ],\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"malwareProtection\": {},\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"fileStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"objectStorageService\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"ips\": [],\n \"labels\": {},\n \"name\": \"\",\n \"ports\": [],\n \"raw\": \"\",\n \"activityLogging\": {},\n \"authenticity\": {},\n \"computeIds\": [],\n \"geoLocation\": {},\n \"httpEndpoint\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"serviceMetadataDocumentId\": \"\",\n \"storageIds\": [],\n \"transportEncryption\": {},\n \"usageStatistics\": {}\n },\n \"virtualNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"virtualSubNetwork\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"passwordPolicy\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"resourceGroup\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"geoLocation\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"usageStatistics\": {}\n },\n \"blockStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {\n \"customerKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n },\n \"managedKeyEncryption\": {\n \"algorithm\": \"\",\n \"enabled\": false,\n \"keyUrl\": \"\"\n }\n },\n \"backups\": [\n {\n \"enabled\": false,\n \"interval\": \"\",\n \"retentionPeriod\": \"\",\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n ],\n \"geoLocation\": {},\n \"immutability\": {\n \"enabled\": false\n },\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"databaseStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"fileStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"objectStorage\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"internetAccessibleEndpoint\": false,\n \"labels\": {},\n \"name\": \"\",\n \"publicAccess\": false,\n \"raw\": \"\",\n \"activityLogging\": {},\n \"atRestEncryption\": {},\n \"backups\": [\n {}\n ],\n \"geoLocation\": {},\n \"immutability\": {},\n \"loggings\": [\n {}\n ],\n \"redundancies\": [\n {}\n ],\n \"parentId\": \"\",\n \"resourceLogging\": {},\n \"usageStatistics\": {}\n },\n \"codeNotebook\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeIds\": [],\n \"dataLocation\": {\n \"localDataLocation\": {\n \"path\": \"\",\n \"atRestEncryption\": {},\n \"storageId\": \"\"\n },\n \"remoteDataLocation\": {\n \"path\": \"\",\n \"authenticity\": {},\n \"storageId\": \"\",\n \"transportEncryption\": {}\n }\n },\n \"documentChecksums\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {\n \"message\": \"\"\n }\n ]\n }\n ],\n \"documentSignatures\": [\n {\n \"algorithm\": \"\",\n \"errors\": [\n {}\n ]\n }\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {\n \"format\": \"\",\n \"schemaUrl\": \"\",\n \"errors\": [\n {}\n ]\n },\n \"securityFeatures\": [\n {\n \"anomalyDetection\": {},\n \"activityLogging\": {},\n \"applicationLogging\": {},\n \"bootLogging\": {},\n \"osLogging\": {},\n \"resourceLogging\": {},\n \"malwareProtection\": {},\n \"usageStatistics\": {},\n \"certificateBasedAuthentication\": {},\n \"tokenBasedAuthentication\": {},\n \"multiFactorAuthentiation\": {},\n \"noAuthentication\": {},\n \"otpBasedAuthentication\": {},\n \"passwordBasedAuthentication\": {},\n \"singleSignOn\": {},\n \"abac\": {},\n \"l3Firewall\": {},\n \"webApplicationFirewall\": {},\n \"rbac\": {},\n \"backup\": {},\n \"dDoSProtection\": {},\n \"geoLocation\": {},\n \"geoRedundancy\": {},\n \"localRedundancy\": {},\n \"zoneRedundancy\": {},\n \"customerKeyEncryption\": {},\n \"managedKeyEncryption\": {},\n \"encryptionInUse\": {},\n \"transportEncryption\": {},\n \"localAttestation\": {\n \"enabled\": false\n },\n \"remoteAttestation\": {},\n \"automaticUpdates\": {},\n \"documentChecksum\": {},\n \"immutability\": {},\n \"documentSignature\": {},\n \"explainableResults\": {},\n \"robustnessScore\": {}\n }\n ]\n },\n \"genericDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"policyDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"securityAdvisoryDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ],\n \"vulnerabilities\": [\n {\n \"cve\": \"\",\n \"cwe\": [],\n \"description\": \"\",\n \"name\": \"\",\n \"url\": \"\"\n }\n ]\n },\n \"serviceMetadataDocument\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"filetype\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"dataLocation\": {},\n \"documentChecksums\": [\n {}\n ],\n \"documentSignatures\": [\n {}\n ],\n \"parentId\": \"\",\n \"schemaValidation\": {},\n \"securityFeatures\": [\n {}\n ]\n },\n \"machineLearningDataset\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"size\": 0,\n \"type\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\"\n },\n \"machineLearningModel\": {\n \"advRobustness\": \"\",\n \"creationTime\": \"\",\n \"description\": \"\",\n \"explainability\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"poisonLevel\": \"\",\n \"privacyLabel\": \"\",\n \"privacyLevel\": \"\",\n \"raw\": \"\",\n \"robustness\": \"\",\n \"dataLocation\": {},\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"awarenessTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"securityTraining\": {\n \"annualUpdateCompleted\": false,\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"successfullyCompletedPercentage\": false,\n \"parentId\": \"\"\n },\n \"application\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"programmingLanguage\": \"\",\n \"programmingVersion\": \"\",\n \"raw\": \"\",\n \"translationUnits\": [],\n \"automaticUpdates\": {},\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"computeId\": \"\",\n \"functionalities\": [\n {\n \"cipherSuite\": {},\n \"codeRegion\": {\n \"code\": \"\",\n \"endColumn\": 0,\n \"endLine\": 0,\n \"file\": \"\",\n \"startColumn\": 0,\n \"startLine\": 0\n },\n \"localDataLocation\": {},\n \"remoteDataLocation\": {},\n \"error\": {},\n \"httpEndpoint\": {},\n \"httpRequestHandler\": {\n \"path\": \"\",\n \"applicationId\": \"\",\n \"httpEndpoints\": [\n {}\n ]\n },\n \"decryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"encryption\": {\n \"algorithm\": \"\",\n \"codeRegion\": {}\n },\n \"cryptographicHash\": {\n \"algorithm\": \"\",\n \"usesSalt\": false,\n \"codeRegion\": {}\n },\n \"databaseConnect\": {\n \"calls\": [],\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"databaseQuery\": {\n \"calls\": [],\n \"modify\": false,\n \"codeRegion\": {},\n \"databaseServiceIds\": [],\n \"databaseStorageId\": \"\"\n },\n \"httpRequest\": {\n \"call\": \"\",\n \"reqBody\": \"\",\n \"codeRegion\": {},\n \"httpEndpoints\": [\n {}\n ]\n },\n \"logOperation\": {\n \"call\": \"\",\n \"value\": \"\",\n \"codeRegion\": {},\n \"logging\": {}\n },\n \"objectStorageRequest\": {\n \"source\": \"\",\n \"codeRegion\": {},\n \"objectStorageIds\": []\n },\n \"schemaValidation\": {},\n \"securityAdvisoryFeed\": {},\n \"vulnerability\": {}\n }\n ],\n \"libraryIds\": [],\n \"parentId\": \"\"\n },\n \"library\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"libraryIds\": [],\n \"parentId\": \"\",\n \"vulnerabilities\": [\n {}\n ]\n },\n \"sourceCodeFile\": {\n \"creationTime\": \"\",\n \"description\": \"\",\n \"id\": \"\",\n \"labels\": {},\n \"name\": \"\",\n \"raw\": \"\",\n \"codeModuleIds\": [],\n \"codeRepositoryId\": \"\",\n \"functionalities\": [\n {}\n ],\n \"parentId\": \"\"\n }\n }\n}"
end
puts response.status
puts response.body
use serde_json::json;
use reqwest;
#[tokio::main]
pub async fn main() {
let url = "{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id";
let payload = json!({"resource": json!({
"account": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({"region": ""}),
"loggings": (
json!({
"activityLogging": json!({
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": ()
}),
"applicationLogging": json!({
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": ()
}),
"bootLogging": json!({
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": ()
}),
"osLogging": json!({
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": ()
}),
"resourceLogging": json!({
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": ()
})
})
),
"redundancies": (
json!({
"geoRedundancy": json!({"geoLocations": (json!({}))}),
"localRedundancy": json!({"geoLocations": (json!({}))}),
"zoneRedundancy": json!({"geoLocations": (json!({}))})
})
),
"parentId": "",
"usageStatistics": json!({"apiHitsPerMonth": 0})
}),
"job": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"workflow": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"codeRepository": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"qpu": json!({
"creationTime": "",
"description": "",
"errorCorrectionEnabled": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"oneQubitGateErrorRate": "",
"raw": "",
"spamErrorRate": "",
"twoQubitGateErrorRate": "",
"encryptionInUse": json!({"enabled": false}),
"geoLocation": json!({}),
"loggings": (json!({})),
"networkInterfaceIds": (),
"redundancies": (json!({})),
"remoteAttestation": json!({
"creationTime": "",
"enabled": false,
"status": false
}),
"parentId": "",
"resourceLogging": json!({}),
"usageStatistics": json!({})
}),
"container": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"encryptionInUse": json!({}),
"geoLocation": json!({}),
"imageId": "",
"loggings": (json!({})),
"networkInterfaceIds": (),
"redundancies": (json!({})),
"remoteAttestation": json!({}),
"parentId": "",
"resourceLogging": json!({}),
"usageStatistics": json!({})
}),
"function": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"runtimeLanguage": "",
"runtimeVersion": "",
"encryptionInUse": json!({}),
"geoLocation": json!({}),
"loggings": (json!({})),
"networkInterfaceIds": (),
"redundancies": (json!({})),
"remoteAttestation": json!({}),
"parentId": "",
"resourceLogging": json!({}),
"usageStatistics": json!({})
}),
"virtualMachine": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"activityLogging": json!({}),
"automaticUpdates": json!({
"enabled": false,
"interval": "",
"securityOnly": false
}),
"blockStorageIds": (),
"bootLogging": json!({}),
"encryptionInUse": json!({}),
"geoLocation": json!({}),
"loggings": (json!({})),
"malwareProtection": json!({
"durationSinceActive": "",
"enabled": false,
"numberOfThreatsFound": 0,
"applicationLogging": json!({})
}),
"networkInterfaceIds": (),
"osLogging": json!({}),
"redundancies": (json!({})),
"remoteAttestation": json!({}),
"parentId": "",
"resourceLogging": json!({}),
"usageStatistics": json!({})
}),
"containerOrchestration": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"managementUrl": "",
"name": "",
"raw": "",
"containerIds": (),
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"resourceLogging": json!({}),
"usageStatistics": json!({})
}),
"containerRegistry": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"certificate": json!({
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": json!({}),
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": json!({}),
"infrastructureId": "",
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"key": json!({
"algorithm": "",
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"keySize": 0,
"labels": json!({}),
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": json!({}),
"infrastructureId": "",
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"secret": json!({
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": json!({}),
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": json!({}),
"infrastructureId": "",
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"identity": json!({
"activated": false,
"creationTime": "",
"description": "",
"disablePasswordPolicy": false,
"enforceMfa": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"lastActivity": "",
"loginDefenderEnabled": false,
"name": "",
"privileged": false,
"raw": "",
"authenticity": json!({
"certificateBasedAuthentication": json!({
"contextIsChecked": false,
"enabled": false
}),
"tokenBasedAuthentication": json!({
"contextIsChecked": false,
"enabled": false,
"enforced": false
}),
"multiFactorAuthentiation": json!({
"contextIsChecked": false,
"authenticities": ()
}),
"noAuthentication": json!({"contextIsChecked": false}),
"otpBasedAuthentication": json!({
"activated": false,
"contextIsChecked": false
}),
"passwordBasedAuthentication": json!({
"activated": false,
"contextIsChecked": false
}),
"singleSignOn": json!({
"contextIsChecked": false,
"enabled": false
})
}),
"authorization": json!({
"abac": json!({}),
"l3Firewall": json!({
"enabled": false,
"inbound": false,
"restrictedPorts": ""
}),
"webApplicationFirewall": json!({"enabled": false}),
"rbac": json!({
"broadAssignments": "",
"mixedDuties": ""
})
}),
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"roleAssignment": json!({
"activated": false,
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"authenticity": json!({}),
"authorization": json!({}),
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"containerImage": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"vmImage": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"deviceProvisioningService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"messagingHub": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"keyVault": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"credentialIds": (),
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"networkInterface": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"accessRestriction": json!({
"l3Firewall": json!({}),
"webApplicationFirewall": json!({})
}),
"geoLocation": json!({}),
"loggings": (json!({})),
"networkServiceId": "",
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"networkSecurityGroup": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"functionService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"authenticity": json!({}),
"computeIds": (),
"functionIds": (),
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": json!({
"enabled": false,
"enforced": false,
"protocol": "",
"protocolVersion": "",
"cipherSuites": (
json!({
"authenticationMechanism": "",
"keyExchangeAlgorithm": "",
"macAlgorithm": "",
"sessionCipher": ""
})
)
}),
"usageStatistics": json!({})
}),
"genericNetworkService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"authenticity": json!({}),
"computeIds": (),
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": json!({}),
"usageStatistics": json!({})
}),
"loadBalancer": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"url": "",
"accessRestriction": json!({}),
"authenticity": json!({}),
"computeIds": (),
"geoLocation": json!({}),
"httpEndpoints": (
json!({
"handler": "",
"method": "",
"path": "",
"url": "",
"authenticity": json!({}),
"transportEncryption": json!({})
})
),
"loggings": (json!({})),
"networkServiceIds": (),
"redundancies": (json!({})),
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": json!({}),
"usageStatistics": json!({})
}),
"loggingService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"authenticity": json!({}),
"computeIds": (),
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": (),
"transportEncryption": json!({}),
"usageStatistics": json!({})
}),
"machineLearningService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"authenticity": json!({}),
"computeIds": (),
"geoLocation": json!({}),
"loggings": (json!({})),
"machineLearningIds": (),
"redundancies": (json!({})),
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": (),
"transportEncryption": json!({}),
"usageStatistics": json!({})
}),
"securityAdvisoryService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"authenticity": json!({}),
"computeIds": (),
"geoLocation": json!({}),
"keyIds": (),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"securityAdvisoryFeeds": (json!({"securityAdvisoryDocumentIds": ()})),
"serviceMetadataDocumentId": "",
"transportEncryption": json!({}),
"usageStatistics": json!({})
}),
"documentDatabaseService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"activityLogging": json!({}),
"anomalyDetections": (
json!({
"enabled": false,
"scope": "",
"applicationLogging": json!({})
})
),
"authenticity": json!({}),
"computeIds": (),
"geoLocation": json!({}),
"httpEndpoint": json!({}),
"loggings": (json!({})),
"malwareProtection": json!({}),
"redundancies": (json!({})),
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": (),
"transportEncryption": json!({}),
"usageStatistics": json!({})
}),
"keyValueDatabaseService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"activityLogging": json!({}),
"anomalyDetections": (json!({})),
"authenticity": json!({}),
"computeIds": (),
"geoLocation": json!({}),
"httpEndpoint": json!({}),
"loggings": (json!({})),
"malwareProtection": json!({}),
"redundancies": (json!({})),
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": (),
"transportEncryption": json!({}),
"usageStatistics": json!({})
}),
"multiModalDatabaseService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"activityLogging": json!({}),
"anomalyDetections": (json!({})),
"authenticity": json!({}),
"computeIds": (),
"geoLocation": json!({}),
"httpEndpoint": json!({}),
"loggings": (json!({})),
"malwareProtection": json!({}),
"redundancies": (json!({})),
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": (),
"transportEncryption": json!({}),
"usageStatistics": json!({})
}),
"relationalDatabaseService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"activityLogging": json!({}),
"anomalyDetections": (json!({})),
"authenticity": json!({}),
"computeIds": (),
"geoLocation": json!({}),
"httpEndpoint": json!({}),
"loggings": (json!({})),
"malwareProtection": json!({}),
"redundancies": (json!({})),
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": (),
"transportEncryption": json!({}),
"usageStatistics": json!({})
}),
"fileStorageService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"activityLogging": json!({}),
"authenticity": json!({}),
"computeIds": (),
"geoLocation": json!({}),
"httpEndpoint": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": (),
"transportEncryption": json!({}),
"usageStatistics": json!({})
}),
"objectStorageService": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": (),
"labels": json!({}),
"name": "",
"ports": (),
"raw": "",
"activityLogging": json!({}),
"authenticity": json!({}),
"computeIds": (),
"geoLocation": json!({}),
"httpEndpoint": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": (),
"transportEncryption": json!({}),
"usageStatistics": json!({})
}),
"virtualNetwork": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"virtualSubNetwork": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"passwordPolicy": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"resourceGroup": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"geoLocation": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"usageStatistics": json!({})
}),
"blockStorage": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"activityLogging": json!({}),
"atRestEncryption": json!({
"customerKeyEncryption": json!({
"algorithm": "",
"enabled": false,
"keyUrl": ""
}),
"managedKeyEncryption": json!({
"algorithm": "",
"enabled": false,
"keyUrl": ""
})
}),
"backups": (
json!({
"enabled": false,
"interval": "",
"retentionPeriod": "",
"storageId": "",
"transportEncryption": json!({})
})
),
"geoLocation": json!({}),
"immutability": json!({"enabled": false}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"resourceLogging": json!({}),
"usageStatistics": json!({})
}),
"databaseStorage": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"raw": "",
"activityLogging": json!({}),
"atRestEncryption": json!({}),
"backups": (json!({})),
"geoLocation": json!({}),
"immutability": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"resourceLogging": json!({}),
"usageStatistics": json!({})
}),
"fileStorage": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": json!({}),
"atRestEncryption": json!({}),
"backups": (json!({})),
"geoLocation": json!({}),
"immutability": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"resourceLogging": json!({}),
"usageStatistics": json!({})
}),
"objectStorage": json!({
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": json!({}),
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": json!({}),
"atRestEncryption": json!({}),
"backups": (json!({})),
"geoLocation": json!({}),
"immutability": json!({}),
"loggings": (json!({})),
"redundancies": (json!({})),
"parentId": "",
"resourceLogging": json!({}),
"usageStatistics": json!({})
}),
"codeNotebook": json!({
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": json!({}),
"name": "",
"raw": "",
"codeIds": (),
"dataLocation": json!({
"localDataLocation": json!({
"path": "",
"atRestEncryption": json!({}),
"storageId": ""
}),
"remoteDataLocation": json!({
"path": "",
"authenticity": json!({}),
"storageId": "",
"transportEncryption": json!({})
})
}),
"documentChecksums": (
json!({
"algorithm": "",
"errors": (json!({"message": ""}))
})
),
"documentSignatures": (
json!({
"algorithm": "",
"errors": (json!({}))
})
),
"parentId": "",
"schemaValidation": json!({
"format": "",
"schemaUrl": "",
"errors": (json!({}))
}),
"securityFeatures": (
json!({
"anomalyDetection": json!({}),
"activityLogging": json!({}),
"applicationLogging": json!({}),
"bootLogging": json!({}),
"osLogging": json!({}),
"resourceLogging": json!({}),
"malwareProtection": json!({}),
"usageStatistics": json!({}),
"certificateBasedAuthentication": json!({}),
"tokenBasedAuthentication": json!({}),
"multiFactorAuthentiation": json!({}),
"noAuthentication": json!({}),
"otpBasedAuthentication": json!({}),
"passwordBasedAuthentication": json!({}),
"singleSignOn": json!({}),
"abac": json!({}),
"l3Firewall": json!({}),
"webApplicationFirewall": json!({}),
"rbac": json!({}),
"backup": json!({}),
"dDoSProtection": json!({}),
"geoLocation": json!({}),
"geoRedundancy": json!({}),
"localRedundancy": json!({}),
"zoneRedundancy": json!({}),
"customerKeyEncryption": json!({}),
"managedKeyEncryption": json!({}),
"encryptionInUse": json!({}),
"transportEncryption": json!({}),
"localAttestation": json!({"enabled": false}),
"remoteAttestation": json!({}),
"automaticUpdates": json!({}),
"documentChecksum": json!({}),
"immutability": json!({}),
"documentSignature": json!({}),
"explainableResults": json!({}),
"robustnessScore": json!({})
})
)
}),
"genericDocument": json!({
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": json!({}),
"name": "",
"raw": "",
"dataLocation": json!({}),
"documentChecksums": (json!({})),
"documentSignatures": (json!({})),
"parentId": "",
"schemaValidation": json!({}),
"securityFeatures": (json!({}))
}),
"policyDocument": json!({
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": json!({}),
"name": "",
"raw": "",
"dataLocation": json!({}),
"documentChecksums": (json!({})),
"documentSignatures": (json!({})),
"parentId": "",
"schemaValidation": json!({}),
"securityFeatures": (json!({}))
}),
"securityAdvisoryDocument": json!({
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": json!({}),
"name": "",
"raw": "",
"dataLocation": json!({}),
"documentChecksums": (json!({})),
"documentSignatures": (json!({})),
"parentId": "",
"schemaValidation": json!({}),
"securityFeatures": (json!({})),
"vulnerabilities": (
json!({
"cve": "",
"cwe": (),
"description": "",
"name": "",
"url": ""
})
)
}),
"serviceMetadataDocument": json!({
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": json!({}),
"name": "",
"raw": "",
"dataLocation": json!({}),
"documentChecksums": (json!({})),
"documentSignatures": (json!({})),
"parentId": "",
"schemaValidation": json!({}),
"securityFeatures": (json!({}))
}),
"machineLearningDataset": json!({
"creationTime": "",
"description": "",
"id": "",
"labels": json!({}),
"name": "",
"raw": "",
"size": 0,
"type": "",
"dataLocation": json!({}),
"parentId": ""
}),
"machineLearningModel": json!({
"advRobustness": "",
"creationTime": "",
"description": "",
"explainability": "",
"id": "",
"labels": json!({}),
"name": "",
"poisonLevel": "",
"privacyLabel": "",
"privacyLevel": "",
"raw": "",
"robustness": "",
"dataLocation": json!({}),
"parentId": "",
"vulnerabilities": (json!({}))
}),
"awarenessTraining": json!({
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": json!({}),
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
}),
"securityTraining": json!({
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": json!({}),
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
}),
"application": json!({
"creationTime": "",
"description": "",
"id": "",
"labels": json!({}),
"name": "",
"programmingLanguage": "",
"programmingVersion": "",
"raw": "",
"translationUnits": (),
"automaticUpdates": json!({}),
"codeModuleIds": (),
"codeRepositoryId": "",
"computeId": "",
"functionalities": (
json!({
"cipherSuite": json!({}),
"codeRegion": json!({
"code": "",
"endColumn": 0,
"endLine": 0,
"file": "",
"startColumn": 0,
"startLine": 0
}),
"localDataLocation": json!({}),
"remoteDataLocation": json!({}),
"error": json!({}),
"httpEndpoint": json!({}),
"httpRequestHandler": json!({
"path": "",
"applicationId": "",
"httpEndpoints": (json!({}))
}),
"decryption": json!({
"algorithm": "",
"codeRegion": json!({})
}),
"encryption": json!({
"algorithm": "",
"codeRegion": json!({})
}),
"cryptographicHash": json!({
"algorithm": "",
"usesSalt": false,
"codeRegion": json!({})
}),
"databaseConnect": json!({
"calls": (),
"codeRegion": json!({}),
"databaseServiceIds": (),
"databaseStorageId": ""
}),
"databaseQuery": json!({
"calls": (),
"modify": false,
"codeRegion": json!({}),
"databaseServiceIds": (),
"databaseStorageId": ""
}),
"httpRequest": json!({
"call": "",
"reqBody": "",
"codeRegion": json!({}),
"httpEndpoints": (json!({}))
}),
"logOperation": json!({
"call": "",
"value": "",
"codeRegion": json!({}),
"logging": json!({})
}),
"objectStorageRequest": json!({
"source": "",
"codeRegion": json!({}),
"objectStorageIds": ()
}),
"schemaValidation": json!({}),
"securityAdvisoryFeed": json!({}),
"vulnerability": json!({})
})
),
"libraryIds": (),
"parentId": ""
}),
"library": json!({
"creationTime": "",
"description": "",
"id": "",
"labels": json!({}),
"name": "",
"raw": "",
"codeModuleIds": (),
"codeRepositoryId": "",
"functionalities": (json!({})),
"libraryIds": (),
"parentId": "",
"vulnerabilities": (json!({}))
}),
"sourceCodeFile": json!({
"creationTime": "",
"description": "",
"id": "",
"labels": json!({}),
"name": "",
"raw": "",
"codeModuleIds": (),
"codeRepositoryId": "",
"functionalities": (json!({})),
"parentId": ""
})
})});
let mut headers = reqwest::header::HeaderMap::new();
headers.insert("content-type", "application/json".parse().unwrap());
let client = reqwest::Client::new();
let response = client.post(url)
.headers(headers)
.json(&payload)
.send()
.await;
let results = response.unwrap()
.json::()
.await
.unwrap();
dbg!(results);
}
curl --request POST \
--url {{baseUrl}}/v1experimental/evidence_store/resources/:resource.id \
--header 'content-type: application/json' \
--data '{
"resource": {
"account": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {
"region": ""
},
"loggings": [
{
"activityLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"applicationLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"bootLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"osLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"resourceLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
}
}
],
"redundancies": [
{
"geoRedundancy": {
"geoLocations": [
{}
]
},
"localRedundancy": {
"geoLocations": [
{}
]
},
"zoneRedundancy": {
"geoLocations": [
{}
]
}
}
],
"parentId": "",
"usageStatistics": {
"apiHitsPerMonth": 0
}
},
"job": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"workflow": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"codeRepository": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"qpu": {
"creationTime": "",
"description": "",
"errorCorrectionEnabled": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"oneQubitGateErrorRate": "",
"raw": "",
"spamErrorRate": "",
"twoQubitGateErrorRate": "",
"encryptionInUse": {
"enabled": false
},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {
"creationTime": "",
"enabled": false,
"status": false
},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"container": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"encryptionInUse": {},
"geoLocation": {},
"imageId": "",
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"function": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"runtimeLanguage": "",
"runtimeVersion": "",
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"virtualMachine": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"automaticUpdates": {
"enabled": false,
"interval": "",
"securityOnly": false
},
"blockStorageIds": [],
"bootLogging": {},
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"malwareProtection": {
"durationSinceActive": "",
"enabled": false,
"numberOfThreatsFound": 0,
"applicationLogging": {}
},
"networkInterfaceIds": [],
"osLogging": {},
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerOrchestration": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"managementUrl": "",
"name": "",
"raw": "",
"containerIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerRegistry": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"certificate": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"key": {
"algorithm": "",
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"keySize": 0,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"secret": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"identity": {
"activated": false,
"creationTime": "",
"description": "",
"disablePasswordPolicy": false,
"enforceMfa": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"lastActivity": "",
"loginDefenderEnabled": false,
"name": "",
"privileged": false,
"raw": "",
"authenticity": {
"certificateBasedAuthentication": {
"contextIsChecked": false,
"enabled": false
},
"tokenBasedAuthentication": {
"contextIsChecked": false,
"enabled": false,
"enforced": false
},
"multiFactorAuthentiation": {
"contextIsChecked": false,
"authenticities": []
},
"noAuthentication": {
"contextIsChecked": false
},
"otpBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"passwordBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"singleSignOn": {
"contextIsChecked": false,
"enabled": false
}
},
"authorization": {
"abac": {},
"l3Firewall": {
"enabled": false,
"inbound": false,
"restrictedPorts": ""
},
"webApplicationFirewall": {
"enabled": false
},
"rbac": {
"broadAssignments": "",
"mixedDuties": ""
}
},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"roleAssignment": {
"activated": false,
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"authenticity": {},
"authorization": {},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"containerImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"vmImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"deviceProvisioningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"messagingHub": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"keyVault": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"credentialIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkInterface": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"accessRestriction": {
"l3Firewall": {},
"webApplicationFirewall": {}
},
"geoLocation": {},
"loggings": [
{}
],
"networkServiceId": "",
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkSecurityGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"functionService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"functionIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {
"enabled": false,
"enforced": false,
"protocol": "",
"protocolVersion": "",
"cipherSuites": [
{
"authenticationMechanism": "",
"keyExchangeAlgorithm": "",
"macAlgorithm": "",
"sessionCipher": ""
}
]
},
"usageStatistics": {}
},
"genericNetworkService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loadBalancer": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"url": "",
"accessRestriction": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoints": [
{
"handler": "",
"method": "",
"path": "",
"url": "",
"authenticity": {},
"transportEncryption": {}
}
],
"loggings": [
{}
],
"networkServiceIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loggingService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"machineLearningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"machineLearningIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"securityAdvisoryService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"keyIds": [],
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"securityAdvisoryFeeds": [
{
"securityAdvisoryDocumentIds": []
}
],
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"documentDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{
"enabled": false,
"scope": "",
"applicationLogging": {}
}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"keyValueDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"multiModalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"relationalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"fileStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"objectStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"virtualNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"virtualSubNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"passwordPolicy": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"resourceGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"blockStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {
"customerKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
},
"managedKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
}
},
"backups": [
{
"enabled": false,
"interval": "",
"retentionPeriod": "",
"storageId": "",
"transportEncryption": {}
}
],
"geoLocation": {},
"immutability": {
"enabled": false
},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"databaseStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"fileStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"objectStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"codeNotebook": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeIds": [],
"dataLocation": {
"localDataLocation": {
"path": "",
"atRestEncryption": {},
"storageId": ""
},
"remoteDataLocation": {
"path": "",
"authenticity": {},
"storageId": "",
"transportEncryption": {}
}
},
"documentChecksums": [
{
"algorithm": "",
"errors": [
{
"message": ""
}
]
}
],
"documentSignatures": [
{
"algorithm": "",
"errors": [
{}
]
}
],
"parentId": "",
"schemaValidation": {
"format": "",
"schemaUrl": "",
"errors": [
{}
]
},
"securityFeatures": [
{
"anomalyDetection": {},
"activityLogging": {},
"applicationLogging": {},
"bootLogging": {},
"osLogging": {},
"resourceLogging": {},
"malwareProtection": {},
"usageStatistics": {},
"certificateBasedAuthentication": {},
"tokenBasedAuthentication": {},
"multiFactorAuthentiation": {},
"noAuthentication": {},
"otpBasedAuthentication": {},
"passwordBasedAuthentication": {},
"singleSignOn": {},
"abac": {},
"l3Firewall": {},
"webApplicationFirewall": {},
"rbac": {},
"backup": {},
"dDoSProtection": {},
"geoLocation": {},
"geoRedundancy": {},
"localRedundancy": {},
"zoneRedundancy": {},
"customerKeyEncryption": {},
"managedKeyEncryption": {},
"encryptionInUse": {},
"transportEncryption": {},
"localAttestation": {
"enabled": false
},
"remoteAttestation": {},
"automaticUpdates": {},
"documentChecksum": {},
"immutability": {},
"documentSignature": {},
"explainableResults": {},
"robustnessScore": {}
}
]
},
"genericDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"policyDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"securityAdvisoryDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
],
"vulnerabilities": [
{
"cve": "",
"cwe": [],
"description": "",
"name": "",
"url": ""
}
]
},
"serviceMetadataDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"machineLearningDataset": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"size": 0,
"type": "",
"dataLocation": {},
"parentId": ""
},
"machineLearningModel": {
"advRobustness": "",
"creationTime": "",
"description": "",
"explainability": "",
"id": "",
"labels": {},
"name": "",
"poisonLevel": "",
"privacyLabel": "",
"privacyLevel": "",
"raw": "",
"robustness": "",
"dataLocation": {},
"parentId": "",
"vulnerabilities": [
{}
]
},
"awarenessTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"securityTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"application": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"programmingLanguage": "",
"programmingVersion": "",
"raw": "",
"translationUnits": [],
"automaticUpdates": {},
"codeModuleIds": [],
"codeRepositoryId": "",
"computeId": "",
"functionalities": [
{
"cipherSuite": {},
"codeRegion": {
"code": "",
"endColumn": 0,
"endLine": 0,
"file": "",
"startColumn": 0,
"startLine": 0
},
"localDataLocation": {},
"remoteDataLocation": {},
"error": {},
"httpEndpoint": {},
"httpRequestHandler": {
"path": "",
"applicationId": "",
"httpEndpoints": [
{}
]
},
"decryption": {
"algorithm": "",
"codeRegion": {}
},
"encryption": {
"algorithm": "",
"codeRegion": {}
},
"cryptographicHash": {
"algorithm": "",
"usesSalt": false,
"codeRegion": {}
},
"databaseConnect": {
"calls": [],
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"databaseQuery": {
"calls": [],
"modify": false,
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"httpRequest": {
"call": "",
"reqBody": "",
"codeRegion": {},
"httpEndpoints": [
{}
]
},
"logOperation": {
"call": "",
"value": "",
"codeRegion": {},
"logging": {}
},
"objectStorageRequest": {
"source": "",
"codeRegion": {},
"objectStorageIds": []
},
"schemaValidation": {},
"securityAdvisoryFeed": {},
"vulnerability": {}
}
],
"libraryIds": [],
"parentId": ""
},
"library": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"libraryIds": [],
"parentId": "",
"vulnerabilities": [
{}
]
},
"sourceCodeFile": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"parentId": ""
}
}
}'
echo '{
"resource": {
"account": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {
"region": ""
},
"loggings": [
{
"activityLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"applicationLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"bootLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"osLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
},
"resourceLogging": {
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
}
}
],
"redundancies": [
{
"geoRedundancy": {
"geoLocations": [
{}
]
},
"localRedundancy": {
"geoLocations": [
{}
]
},
"zoneRedundancy": {
"geoLocations": [
{}
]
}
}
],
"parentId": "",
"usageStatistics": {
"apiHitsPerMonth": 0
}
},
"job": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"workflow": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"codeRepository": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"qpu": {
"creationTime": "",
"description": "",
"errorCorrectionEnabled": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"oneQubitGateErrorRate": "",
"raw": "",
"spamErrorRate": "",
"twoQubitGateErrorRate": "",
"encryptionInUse": {
"enabled": false
},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {
"creationTime": "",
"enabled": false,
"status": false
},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"container": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"encryptionInUse": {},
"geoLocation": {},
"imageId": "",
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"function": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"runtimeLanguage": "",
"runtimeVersion": "",
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"networkInterfaceIds": [],
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"virtualMachine": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"automaticUpdates": {
"enabled": false,
"interval": "",
"securityOnly": false
},
"blockStorageIds": [],
"bootLogging": {},
"encryptionInUse": {},
"geoLocation": {},
"loggings": [
{}
],
"malwareProtection": {
"durationSinceActive": "",
"enabled": false,
"numberOfThreatsFound": 0,
"applicationLogging": {}
},
"networkInterfaceIds": [],
"osLogging": {},
"redundancies": [
{}
],
"remoteAttestation": {},
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerOrchestration": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"managementUrl": "",
"name": "",
"raw": "",
"containerIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"containerRegistry": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"certificate": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"key": {
"algorithm": "",
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"keySize": 0,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"secret": {
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": {},
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": {},
"infrastructureId": "",
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"identity": {
"activated": false,
"creationTime": "",
"description": "",
"disablePasswordPolicy": false,
"enforceMfa": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"lastActivity": "",
"loginDefenderEnabled": false,
"name": "",
"privileged": false,
"raw": "",
"authenticity": {
"certificateBasedAuthentication": {
"contextIsChecked": false,
"enabled": false
},
"tokenBasedAuthentication": {
"contextIsChecked": false,
"enabled": false,
"enforced": false
},
"multiFactorAuthentiation": {
"contextIsChecked": false,
"authenticities": []
},
"noAuthentication": {
"contextIsChecked": false
},
"otpBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"passwordBasedAuthentication": {
"activated": false,
"contextIsChecked": false
},
"singleSignOn": {
"contextIsChecked": false,
"enabled": false
}
},
"authorization": {
"abac": {},
"l3Firewall": {
"enabled": false,
"inbound": false,
"restrictedPorts": ""
},
"webApplicationFirewall": {
"enabled": false
},
"rbac": {
"broadAssignments": "",
"mixedDuties": ""
}
},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"roleAssignment": {
"activated": false,
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"authenticity": {},
"authorization": {},
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"containerImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"vmImage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"deviceProvisioningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"messagingHub": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"keyVault": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"credentialIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkInterface": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"accessRestriction": {
"l3Firewall": {},
"webApplicationFirewall": {}
},
"geoLocation": {},
"loggings": [
{}
],
"networkServiceId": "",
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"networkSecurityGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"functionService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"functionIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {
"enabled": false,
"enforced": false,
"protocol": "",
"protocolVersion": "",
"cipherSuites": [
{
"authenticationMechanism": "",
"keyExchangeAlgorithm": "",
"macAlgorithm": "",
"sessionCipher": ""
}
]
},
"usageStatistics": {}
},
"genericNetworkService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loadBalancer": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"url": "",
"accessRestriction": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoints": [
{
"handler": "",
"method": "",
"path": "",
"url": "",
"authenticity": {},
"transportEncryption": {}
}
],
"loggings": [
{}
],
"networkServiceIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"loggingService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"machineLearningService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"loggings": [
{}
],
"machineLearningIds": [],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"securityAdvisoryService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"keyIds": [],
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"securityAdvisoryFeeds": [
{
"securityAdvisoryDocumentIds": []
}
],
"serviceMetadataDocumentId": "",
"transportEncryption": {},
"usageStatistics": {}
},
"documentDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{
"enabled": false,
"scope": "",
"applicationLogging": {}
}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"keyValueDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"multiModalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"relationalDatabaseService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"anomalyDetections": [
{}
],
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"malwareProtection": {},
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"fileStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"objectStorageService": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": {},
"name": "",
"ports": [],
"raw": "",
"activityLogging": {},
"authenticity": {},
"computeIds": [],
"geoLocation": {},
"httpEndpoint": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": {},
"usageStatistics": {}
},
"virtualNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"virtualSubNetwork": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"passwordPolicy": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"resourceGroup": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"geoLocation": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"usageStatistics": {}
},
"blockStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {
"customerKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
},
"managedKeyEncryption": {
"algorithm": "",
"enabled": false,
"keyUrl": ""
}
},
"backups": [
{
"enabled": false,
"interval": "",
"retentionPeriod": "",
"storageId": "",
"transportEncryption": {}
}
],
"geoLocation": {},
"immutability": {
"enabled": false
},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"databaseStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"fileStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"objectStorage": {
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": {},
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": {},
"atRestEncryption": {},
"backups": [
{}
],
"geoLocation": {},
"immutability": {},
"loggings": [
{}
],
"redundancies": [
{}
],
"parentId": "",
"resourceLogging": {},
"usageStatistics": {}
},
"codeNotebook": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeIds": [],
"dataLocation": {
"localDataLocation": {
"path": "",
"atRestEncryption": {},
"storageId": ""
},
"remoteDataLocation": {
"path": "",
"authenticity": {},
"storageId": "",
"transportEncryption": {}
}
},
"documentChecksums": [
{
"algorithm": "",
"errors": [
{
"message": ""
}
]
}
],
"documentSignatures": [
{
"algorithm": "",
"errors": [
{}
]
}
],
"parentId": "",
"schemaValidation": {
"format": "",
"schemaUrl": "",
"errors": [
{}
]
},
"securityFeatures": [
{
"anomalyDetection": {},
"activityLogging": {},
"applicationLogging": {},
"bootLogging": {},
"osLogging": {},
"resourceLogging": {},
"malwareProtection": {},
"usageStatistics": {},
"certificateBasedAuthentication": {},
"tokenBasedAuthentication": {},
"multiFactorAuthentiation": {},
"noAuthentication": {},
"otpBasedAuthentication": {},
"passwordBasedAuthentication": {},
"singleSignOn": {},
"abac": {},
"l3Firewall": {},
"webApplicationFirewall": {},
"rbac": {},
"backup": {},
"dDoSProtection": {},
"geoLocation": {},
"geoRedundancy": {},
"localRedundancy": {},
"zoneRedundancy": {},
"customerKeyEncryption": {},
"managedKeyEncryption": {},
"encryptionInUse": {},
"transportEncryption": {},
"localAttestation": {
"enabled": false
},
"remoteAttestation": {},
"automaticUpdates": {},
"documentChecksum": {},
"immutability": {},
"documentSignature": {},
"explainableResults": {},
"robustnessScore": {}
}
]
},
"genericDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"policyDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"securityAdvisoryDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
],
"vulnerabilities": [
{
"cve": "",
"cwe": [],
"description": "",
"name": "",
"url": ""
}
]
},
"serviceMetadataDocument": {
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"dataLocation": {},
"documentChecksums": [
{}
],
"documentSignatures": [
{}
],
"parentId": "",
"schemaValidation": {},
"securityFeatures": [
{}
]
},
"machineLearningDataset": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"size": 0,
"type": "",
"dataLocation": {},
"parentId": ""
},
"machineLearningModel": {
"advRobustness": "",
"creationTime": "",
"description": "",
"explainability": "",
"id": "",
"labels": {},
"name": "",
"poisonLevel": "",
"privacyLabel": "",
"privacyLevel": "",
"raw": "",
"robustness": "",
"dataLocation": {},
"parentId": "",
"vulnerabilities": [
{}
]
},
"awarenessTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"securityTraining": {
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
},
"application": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"programmingLanguage": "",
"programmingVersion": "",
"raw": "",
"translationUnits": [],
"automaticUpdates": {},
"codeModuleIds": [],
"codeRepositoryId": "",
"computeId": "",
"functionalities": [
{
"cipherSuite": {},
"codeRegion": {
"code": "",
"endColumn": 0,
"endLine": 0,
"file": "",
"startColumn": 0,
"startLine": 0
},
"localDataLocation": {},
"remoteDataLocation": {},
"error": {},
"httpEndpoint": {},
"httpRequestHandler": {
"path": "",
"applicationId": "",
"httpEndpoints": [
{}
]
},
"decryption": {
"algorithm": "",
"codeRegion": {}
},
"encryption": {
"algorithm": "",
"codeRegion": {}
},
"cryptographicHash": {
"algorithm": "",
"usesSalt": false,
"codeRegion": {}
},
"databaseConnect": {
"calls": [],
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"databaseQuery": {
"calls": [],
"modify": false,
"codeRegion": {},
"databaseServiceIds": [],
"databaseStorageId": ""
},
"httpRequest": {
"call": "",
"reqBody": "",
"codeRegion": {},
"httpEndpoints": [
{}
]
},
"logOperation": {
"call": "",
"value": "",
"codeRegion": {},
"logging": {}
},
"objectStorageRequest": {
"source": "",
"codeRegion": {},
"objectStorageIds": []
},
"schemaValidation": {},
"securityAdvisoryFeed": {},
"vulnerability": {}
}
],
"libraryIds": [],
"parentId": ""
},
"library": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"libraryIds": [],
"parentId": "",
"vulnerabilities": [
{}
]
},
"sourceCodeFile": {
"creationTime": "",
"description": "",
"id": "",
"labels": {},
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [
{}
],
"parentId": ""
}
}
}' | \
http POST {{baseUrl}}/v1experimental/evidence_store/resources/:resource.id \
content-type:application/json
wget --quiet \
--method POST \
--header 'content-type: application/json' \
--body-data '{\n "resource": {\n "account": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {\n "region": ""\n },\n "loggings": [\n {\n "activityLogging": {\n "enabled": false,\n "monitoringLogDataEnabled": false,\n "retentionPeriod": "",\n "securityAlertsEnabled": false,\n "loggingServiceIds": []\n },\n "applicationLogging": {\n "enabled": false,\n "monitoringLogDataEnabled": false,\n "retentionPeriod": "",\n "securityAlertsEnabled": false,\n "loggingServiceIds": []\n },\n "bootLogging": {\n "enabled": false,\n "monitoringLogDataEnabled": false,\n "retentionPeriod": "",\n "securityAlertsEnabled": false,\n "loggingServiceIds": []\n },\n "osLogging": {\n "enabled": false,\n "monitoringLogDataEnabled": false,\n "retentionPeriod": "",\n "securityAlertsEnabled": false,\n "loggingServiceIds": []\n },\n "resourceLogging": {\n "enabled": false,\n "monitoringLogDataEnabled": false,\n "retentionPeriod": "",\n "securityAlertsEnabled": false,\n "loggingServiceIds": []\n }\n }\n ],\n "redundancies": [\n {\n "geoRedundancy": {\n "geoLocations": [\n {}\n ]\n },\n "localRedundancy": {\n "geoLocations": [\n {}\n ]\n },\n "zoneRedundancy": {\n "geoLocations": [\n {}\n ]\n }\n }\n ],\n "parentId": "",\n "usageStatistics": {\n "apiHitsPerMonth": 0\n }\n },\n "job": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "workflow": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "codeRepository": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "qpu": {\n "creationTime": "",\n "description": "",\n "errorCorrectionEnabled": false,\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "oneQubitGateErrorRate": "",\n "raw": "",\n "spamErrorRate": "",\n "twoQubitGateErrorRate": "",\n "encryptionInUse": {\n "enabled": false\n },\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "networkInterfaceIds": [],\n "redundancies": [\n {}\n ],\n "remoteAttestation": {\n "creationTime": "",\n "enabled": false,\n "status": false\n },\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "container": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "encryptionInUse": {},\n "geoLocation": {},\n "imageId": "",\n "loggings": [\n {}\n ],\n "networkInterfaceIds": [],\n "redundancies": [\n {}\n ],\n "remoteAttestation": {},\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "function": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "runtimeLanguage": "",\n "runtimeVersion": "",\n "encryptionInUse": {},\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "networkInterfaceIds": [],\n "redundancies": [\n {}\n ],\n "remoteAttestation": {},\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "virtualMachine": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "activityLogging": {},\n "automaticUpdates": {\n "enabled": false,\n "interval": "",\n "securityOnly": false\n },\n "blockStorageIds": [],\n "bootLogging": {},\n "encryptionInUse": {},\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "malwareProtection": {\n "durationSinceActive": "",\n "enabled": false,\n "numberOfThreatsFound": 0,\n "applicationLogging": {}\n },\n "networkInterfaceIds": [],\n "osLogging": {},\n "redundancies": [\n {}\n ],\n "remoteAttestation": {},\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "containerOrchestration": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "managementUrl": "",\n "name": "",\n "raw": "",\n "containerIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "containerRegistry": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "certificate": {\n "creationTime": "",\n "description": "",\n "enabled": false,\n "expirationDate": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "isManaged": false,\n "labels": {},\n "name": "",\n "notBeforeDate": "",\n "raw": "",\n "geoLocation": {},\n "infrastructureId": "",\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "key": {\n "algorithm": "",\n "creationTime": "",\n "description": "",\n "enabled": false,\n "expirationDate": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "isManaged": false,\n "keySize": 0,\n "labels": {},\n "name": "",\n "notBeforeDate": "",\n "raw": "",\n "geoLocation": {},\n "infrastructureId": "",\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "secret": {\n "creationTime": "",\n "description": "",\n "enabled": false,\n "expirationDate": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "isManaged": false,\n "labels": {},\n "name": "",\n "notBeforeDate": "",\n "raw": "",\n "geoLocation": {},\n "infrastructureId": "",\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "identity": {\n "activated": false,\n "creationTime": "",\n "description": "",\n "disablePasswordPolicy": false,\n "enforceMfa": false,\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "lastActivity": "",\n "loginDefenderEnabled": false,\n "name": "",\n "privileged": false,\n "raw": "",\n "authenticity": {\n "certificateBasedAuthentication": {\n "contextIsChecked": false,\n "enabled": false\n },\n "tokenBasedAuthentication": {\n "contextIsChecked": false,\n "enabled": false,\n "enforced": false\n },\n "multiFactorAuthentiation": {\n "contextIsChecked": false,\n "authenticities": []\n },\n "noAuthentication": {\n "contextIsChecked": false\n },\n "otpBasedAuthentication": {\n "activated": false,\n "contextIsChecked": false\n },\n "passwordBasedAuthentication": {\n "activated": false,\n "contextIsChecked": false\n },\n "singleSignOn": {\n "contextIsChecked": false,\n "enabled": false\n }\n },\n "authorization": {\n "abac": {},\n "l3Firewall": {\n "enabled": false,\n "inbound": false,\n "restrictedPorts": ""\n },\n "webApplicationFirewall": {\n "enabled": false\n },\n "rbac": {\n "broadAssignments": "",\n "mixedDuties": ""\n }\n },\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "roleAssignment": {\n "activated": false,\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "authenticity": {},\n "authorization": {},\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "containerImage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "applicationId": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "vmImage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "applicationId": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "deviceProvisioningService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "messagingHub": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "keyVault": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "credentialIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "networkInterface": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "accessRestriction": {\n "l3Firewall": {},\n "webApplicationFirewall": {}\n },\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "networkServiceId": "",\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "networkSecurityGroup": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "functionService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "authenticity": {},\n "computeIds": [],\n "functionIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "transportEncryption": {\n "enabled": false,\n "enforced": false,\n "protocol": "",\n "protocolVersion": "",\n "cipherSuites": [\n {\n "authenticationMechanism": "",\n "keyExchangeAlgorithm": "",\n "macAlgorithm": "",\n "sessionCipher": ""\n }\n ]\n },\n "usageStatistics": {}\n },\n "genericNetworkService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "loadBalancer": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "url": "",\n "accessRestriction": {},\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoints": [\n {\n "handler": "",\n "method": "",\n "path": "",\n "url": "",\n "authenticity": {},\n "transportEncryption": {}\n }\n ],\n "loggings": [\n {}\n ],\n "networkServiceIds": [],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "loggingService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "machineLearningService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "machineLearningIds": [],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "securityAdvisoryService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "keyIds": [],\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "securityAdvisoryFeeds": [\n {\n "securityAdvisoryDocumentIds": []\n }\n ],\n "serviceMetadataDocumentId": "",\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "documentDatabaseService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "anomalyDetections": [\n {\n "enabled": false,\n "scope": "",\n "applicationLogging": {}\n }\n ],\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "malwareProtection": {},\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "keyValueDatabaseService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "anomalyDetections": [\n {}\n ],\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "malwareProtection": {},\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "multiModalDatabaseService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "anomalyDetections": [\n {}\n ],\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "malwareProtection": {},\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "relationalDatabaseService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "anomalyDetections": [\n {}\n ],\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "malwareProtection": {},\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "fileStorageService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "objectStorageService": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "ips": [],\n "labels": {},\n "name": "",\n "ports": [],\n "raw": "",\n "activityLogging": {},\n "authenticity": {},\n "computeIds": [],\n "geoLocation": {},\n "httpEndpoint": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "serviceMetadataDocumentId": "",\n "storageIds": [],\n "transportEncryption": {},\n "usageStatistics": {}\n },\n "virtualNetwork": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "virtualSubNetwork": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "passwordPolicy": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "resourceGroup": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "geoLocation": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "usageStatistics": {}\n },\n "blockStorage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "activityLogging": {},\n "atRestEncryption": {\n "customerKeyEncryption": {\n "algorithm": "",\n "enabled": false,\n "keyUrl": ""\n },\n "managedKeyEncryption": {\n "algorithm": "",\n "enabled": false,\n "keyUrl": ""\n }\n },\n "backups": [\n {\n "enabled": false,\n "interval": "",\n "retentionPeriod": "",\n "storageId": "",\n "transportEncryption": {}\n }\n ],\n "geoLocation": {},\n "immutability": {\n "enabled": false\n },\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "databaseStorage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "raw": "",\n "activityLogging": {},\n "atRestEncryption": {},\n "backups": [\n {}\n ],\n "geoLocation": {},\n "immutability": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "fileStorage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "publicAccess": false,\n "raw": "",\n "activityLogging": {},\n "atRestEncryption": {},\n "backups": [\n {}\n ],\n "geoLocation": {},\n "immutability": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "objectStorage": {\n "creationTime": "",\n "description": "",\n "id": "",\n "internetAccessibleEndpoint": false,\n "labels": {},\n "name": "",\n "publicAccess": false,\n "raw": "",\n "activityLogging": {},\n "atRestEncryption": {},\n "backups": [\n {}\n ],\n "geoLocation": {},\n "immutability": {},\n "loggings": [\n {}\n ],\n "redundancies": [\n {}\n ],\n "parentId": "",\n "resourceLogging": {},\n "usageStatistics": {}\n },\n "codeNotebook": {\n "creationTime": "",\n "description": "",\n "filetype": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "codeIds": [],\n "dataLocation": {\n "localDataLocation": {\n "path": "",\n "atRestEncryption": {},\n "storageId": ""\n },\n "remoteDataLocation": {\n "path": "",\n "authenticity": {},\n "storageId": "",\n "transportEncryption": {}\n }\n },\n "documentChecksums": [\n {\n "algorithm": "",\n "errors": [\n {\n "message": ""\n }\n ]\n }\n ],\n "documentSignatures": [\n {\n "algorithm": "",\n "errors": [\n {}\n ]\n }\n ],\n "parentId": "",\n "schemaValidation": {\n "format": "",\n "schemaUrl": "",\n "errors": [\n {}\n ]\n },\n "securityFeatures": [\n {\n "anomalyDetection": {},\n "activityLogging": {},\n "applicationLogging": {},\n "bootLogging": {},\n "osLogging": {},\n "resourceLogging": {},\n "malwareProtection": {},\n "usageStatistics": {},\n "certificateBasedAuthentication": {},\n "tokenBasedAuthentication": {},\n "multiFactorAuthentiation": {},\n "noAuthentication": {},\n "otpBasedAuthentication": {},\n "passwordBasedAuthentication": {},\n "singleSignOn": {},\n "abac": {},\n "l3Firewall": {},\n "webApplicationFirewall": {},\n "rbac": {},\n "backup": {},\n "dDoSProtection": {},\n "geoLocation": {},\n "geoRedundancy": {},\n "localRedundancy": {},\n "zoneRedundancy": {},\n "customerKeyEncryption": {},\n "managedKeyEncryption": {},\n "encryptionInUse": {},\n "transportEncryption": {},\n "localAttestation": {\n "enabled": false\n },\n "remoteAttestation": {},\n "automaticUpdates": {},\n "documentChecksum": {},\n "immutability": {},\n "documentSignature": {},\n "explainableResults": {},\n "robustnessScore": {}\n }\n ]\n },\n "genericDocument": {\n "creationTime": "",\n "description": "",\n "filetype": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "dataLocation": {},\n "documentChecksums": [\n {}\n ],\n "documentSignatures": [\n {}\n ],\n "parentId": "",\n "schemaValidation": {},\n "securityFeatures": [\n {}\n ]\n },\n "policyDocument": {\n "creationTime": "",\n "description": "",\n "filetype": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "dataLocation": {},\n "documentChecksums": [\n {}\n ],\n "documentSignatures": [\n {}\n ],\n "parentId": "",\n "schemaValidation": {},\n "securityFeatures": [\n {}\n ]\n },\n "securityAdvisoryDocument": {\n "creationTime": "",\n "description": "",\n "filetype": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "dataLocation": {},\n "documentChecksums": [\n {}\n ],\n "documentSignatures": [\n {}\n ],\n "parentId": "",\n "schemaValidation": {},\n "securityFeatures": [\n {}\n ],\n "vulnerabilities": [\n {\n "cve": "",\n "cwe": [],\n "description": "",\n "name": "",\n "url": ""\n }\n ]\n },\n "serviceMetadataDocument": {\n "creationTime": "",\n "description": "",\n "filetype": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "dataLocation": {},\n "documentChecksums": [\n {}\n ],\n "documentSignatures": [\n {}\n ],\n "parentId": "",\n "schemaValidation": {},\n "securityFeatures": [\n {}\n ]\n },\n "machineLearningDataset": {\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "size": 0,\n "type": "",\n "dataLocation": {},\n "parentId": ""\n },\n "machineLearningModel": {\n "advRobustness": "",\n "creationTime": "",\n "description": "",\n "explainability": "",\n "id": "",\n "labels": {},\n "name": "",\n "poisonLevel": "",\n "privacyLabel": "",\n "privacyLevel": "",\n "raw": "",\n "robustness": "",\n "dataLocation": {},\n "parentId": "",\n "vulnerabilities": [\n {}\n ]\n },\n "awarenessTraining": {\n "annualUpdateCompleted": false,\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "successfullyCompletedPercentage": false,\n "parentId": ""\n },\n "securityTraining": {\n "annualUpdateCompleted": false,\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "successfullyCompletedPercentage": false,\n "parentId": ""\n },\n "application": {\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "programmingLanguage": "",\n "programmingVersion": "",\n "raw": "",\n "translationUnits": [],\n "automaticUpdates": {},\n "codeModuleIds": [],\n "codeRepositoryId": "",\n "computeId": "",\n "functionalities": [\n {\n "cipherSuite": {},\n "codeRegion": {\n "code": "",\n "endColumn": 0,\n "endLine": 0,\n "file": "",\n "startColumn": 0,\n "startLine": 0\n },\n "localDataLocation": {},\n "remoteDataLocation": {},\n "error": {},\n "httpEndpoint": {},\n "httpRequestHandler": {\n "path": "",\n "applicationId": "",\n "httpEndpoints": [\n {}\n ]\n },\n "decryption": {\n "algorithm": "",\n "codeRegion": {}\n },\n "encryption": {\n "algorithm": "",\n "codeRegion": {}\n },\n "cryptographicHash": {\n "algorithm": "",\n "usesSalt": false,\n "codeRegion": {}\n },\n "databaseConnect": {\n "calls": [],\n "codeRegion": {},\n "databaseServiceIds": [],\n "databaseStorageId": ""\n },\n "databaseQuery": {\n "calls": [],\n "modify": false,\n "codeRegion": {},\n "databaseServiceIds": [],\n "databaseStorageId": ""\n },\n "httpRequest": {\n "call": "",\n "reqBody": "",\n "codeRegion": {},\n "httpEndpoints": [\n {}\n ]\n },\n "logOperation": {\n "call": "",\n "value": "",\n "codeRegion": {},\n "logging": {}\n },\n "objectStorageRequest": {\n "source": "",\n "codeRegion": {},\n "objectStorageIds": []\n },\n "schemaValidation": {},\n "securityAdvisoryFeed": {},\n "vulnerability": {}\n }\n ],\n "libraryIds": [],\n "parentId": ""\n },\n "library": {\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "codeModuleIds": [],\n "codeRepositoryId": "",\n "functionalities": [\n {}\n ],\n "libraryIds": [],\n "parentId": "",\n "vulnerabilities": [\n {}\n ]\n },\n "sourceCodeFile": {\n "creationTime": "",\n "description": "",\n "id": "",\n "labels": {},\n "name": "",\n "raw": "",\n "codeModuleIds": [],\n "codeRepositoryId": "",\n "functionalities": [\n {}\n ],\n "parentId": ""\n }\n }\n}' \
--output-document \
- {{baseUrl}}/v1experimental/evidence_store/resources/:resource.id
import Foundation
let headers = ["content-type": "application/json"]
let parameters = ["resource": [
"account": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": ["region": ""],
"loggings": [
[
"activityLogging": [
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
],
"applicationLogging": [
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
],
"bootLogging": [
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
],
"osLogging": [
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
],
"resourceLogging": [
"enabled": false,
"monitoringLogDataEnabled": false,
"retentionPeriod": "",
"securityAlertsEnabled": false,
"loggingServiceIds": []
]
]
],
"redundancies": [
[
"geoRedundancy": ["geoLocations": [[]]],
"localRedundancy": ["geoLocations": [[]]],
"zoneRedundancy": ["geoLocations": [[]]]
]
],
"parentId": "",
"usageStatistics": ["apiHitsPerMonth": 0]
],
"job": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"workflow": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"codeRepository": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"qpu": [
"creationTime": "",
"description": "",
"errorCorrectionEnabled": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"oneQubitGateErrorRate": "",
"raw": "",
"spamErrorRate": "",
"twoQubitGateErrorRate": "",
"encryptionInUse": ["enabled": false],
"geoLocation": [],
"loggings": [[]],
"networkInterfaceIds": [],
"redundancies": [[]],
"remoteAttestation": [
"creationTime": "",
"enabled": false,
"status": false
],
"parentId": "",
"resourceLogging": [],
"usageStatistics": []
],
"container": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"encryptionInUse": [],
"geoLocation": [],
"imageId": "",
"loggings": [[]],
"networkInterfaceIds": [],
"redundancies": [[]],
"remoteAttestation": [],
"parentId": "",
"resourceLogging": [],
"usageStatistics": []
],
"function": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"runtimeLanguage": "",
"runtimeVersion": "",
"encryptionInUse": [],
"geoLocation": [],
"loggings": [[]],
"networkInterfaceIds": [],
"redundancies": [[]],
"remoteAttestation": [],
"parentId": "",
"resourceLogging": [],
"usageStatistics": []
],
"virtualMachine": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"activityLogging": [],
"automaticUpdates": [
"enabled": false,
"interval": "",
"securityOnly": false
],
"blockStorageIds": [],
"bootLogging": [],
"encryptionInUse": [],
"geoLocation": [],
"loggings": [[]],
"malwareProtection": [
"durationSinceActive": "",
"enabled": false,
"numberOfThreatsFound": 0,
"applicationLogging": []
],
"networkInterfaceIds": [],
"osLogging": [],
"redundancies": [[]],
"remoteAttestation": [],
"parentId": "",
"resourceLogging": [],
"usageStatistics": []
],
"containerOrchestration": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"managementUrl": "",
"name": "",
"raw": "",
"containerIds": [],
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"resourceLogging": [],
"usageStatistics": []
],
"containerRegistry": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"certificate": [
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": [],
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": [],
"infrastructureId": "",
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"key": [
"algorithm": "",
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"keySize": 0,
"labels": [],
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": [],
"infrastructureId": "",
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"secret": [
"creationTime": "",
"description": "",
"enabled": false,
"expirationDate": "",
"id": "",
"internetAccessibleEndpoint": false,
"isManaged": false,
"labels": [],
"name": "",
"notBeforeDate": "",
"raw": "",
"geoLocation": [],
"infrastructureId": "",
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"identity": [
"activated": false,
"creationTime": "",
"description": "",
"disablePasswordPolicy": false,
"enforceMfa": false,
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"lastActivity": "",
"loginDefenderEnabled": false,
"name": "",
"privileged": false,
"raw": "",
"authenticity": [
"certificateBasedAuthentication": [
"contextIsChecked": false,
"enabled": false
],
"tokenBasedAuthentication": [
"contextIsChecked": false,
"enabled": false,
"enforced": false
],
"multiFactorAuthentiation": [
"contextIsChecked": false,
"authenticities": []
],
"noAuthentication": ["contextIsChecked": false],
"otpBasedAuthentication": [
"activated": false,
"contextIsChecked": false
],
"passwordBasedAuthentication": [
"activated": false,
"contextIsChecked": false
],
"singleSignOn": [
"contextIsChecked": false,
"enabled": false
]
],
"authorization": [
"abac": [],
"l3Firewall": [
"enabled": false,
"inbound": false,
"restrictedPorts": ""
],
"webApplicationFirewall": ["enabled": false],
"rbac": [
"broadAssignments": "",
"mixedDuties": ""
]
],
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"roleAssignment": [
"activated": false,
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"authenticity": [],
"authorization": [],
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"containerImage": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"vmImage": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"applicationId": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"deviceProvisioningService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"messagingHub": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"keyVault": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"credentialIds": [],
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"networkInterface": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"accessRestriction": [
"l3Firewall": [],
"webApplicationFirewall": []
],
"geoLocation": [],
"loggings": [[]],
"networkServiceId": "",
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"networkSecurityGroup": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"functionService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"authenticity": [],
"computeIds": [],
"functionIds": [],
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": [
"enabled": false,
"enforced": false,
"protocol": "",
"protocolVersion": "",
"cipherSuites": [
[
"authenticationMechanism": "",
"keyExchangeAlgorithm": "",
"macAlgorithm": "",
"sessionCipher": ""
]
]
],
"usageStatistics": []
],
"genericNetworkService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"authenticity": [],
"computeIds": [],
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": [],
"usageStatistics": []
],
"loadBalancer": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"url": "",
"accessRestriction": [],
"authenticity": [],
"computeIds": [],
"geoLocation": [],
"httpEndpoints": [
[
"handler": "",
"method": "",
"path": "",
"url": "",
"authenticity": [],
"transportEncryption": []
]
],
"loggings": [[]],
"networkServiceIds": [],
"redundancies": [[]],
"parentId": "",
"serviceMetadataDocumentId": "",
"transportEncryption": [],
"usageStatistics": []
],
"loggingService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"authenticity": [],
"computeIds": [],
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": [],
"usageStatistics": []
],
"machineLearningService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"authenticity": [],
"computeIds": [],
"geoLocation": [],
"loggings": [[]],
"machineLearningIds": [],
"redundancies": [[]],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": [],
"usageStatistics": []
],
"securityAdvisoryService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"authenticity": [],
"computeIds": [],
"geoLocation": [],
"keyIds": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"securityAdvisoryFeeds": [["securityAdvisoryDocumentIds": []]],
"serviceMetadataDocumentId": "",
"transportEncryption": [],
"usageStatistics": []
],
"documentDatabaseService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"activityLogging": [],
"anomalyDetections": [
[
"enabled": false,
"scope": "",
"applicationLogging": []
]
],
"authenticity": [],
"computeIds": [],
"geoLocation": [],
"httpEndpoint": [],
"loggings": [[]],
"malwareProtection": [],
"redundancies": [[]],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": [],
"usageStatistics": []
],
"keyValueDatabaseService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"activityLogging": [],
"anomalyDetections": [[]],
"authenticity": [],
"computeIds": [],
"geoLocation": [],
"httpEndpoint": [],
"loggings": [[]],
"malwareProtection": [],
"redundancies": [[]],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": [],
"usageStatistics": []
],
"multiModalDatabaseService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"activityLogging": [],
"anomalyDetections": [[]],
"authenticity": [],
"computeIds": [],
"geoLocation": [],
"httpEndpoint": [],
"loggings": [[]],
"malwareProtection": [],
"redundancies": [[]],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": [],
"usageStatistics": []
],
"relationalDatabaseService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"activityLogging": [],
"anomalyDetections": [[]],
"authenticity": [],
"computeIds": [],
"geoLocation": [],
"httpEndpoint": [],
"loggings": [[]],
"malwareProtection": [],
"redundancies": [[]],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": [],
"usageStatistics": []
],
"fileStorageService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"activityLogging": [],
"authenticity": [],
"computeIds": [],
"geoLocation": [],
"httpEndpoint": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": [],
"usageStatistics": []
],
"objectStorageService": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"ips": [],
"labels": [],
"name": "",
"ports": [],
"raw": "",
"activityLogging": [],
"authenticity": [],
"computeIds": [],
"geoLocation": [],
"httpEndpoint": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"serviceMetadataDocumentId": "",
"storageIds": [],
"transportEncryption": [],
"usageStatistics": []
],
"virtualNetwork": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"virtualSubNetwork": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"passwordPolicy": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"resourceGroup": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"geoLocation": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"usageStatistics": []
],
"blockStorage": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"activityLogging": [],
"atRestEncryption": [
"customerKeyEncryption": [
"algorithm": "",
"enabled": false,
"keyUrl": ""
],
"managedKeyEncryption": [
"algorithm": "",
"enabled": false,
"keyUrl": ""
]
],
"backups": [
[
"enabled": false,
"interval": "",
"retentionPeriod": "",
"storageId": "",
"transportEncryption": []
]
],
"geoLocation": [],
"immutability": ["enabled": false],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"resourceLogging": [],
"usageStatistics": []
],
"databaseStorage": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"raw": "",
"activityLogging": [],
"atRestEncryption": [],
"backups": [[]],
"geoLocation": [],
"immutability": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"resourceLogging": [],
"usageStatistics": []
],
"fileStorage": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": [],
"atRestEncryption": [],
"backups": [[]],
"geoLocation": [],
"immutability": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"resourceLogging": [],
"usageStatistics": []
],
"objectStorage": [
"creationTime": "",
"description": "",
"id": "",
"internetAccessibleEndpoint": false,
"labels": [],
"name": "",
"publicAccess": false,
"raw": "",
"activityLogging": [],
"atRestEncryption": [],
"backups": [[]],
"geoLocation": [],
"immutability": [],
"loggings": [[]],
"redundancies": [[]],
"parentId": "",
"resourceLogging": [],
"usageStatistics": []
],
"codeNotebook": [
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": [],
"name": "",
"raw": "",
"codeIds": [],
"dataLocation": [
"localDataLocation": [
"path": "",
"atRestEncryption": [],
"storageId": ""
],
"remoteDataLocation": [
"path": "",
"authenticity": [],
"storageId": "",
"transportEncryption": []
]
],
"documentChecksums": [
[
"algorithm": "",
"errors": [["message": ""]]
]
],
"documentSignatures": [
[
"algorithm": "",
"errors": [[]]
]
],
"parentId": "",
"schemaValidation": [
"format": "",
"schemaUrl": "",
"errors": [[]]
],
"securityFeatures": [
[
"anomalyDetection": [],
"activityLogging": [],
"applicationLogging": [],
"bootLogging": [],
"osLogging": [],
"resourceLogging": [],
"malwareProtection": [],
"usageStatistics": [],
"certificateBasedAuthentication": [],
"tokenBasedAuthentication": [],
"multiFactorAuthentiation": [],
"noAuthentication": [],
"otpBasedAuthentication": [],
"passwordBasedAuthentication": [],
"singleSignOn": [],
"abac": [],
"l3Firewall": [],
"webApplicationFirewall": [],
"rbac": [],
"backup": [],
"dDoSProtection": [],
"geoLocation": [],
"geoRedundancy": [],
"localRedundancy": [],
"zoneRedundancy": [],
"customerKeyEncryption": [],
"managedKeyEncryption": [],
"encryptionInUse": [],
"transportEncryption": [],
"localAttestation": ["enabled": false],
"remoteAttestation": [],
"automaticUpdates": [],
"documentChecksum": [],
"immutability": [],
"documentSignature": [],
"explainableResults": [],
"robustnessScore": []
]
]
],
"genericDocument": [
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": [],
"name": "",
"raw": "",
"dataLocation": [],
"documentChecksums": [[]],
"documentSignatures": [[]],
"parentId": "",
"schemaValidation": [],
"securityFeatures": [[]]
],
"policyDocument": [
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": [],
"name": "",
"raw": "",
"dataLocation": [],
"documentChecksums": [[]],
"documentSignatures": [[]],
"parentId": "",
"schemaValidation": [],
"securityFeatures": [[]]
],
"securityAdvisoryDocument": [
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": [],
"name": "",
"raw": "",
"dataLocation": [],
"documentChecksums": [[]],
"documentSignatures": [[]],
"parentId": "",
"schemaValidation": [],
"securityFeatures": [[]],
"vulnerabilities": [
[
"cve": "",
"cwe": [],
"description": "",
"name": "",
"url": ""
]
]
],
"serviceMetadataDocument": [
"creationTime": "",
"description": "",
"filetype": "",
"id": "",
"labels": [],
"name": "",
"raw": "",
"dataLocation": [],
"documentChecksums": [[]],
"documentSignatures": [[]],
"parentId": "",
"schemaValidation": [],
"securityFeatures": [[]]
],
"machineLearningDataset": [
"creationTime": "",
"description": "",
"id": "",
"labels": [],
"name": "",
"raw": "",
"size": 0,
"type": "",
"dataLocation": [],
"parentId": ""
],
"machineLearningModel": [
"advRobustness": "",
"creationTime": "",
"description": "",
"explainability": "",
"id": "",
"labels": [],
"name": "",
"poisonLevel": "",
"privacyLabel": "",
"privacyLevel": "",
"raw": "",
"robustness": "",
"dataLocation": [],
"parentId": "",
"vulnerabilities": [[]]
],
"awarenessTraining": [
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": [],
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
],
"securityTraining": [
"annualUpdateCompleted": false,
"creationTime": "",
"description": "",
"id": "",
"labels": [],
"name": "",
"raw": "",
"successfullyCompletedPercentage": false,
"parentId": ""
],
"application": [
"creationTime": "",
"description": "",
"id": "",
"labels": [],
"name": "",
"programmingLanguage": "",
"programmingVersion": "",
"raw": "",
"translationUnits": [],
"automaticUpdates": [],
"codeModuleIds": [],
"codeRepositoryId": "",
"computeId": "",
"functionalities": [
[
"cipherSuite": [],
"codeRegion": [
"code": "",
"endColumn": 0,
"endLine": 0,
"file": "",
"startColumn": 0,
"startLine": 0
],
"localDataLocation": [],
"remoteDataLocation": [],
"error": [],
"httpEndpoint": [],
"httpRequestHandler": [
"path": "",
"applicationId": "",
"httpEndpoints": [[]]
],
"decryption": [
"algorithm": "",
"codeRegion": []
],
"encryption": [
"algorithm": "",
"codeRegion": []
],
"cryptographicHash": [
"algorithm": "",
"usesSalt": false,
"codeRegion": []
],
"databaseConnect": [
"calls": [],
"codeRegion": [],
"databaseServiceIds": [],
"databaseStorageId": ""
],
"databaseQuery": [
"calls": [],
"modify": false,
"codeRegion": [],
"databaseServiceIds": [],
"databaseStorageId": ""
],
"httpRequest": [
"call": "",
"reqBody": "",
"codeRegion": [],
"httpEndpoints": [[]]
],
"logOperation": [
"call": "",
"value": "",
"codeRegion": [],
"logging": []
],
"objectStorageRequest": [
"source": "",
"codeRegion": [],
"objectStorageIds": []
],
"schemaValidation": [],
"securityAdvisoryFeed": [],
"vulnerability": []
]
],
"libraryIds": [],
"parentId": ""
],
"library": [
"creationTime": "",
"description": "",
"id": "",
"labels": [],
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [[]],
"libraryIds": [],
"parentId": "",
"vulnerabilities": [[]]
],
"sourceCodeFile": [
"creationTime": "",
"description": "",
"id": "",
"labels": [],
"name": "",
"raw": "",
"codeModuleIds": [],
"codeRepositoryId": "",
"functionalities": [[]],
"parentId": ""
]
]] as [String : Any]
let postData = JSONSerialization.data(withJSONObject: parameters, options: [])
let request = NSMutableURLRequest(url: NSURL(string: "{{baseUrl}}/v1experimental/evidence_store/resources/:resource.id")! as URL,
cachePolicy: .useProtocolCachePolicy,
timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data
let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
if (error != nil) {
print(error as Any)
} else {
let httpResponse = response as? HTTPURLResponse
print(httpResponse)
}
})
dataTask.resume()