Returns data sink config of tenant
GET/v1/tenants/:tenantUid/assets/dataSinks
Returns data sink config of tenant
Request
Path Parameters
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
metadata
object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
annotations
object
Annotations are system generated key value metadata for the resource. As an input certain annotations like description can be set.
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
labels
object
Labels are key value data to organize and categorize resources. Providing spectro__tag as value for a label is considered as a kubernetes compliant tag
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
Name of the resource.
UID is the unique identifier generated for the resource. This is not an input field for any request.
spec
object
auditDataSinks
object[]
cloudWatch
object
credentials
object
AWS cloud account which includes access key and secret key in case of 'secret' credentials type. It includes policyARNS, ARN and externalId in case of sts. Partition is a group of AWS Region and Service objects
AWS account access key
Possible values: [secret
, sts
]
Default value: secret
Allowed Values [secret, sts]. STS type will be used for role assumption for sts type, accessKey/secretKey contains the source account, Arn is the target account.
Possible values: [aws
, aws-us-gov
]
Default value: aws
AWS accounts are scoped to a single partition. Allowed values [aws, aws-us-gov], Default values
List of policy ARNs required in case of credentialType sts.
AWS account secret key
sts
object
Aws sts credentials
Arn for the aws sts credentials in cloud account
ExternalId for the aws sts credentials in cloud account
Possible values: [cloudwatch
]
{
"metadata": {
"annotations": {},
"creationTimestamp": "2024-04-16T17:49:02.865Z",
"deletionTimestamp": "2024-04-16T17:49:02.865Z",
"labels": {},
"lastModifiedTimestamp": "2024-04-16T17:49:02.865Z",
"name": "string",
"uid": "string"
},
"spec": {
"auditDataSinks": [
{
"cloudWatch": {
"credentials": {
"accessKey": "string",
"credentialType": "secret",
"partition": "aws",
"policyARNs": [
"string"
],
"secretKey": "string",
"sts": {
"arn": "string",
"externalId": "string"
}
},
"group": "string",
"region": "string",
"stream": "string"
},
"type": "cloudwatch"
}
]
}
}