Skip to content

Commit 00fede7

Browse files
kehuang114equinix-labs@auto-commit-workflow
andauthored
add company profile event types (#90)
* kehuang/companyProfile * Auto commit generated client synchronization changes for Data Schema Updates - Wed Feb 11 22:22:22 UTC 2026 --------- Co-authored-by: equinix-labs@auto-commit-workflow <bot@equinix.noreply.github.com>
1 parent 6c9afb8 commit 00fede7

File tree

4 files changed

+235
-0
lines changed

4 files changed

+235
-0
lines changed

DataLoader.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -682,6 +682,56 @@
682682
"description": "Token successfully deactivated",
683683
"releaseStatus": "released"
684684
},
685+
{
686+
"name": "equinix.fabric.company_profile.attribute.approved",
687+
"description": "Company profile update approved",
688+
"releaseStatus": "preview"
689+
},
690+
{
691+
"name": "equinix.fabric.company_profile.attribute.changing",
692+
"description": "Company profile attribute updating",
693+
"releaseStatus": "preview"
694+
},
695+
{
696+
"name": "equinix.fabric.company_profile.attribute.rejected",
697+
"description": "Company profile update rejected",
698+
"releaseStatus": "preview"
699+
},
700+
{
701+
"name": "equinix.fabric.company_profile.state.approved",
702+
"description": "Company profile state changed to approved",
703+
"releaseStatus": "preview"
704+
},
705+
{
706+
"name": "equinix.fabric.company_profile.state.pending",
707+
"description": "Company profile state changed to pending",
708+
"releaseStatus": "preview"
709+
},
710+
{
711+
"name": "equinix.fabric.company_profile.state.rejected",
712+
"description": "Company profile state changed to rejected",
713+
"releaseStatus": "preview"
714+
},
715+
{
716+
"name": "equinix.fabric.company_profile.tag.approved",
717+
"description": "Company profile tag approved",
718+
"releaseStatus": "preview"
719+
},
720+
{
721+
"name": "equinix.fabric.company_profile.tag.attaching",
722+
"description": "Company profile tag attaching",
723+
"releaseStatus": "preview"
724+
},
725+
{
726+
"name": "equinix.fabric.company_profile.tag.detached",
727+
"description": "Company profile tag detached",
728+
"releaseStatus": "preview"
729+
},
730+
{
731+
"name": "equinix.fabric.company_profile.tag.rejected",
732+
"description": "Company profile tag rejected",
733+
"releaseStatus": "preview"
734+
},
685735
{
686736
"name": "equinix.fabric.route_aggregation.attribute.changed",
687737
"description": "Route Aggregation named ${route_aggregation_name} attribute changed",

README.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,66 @@ The following data payloads are the supported events and formats for Equinix Net
9494
<th>Release Status</th>
9595
<th>SLO Category</th>
9696
</tr>
97+
<tr>
98+
<td>equinix.fabric.company_profile.attribute.approved</td>
99+
<td>Company profile update approved</td>
100+
<td>preview</td>
101+
<td><a href='#blue_event_slo'> <span style='color:blue'>BLUE_EVENT_SLO</span></a></td>
102+
</tr>
103+
<tr>
104+
<td>equinix.fabric.company_profile.attribute.changing</td>
105+
<td>Company profile attribute updating</td>
106+
<td>preview</td>
107+
<td><a href='#blue_event_slo'> <span style='color:blue'>BLUE_EVENT_SLO</span></a></td>
108+
</tr>
109+
<tr>
110+
<td>equinix.fabric.company_profile.attribute.rejected</td>
111+
<td>Company profile update rejected</td>
112+
<td>preview</td>
113+
<td><a href='#blue_event_slo'> <span style='color:blue'>BLUE_EVENT_SLO</span></a></td>
114+
</tr>
115+
<tr>
116+
<td>equinix.fabric.company_profile.state.approved</td>
117+
<td>Company profile state changed to approved</td>
118+
<td>preview</td>
119+
<td><a href='#blue_event_slo'> <span style='color:blue'>BLUE_EVENT_SLO</span></a></td>
120+
</tr>
121+
<tr>
122+
<td>equinix.fabric.company_profile.state.pending</td>
123+
<td>Company profile state changed to pending</td>
124+
<td>preview</td>
125+
<td><a href='#blue_event_slo'> <span style='color:blue'>BLUE_EVENT_SLO</span></a></td>
126+
</tr>
127+
<tr>
128+
<td>equinix.fabric.company_profile.state.rejected</td>
129+
<td>Company profile state changed to rejected</td>
130+
<td>preview</td>
131+
<td><a href='#blue_event_slo'> <span style='color:blue'>BLUE_EVENT_SLO</span></a></td>
132+
</tr>
133+
<tr>
134+
<td>equinix.fabric.company_profile.tag.approved</td>
135+
<td>Company profile tag approved</td>
136+
<td>preview</td>
137+
<td><a href='#blue_event_slo'> <span style='color:blue'>BLUE_EVENT_SLO</span></a></td>
138+
</tr>
139+
<tr>
140+
<td>equinix.fabric.company_profile.tag.attaching</td>
141+
<td>Company profile tag attaching</td>
142+
<td>preview</td>
143+
<td><a href='#blue_event_slo'> <span style='color:blue'>BLUE_EVENT_SLO</span></a></td>
144+
</tr>
145+
<tr>
146+
<td>equinix.fabric.company_profile.tag.detached</td>
147+
<td>Company profile tag detached</td>
148+
<td>preview</td>
149+
<td><a href='#blue_event_slo'> <span style='color:blue'>BLUE_EVENT_SLO</span></a></td>
150+
</tr>
151+
<tr>
152+
<td>equinix.fabric.company_profile.tag.rejected</td>
153+
<td>Company profile tag rejected</td>
154+
<td>preview</td>
155+
<td><a href='#blue_event_slo'> <span style='color:blue'>BLUE_EVENT_SLO</span></a></td>
156+
</tr>
97157
<tr>
98158
<td>equinix.fabric.connection.attribute.changed</td>
99159
<td>Connection named ${connection_name} attributes are changed</td>

jsonschema/catalog.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,66 @@
3232
"description": "The data within all ChangeEvent events.",
3333
"datatype": "equinix.fabric.v1.ChangeEvent",
3434
"cloudeventTypes": [
35+
{
36+
"name": "equinix.fabric.company_profile.attribute.approved",
37+
"description": "Company profile update approved",
38+
"sloCategoryCode": "BLUE_EVENT_SLO",
39+
"releaseStatus": "preview"
40+
},
41+
{
42+
"name": "equinix.fabric.company_profile.attribute.changing",
43+
"description": "Company profile attribute updating",
44+
"sloCategoryCode": "BLUE_EVENT_SLO",
45+
"releaseStatus": "preview"
46+
},
47+
{
48+
"name": "equinix.fabric.company_profile.attribute.rejected",
49+
"description": "Company profile update rejected",
50+
"sloCategoryCode": "BLUE_EVENT_SLO",
51+
"releaseStatus": "preview"
52+
},
53+
{
54+
"name": "equinix.fabric.company_profile.state.approved",
55+
"description": "Company profile state changed to approved",
56+
"sloCategoryCode": "BLUE_EVENT_SLO",
57+
"releaseStatus": "preview"
58+
},
59+
{
60+
"name": "equinix.fabric.company_profile.state.pending",
61+
"description": "Company profile state changed to pending",
62+
"sloCategoryCode": "BLUE_EVENT_SLO",
63+
"releaseStatus": "preview"
64+
},
65+
{
66+
"name": "equinix.fabric.company_profile.state.rejected",
67+
"description": "Company profile state changed to rejected",
68+
"sloCategoryCode": "BLUE_EVENT_SLO",
69+
"releaseStatus": "preview"
70+
},
71+
{
72+
"name": "equinix.fabric.company_profile.tag.approved",
73+
"description": "Company profile tag approved",
74+
"sloCategoryCode": "BLUE_EVENT_SLO",
75+
"releaseStatus": "preview"
76+
},
77+
{
78+
"name": "equinix.fabric.company_profile.tag.attaching",
79+
"description": "Company profile tag attaching",
80+
"sloCategoryCode": "BLUE_EVENT_SLO",
81+
"releaseStatus": "preview"
82+
},
83+
{
84+
"name": "equinix.fabric.company_profile.tag.detached",
85+
"description": "Company profile tag detached",
86+
"sloCategoryCode": "BLUE_EVENT_SLO",
87+
"releaseStatus": "preview"
88+
},
89+
{
90+
"name": "equinix.fabric.company_profile.tag.rejected",
91+
"description": "Company profile tag rejected",
92+
"sloCategoryCode": "BLUE_EVENT_SLO",
93+
"releaseStatus": "preview"
94+
},
3595
{
3696
"name": "equinix.fabric.connection.attribute.changed",
3797
"description": "Connection named ${connection_name} attributes are changed",

jsonschema/equinix/fabric/v1/ChangeEvent.json

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,11 @@
123123
"description": "The time that the resource that fired the event was created",
124124
"format": "date-time"
125125
},
126+
"updatedDateTime": {
127+
"type": "string",
128+
"description": "The time that the resource that fired the event was last updated",
129+
"format": "date-time"
130+
},
126131
"data": {
127132
"type": "array",
128133
"description": "Data of the change event",
@@ -1074,6 +1079,66 @@
10741079
"description": "BGP peer ${ipv6_address} (AS ${asn}) session established",
10751080
"sloCategoryCode": "BLUE_EVENT_SLO",
10761081
"releaseStatus": "preview"
1082+
},
1083+
{
1084+
"name": "equinix.fabric.company_profile.state.pending",
1085+
"description": "Company profile state changed to pending",
1086+
"sloCategoryCode": "BLUE_EVENT_SLO",
1087+
"releaseStatus": "preview"
1088+
},
1089+
{
1090+
"name": "equinix.fabric.company_profile.state.approved",
1091+
"description": "Company profile state changed to approved",
1092+
"sloCategoryCode": "BLUE_EVENT_SLO",
1093+
"releaseStatus": "preview"
1094+
},
1095+
{
1096+
"name": "equinix.fabric.company_profile.state.rejected",
1097+
"description": "Company profile state changed to rejected",
1098+
"sloCategoryCode": "BLUE_EVENT_SLO",
1099+
"releaseStatus": "preview"
1100+
},
1101+
{
1102+
"name": "equinix.fabric.company_profile.tag.attaching",
1103+
"description": "Company profile tag attaching",
1104+
"sloCategoryCode": "BLUE_EVENT_SLO",
1105+
"releaseStatus": "preview"
1106+
},
1107+
{
1108+
"name": "equinix.fabric.company_profile.tag.approved",
1109+
"description": "Company profile tag approved",
1110+
"sloCategoryCode": "BLUE_EVENT_SLO",
1111+
"releaseStatus": "preview"
1112+
},
1113+
{
1114+
"name": "equinix.fabric.company_profile.tag.rejected",
1115+
"description": "Company profile tag rejected",
1116+
"sloCategoryCode": "BLUE_EVENT_SLO",
1117+
"releaseStatus": "preview"
1118+
},
1119+
{
1120+
"name": "equinix.fabric.company_profile.tag.detached",
1121+
"description": "Company profile tag detached",
1122+
"sloCategoryCode": "BLUE_EVENT_SLO",
1123+
"releaseStatus": "preview"
1124+
},
1125+
{
1126+
"name": "equinix.fabric.company_profile.attribute.changing",
1127+
"description": "Company profile attribute updating",
1128+
"sloCategoryCode": "BLUE_EVENT_SLO",
1129+
"releaseStatus": "preview"
1130+
},
1131+
{
1132+
"name": "equinix.fabric.company_profile.attribute.approved",
1133+
"description": "Company profile update approved",
1134+
"sloCategoryCode": "BLUE_EVENT_SLO",
1135+
"releaseStatus": "preview"
1136+
},
1137+
{
1138+
"name": "equinix.fabric.company_profile.attribute.rejected",
1139+
"description": "Company profile update rejected",
1140+
"sloCategoryCode": "BLUE_EVENT_SLO",
1141+
"releaseStatus": "preview"
10771142
}
10781143
],
10791144
"metricNames": [],

0 commit comments

Comments
 (0)