Skip to content

Commit

Permalink
arista/studio.v1: configlet enums for studio summary
Browse files Browse the repository at this point in the history
Change-Id: I129403f46bdc4cdfecfce7d3ea67d25c7a623950
  • Loading branch information
niraj gupta committed May 8, 2024
1 parent 89446ed commit 259ffed
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
6 changes: 4 additions & 2 deletions arista/studio.v1/services.gen.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -5778,10 +5778,12 @@
"ENTITY_TYPE_INPUTS",
"ENTITY_TYPE_ASSIGNED_TAGS",
"ENTITY_TYPE_BUILD_HOOK",
"ENTITY_TYPE_AUTOFILL_ACTION"
"ENTITY_TYPE_AUTOFILL_ACTION",
"ENTITY_TYPE_CONFIGLET",
"ENTITY_TYPE_CONFIGLET_ASSIGNMENT"
],
"default": "ENTITY_TYPE_UNSPECIFIED",
"description": "EntityType enumerates the set of entity types.\n\n - ENTITY_TYPE_UNSPECIFIED: ENTITY_TYPE_UNSPECIFIED indicates an unspecified entity type.\n - ENTITY_TYPE_STUDIO: ENTITY_TYPE_STUDIO indicates the Studio entity type.\n - ENTITY_TYPE_INPUTS: ENTITY_TYPE_INPUTS indicates the Inputs entity type.\n - ENTITY_TYPE_ASSIGNED_TAGS: ENTITY_TYPE_ASSIGNED_TAGS indicates the AssignedTags entity type.\n - ENTITY_TYPE_BUILD_HOOK: ENTITY_TYPE_BUILD_HOOK indicates the BuildHook entity type.\n - ENTITY_TYPE_AUTOFILL_ACTION: ENTITY_TYPE_AUTOFILL_ACTION indicates the AutofillAction entity type."
"description": "EntityType enumerates the set of entity types.\n\n - ENTITY_TYPE_UNSPECIFIED: ENTITY_TYPE_UNSPECIFIED indicates an unspecified entity type.\n - ENTITY_TYPE_STUDIO: ENTITY_TYPE_STUDIO indicates the Studio entity type.\n - ENTITY_TYPE_INPUTS: ENTITY_TYPE_INPUTS indicates the Inputs entity type.\n - ENTITY_TYPE_ASSIGNED_TAGS: ENTITY_TYPE_ASSIGNED_TAGS indicates the AssignedTags entity type.\n - ENTITY_TYPE_BUILD_HOOK: ENTITY_TYPE_BUILD_HOOK indicates the BuildHook entity type.\n - ENTITY_TYPE_AUTOFILL_ACTION: ENTITY_TYPE_AUTOFILL_ACTION indicates the AutofillAction entity type.\n - ENTITY_TYPE_CONFIGLET: ENTITY_TYPE_CONFIGLET indicates the Configlet entity type.\n - ENTITY_TYPE_CONFIGLET_ASSIGNMENT: ENTITY_TYPE_CONFIGLET_ASSIGNMENT indicates the ConfigletAssignment entity type."
},
"arista.studio.v1.FloatInputFieldProps": {
"type": "object",
Expand Down
5 changes: 5 additions & 0 deletions arista/studio.v1/studio-changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
# New entries go on top.

Changes:
- date: 2024-04-12
description: Add configlet enums to studio summary
version: 1.6.0
cvaas: true

- date: 2024-03-04
description: Split the studio proto into three studio files
version: 1.3.0
Expand Down
6 changes: 6 additions & 0 deletions arista/studio.v1/studio.proto
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,12 @@ enum EntityType {
ENTITY_TYPE_BUILD_HOOK = 4;
// ENTITY_TYPE_AUTOFILL_ACTION indicates the AutofillAction entity type.
ENTITY_TYPE_AUTOFILL_ACTION = 5;
// ENTITY_TYPE_CONFIGLET indicates the Configlet entity type for
// static config studio.
ENTITY_TYPE_CONFIGLET = 6;
// ENTITY_TYPE_CONFIGLET_ASSIGNMENT indicates the ConfigletAssignment
// entity type for static config studio.
ENTITY_TYPE_CONFIGLET_ASSIGNMENT = 7;
}

// Studio holds the active state for a studio.
Expand Down

0 comments on commit 259ffed

Please sign in to comment.