Skip to content

Commit

Permalink
DataStoreAggregation
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleymccollam authored Nov 3, 2023
2 parents e4c600b + 8ce1385 commit d36a032
Show file tree
Hide file tree
Showing 10 changed files with 14,742 additions and 12,423 deletions.
25,778 changes: 13,411 additions & 12,367 deletions api/pf-swagger.yaml

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions configurationapi/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ docs/CustomDataStore.md
docs/CustomDataStoreDescriptor.md
docs/CustomDataStoreDescriptors.md
docs/DataStore.md
docs/DataStoreAggregation.md
docs/DataStoreAttribute.md
docs/DataStoreConfig.md
docs/DataStoreRepository.md
Expand Down Expand Up @@ -737,6 +738,7 @@ model_custom_data_store.go
model_custom_data_store_descriptor.go
model_custom_data_store_descriptors.go
model_data_store.go
model_data_store_aggregation.go
model_data_store_attribute.go
model_data_store_config.go
model_data_store_repository.go
Expand Down
1 change: 1 addition & 0 deletions configurationapi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,7 @@ Class | Method | HTTP request | Description
- [CustomDataStoreDescriptor](docs/CustomDataStoreDescriptor.md)
- [CustomDataStoreDescriptors](docs/CustomDataStoreDescriptors.md)
- [DataStore](docs/DataStore.md)
- [DataStoreAggregation](docs/DataStoreAggregation.md)
- [DataStoreAttribute](docs/DataStoreAttribute.md)
- [DataStoreConfig](docs/DataStoreConfig.md)
- [DataStoreRepository](docs/DataStoreRepository.md)
Expand Down
26 changes: 16 additions & 10 deletions configurationapi/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4069,7 +4069,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/DataStores'
$ref: '#/components/schemas/DataStoreAggregation'
description: Success.
summary: Get list of all data stores.
tags:
Expand All @@ -4094,15 +4094,15 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/DataStore'
$ref: '#/components/schemas/DataStoreAggregation'
description: Configuration for new data store.
required: true
responses:
"201":
content:
application/json:
schema:
$ref: '#/components/schemas/DataStore'
$ref: '#/components/schemas/DataStoreAggregation'
description: Data store created.
"400":
content: {}
Expand Down Expand Up @@ -4170,7 +4170,7 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/DataStore'
$ref: '#/components/schemas/DataStoreAggregation'
description: Success.
"404":
content:
Expand Down Expand Up @@ -4210,15 +4210,15 @@ paths:
content:
application/json:
schema:
$ref: '#/components/schemas/DataStore'
$ref: '#/components/schemas/DataStoreAggregation'
description: Configuration for the data store.
required: true
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/DataStore'
$ref: '#/components/schemas/DataStoreAggregation'
description: Data store updated.
"400":
content: {}
Expand Down Expand Up @@ -16109,7 +16109,7 @@ components:
attributeSources:
description: A list of configured data stores to look up attributes from.
items:
$ref: '#/components/schemas/AttributeSource'
$ref: '#/components/schemas/AttributeSourceAggregation'
type: array
attributeContractFulfillment:
additionalProperties:
Expand Down Expand Up @@ -16431,7 +16431,7 @@ components:
attributeSources:
description: A list of configured data stores to look up attributes from.
items:
$ref: '#/components/schemas/AttributeSource'
$ref: '#/components/schemas/AttributeSourceAggregation'
type: array
attributeContractFulfillment:
additionalProperties:
Expand Down Expand Up @@ -22075,6 +22075,12 @@ components:
allOf:
- $ref: '#/components/schemas/DataStore'
- $ref: '#/components/schemas/CustomDataStore_allOf'
DataStoreAggregation:
oneOf:
- $ref: '#/components/schemas/CustomDataStore'
- $ref: '#/components/schemas/JdbcDataStore'
- $ref: '#/components/schemas/LdapDataStore'
- $ref: '#/components/schemas/PingOneLdapGatewayDataStore'
DataStore:
description: The set of attributes used to configure a data store.
discriminator:
Expand Down Expand Up @@ -22117,7 +22123,7 @@ components:
items:
description: The actual list of data stores.
items:
$ref: '#/components/schemas/DataStore'
$ref: '#/components/schemas/DataStoreAggregation'
type: array
type: object
JdbcDataStore:
Expand Down Expand Up @@ -30866,7 +30872,7 @@ components:
attributeSources:
description: A list of configured data stores to look up attributes from.
items:
$ref: '#/components/schemas/AttributeSource'
$ref: '#/components/schemas/AttributeSourceAggregation'
type: array
attributeContractFulfillment:
additionalProperties:
Expand Down
40 changes: 20 additions & 20 deletions configurationapi/api_data_stores.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d36a032

Please sign in to comment.