-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompute-instance-structure.json
More file actions
69 lines (69 loc) · 2.12 KB
/
compute-instance-structure.json
File metadata and controls
69 lines (69 loc) · 2.12 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
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/oracle-cloud/refs/heads/main/json-structure/compute-instance-structure.json",
"name": "Instance",
"description": "A compute instance running in Oracle Cloud Infrastructure.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The OCID of the instance.",
"example": "ocid1.instance.oc1.iad.abcdefg123456"
},
"compartmentId": {
"type": "string",
"description": "The OCID of the compartment.",
"example": "ocid1.compartment.oc1..abcdefg123456"
},
"availabilityDomain": {
"type": "string",
"description": "The availability domain the instance is running in.",
"example": "Uocm:US-ASHBURN-AD-1"
},
"displayName": {
"type": "string",
"description": "A user-friendly name.",
"example": "my-instance-01"
},
"shape": {
"type": "string",
"description": "The shape of the instance.",
"example": "VM.Standard.E4.Flex"
},
"lifecycleState": {
"type": "string",
"description": "The current state of the instance.",
"enum": "['PROVISIONING', 'RUNNING', 'STARTING', 'STOPPING', 'STOPPED', 'CREATING_IMAGE', 'TERMINATING', 'TERMINATED']",
"example": "RUNNING"
},
"region": {
"type": "string",
"description": "The region that contains the availability domain.",
"example": "us-ashburn-1"
},
"imageId": {
"type": "string",
"description": "The OCID of the image used to boot the instance.",
"example": "ocid1.image.oc1.iad.abcdefg123456"
},
"timeCreated": {
"type": "datetime",
"description": "The date and time the instance was created.",
"example": "2026-01-15T10:30:00Z"
},
"freeformTags": {
"type": "object",
"description": "Free-form tags for the instance.",
"example": {
"key1": "value1"
}
},
"definedTags": {
"type": "object",
"description": "Defined tags for the instance.",
"example": {
"key1": "value1"
}
}
}
}