aboutsummaryrefslogtreecommitdiffstats
path: root/docs/offeredapis/serviceCatalog/apiServiceCatalog.plantuml
diff options
context:
space:
mode:
authorMatthieuGeerebaert <matthieu.geerebaert@orange.com>2019-03-12 18:30:33 +0100
committerMatthieuGeerebaert <matthieu.geerebaert@orange.com>2019-03-12 18:30:33 +0100
commitcf469f63cb490d90b55508efa331073a17297999 (patch)
tree4cbb6daff2e14d30d2f4d745ec5e8cd8a15f5e5c /docs/offeredapis/serviceCatalog/apiServiceCatalog.plantuml
parent66403a1729296f9d90ce61a4d4cb0d102e03cd1e (diff)
Update Swagger files
Change-Id: I02a375b4998fdf23bd7c4eb391011a8e37a1c8e2 Issue-ID: EXTAPI-211 Signed-off-by: MatthieuGeerebaert <matthieu.geerebaert@orange.com>
Diffstat (limited to 'docs/offeredapis/serviceCatalog/apiServiceCatalog.plantuml')
-rw-r--r--docs/offeredapis/serviceCatalog/apiServiceCatalog.plantuml110
1 files changed, 0 insertions, 110 deletions
diff --git a/docs/offeredapis/serviceCatalog/apiServiceCatalog.plantuml b/docs/offeredapis/serviceCatalog/apiServiceCatalog.plantuml
deleted file mode 100644
index 8483238..0000000
--- a/docs/offeredapis/serviceCatalog/apiServiceCatalog.plantuml
+++ /dev/null
@@ -1,110 +0,0 @@
-@startuml
-
-enum LifecycleStatusValues {
- NOT_CERTIFIED_CHECKOUT
- NOT_CERTIFIED_CHECKIN
- READY_FOR_CERTIFICATION
- CERTIFICATION_IN_PROGRESS
- CERTIFIED
-}
-enum DistributionStatus {
- DISTRIBUTION_NOT_APPROVED
- DISTRIBUTION_APPROVED
- DISTRIBUTED
- DISTRIBUTION_REJECTED
-}
-
-class ErrorRepresentation {
- code:int
- reason:string
- message:string
- status:string
- referenceErrror:string
- @type:string
- @schemaLocation:string
-}
-
-class TimePeriod {
- startDateTime:dateTime
- endDateTime:dateTime
-}
-
-class RelatedPartyRef {
- id:string
- role:string
- name:string
-}
-
-class ServiceSpecification {
- id:string
- href:string
- name:string
- description:string
- @type:string
- @schemaLocation:string
- @baseType:string
- invariantUUID:string
- toscaModelURL:string
- toscaResourceName:string
- category:string
- subcategory:string
- version:string
-}
- ServiceSpecification --> "0-1" DistributionStatus : distributionStatus
- ServiceSpecification --> "0-1" LifecycleStatusValues : lifecycleStatus
- ServiceSpecification --> "0-1" TargetServiceSchemaRef : targetServiceSchema
- ServiceSpecification --> "0-*" Attachment : attachment
- ServiceSpecification --> "0-*" RelatedPartyRef : relatedParty
- ServiceSpecification --> "0-*" ResourceSpecificationRef : resourceSpecification
- ServiceSpecification --> "0-*" ServiceSpecCharacteristic : serviceSpecCharacteristic
-
-class ServiceSpecCharacteristic {
- name:string
- description:string
- valueType:string
- @type:string
- @schemaLocation:string
- required:boolean
- status:string
-}
- ServiceSpecCharacteristic --> "0-*" ServiceSpecCharacteristicValue : serviceSpecCharacteristicValue
-
-class Attachment {
- id:string
- name:string
- description:string
- @type:string
- artifactLabel:string
- artifactGroupType:string
- artifactTimeout:string
- artifactChecksum:string
- artifactVersion:string
- generatedFromUUID:string
- url:string
- mimeType:string
-}
-
-class ServiceSpecCharacteristicValue {
- valueType:string
- isDefault:boolean
- value:string
-}
-
-class ResourceSpecificationRef {
- id:string
- version:string
- name:string
- @type:string
- resourceInstanceName:string
- resourceInvariantUUID:string
- resourceType:string
- modelCustomizationName:string
- modelCustomizationId:string
-}
-
-class TargetServiceSchemaRef {
- @type:string
- @schemaLocation:string
-}
-
-@enduml \ No newline at end of file