-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeartifact-domain-description-schema.json
More file actions
99 lines (99 loc) · 2.42 KB
/
Copy pathcodeartifact-domain-description-schema.json
File metadata and controls
99 lines (99 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-schema/codeartifact-domain-description-schema.json",
"title": "DomainDescription",
"description": " Information about a domain. A domain is a container for repositories. When you create a domain, it is empty until you add one or more repositories. ",
"type": "object",
"properties": {
"name": {
"allOf": [
{
"$ref": "#/components/schemas/DomainName"
},
{
"description": " The name of the domain. "
}
]
},
"owner": {
"allOf": [
{
"$ref": "#/components/schemas/AccountId"
},
{
"description": " The Amazon Web Services account ID that owns the domain. "
}
]
},
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/Arn"
},
{
"description": " The Amazon Resource Name (ARN) of the domain. "
}
]
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/DomainStatus"
},
{
"description": " The current status of a domain. "
}
]
},
"createdTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": " A timestamp that represents the date and time the domain was created. "
}
]
},
"encryptionKey": {
"allOf": [
{
"$ref": "#/components/schemas/Arn"
},
{
"description": " The ARN of an Key Management Service (KMS) key associated with a domain. "
}
]
},
"repositoryCount": {
"allOf": [
{
"$ref": "#/components/schemas/Integer"
},
{
"description": " The number of repositories in the domain. "
}
]
},
"assetSizeBytes": {
"allOf": [
{
"$ref": "#/components/schemas/Long"
},
{
"description": " The total size of all assets in the domain. "
}
]
},
"s3BucketArn": {
"allOf": [
{
"$ref": "#/components/schemas/Arn"
},
{
"description": "The Amazon Resource Name (ARN) of the Amazon S3 bucket that is used to store package assets in the domain."
}
]
}
}
}