forked from Azure/azure-cli-extensions
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Spark Configuration DataPlane Api's Swagger Changes (#15085)
* Spark Configuration DataPlane Api's Swagger Changes Spark Configuration DataPlane Api's Swagger Changes * Spark Configuration DataPlane Api's Swagger Changes Spark Configuration DataPlane Api's Swagger Changes * Updated readme file Updated readme file * Fix CI Errors Fix CI Errors * Update readme.md Updated readme file * Fixed CI Errors Fixed CI Errors * Fixed comments Fixed comments * Added changes for new preview version Added changes for new preview version
- Loading branch information
1 parent
313e78f
commit c7ce6ad
Showing
10 changed files
with
556 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
...ta-plane/Microsoft.Synapse/preview/2021-06-01-preview/entityTypes/SparkConfiguration.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"swagger": "2.0", | ||
"info": { | ||
"title": "ArtifactsClient", | ||
"version": "2021-06-01-preview" | ||
}, | ||
"paths": {}, | ||
"definitions": { | ||
"SparkConfiguration": { | ||
"type": "object", | ||
"description": "SparkConfiguration Artifact information", | ||
"title": "Information about a SparkConfiguration created at the workspace level.", | ||
"properties": { | ||
"description": { | ||
"type": "string", | ||
"description": "Description about the SparkConfiguration." | ||
}, | ||
"configs": { | ||
"type": "object", | ||
"description": "SparkConfiguration configs.", | ||
"additionalProperties": { | ||
"type": "string" | ||
} | ||
}, | ||
"annotations": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
}, | ||
"description": "Annotations for SparkConfiguration." | ||
}, | ||
"notes": { | ||
"type": "string", | ||
"description": "additional Notes." | ||
}, | ||
"createdBy": { | ||
"type": "string", | ||
"description": "The identity that created the resource." | ||
}, | ||
"created": { | ||
"type": "string", | ||
"format": "date-time", | ||
"description": "The timestamp of resource creation." | ||
} | ||
}, | ||
"required": [ | ||
"configs" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.