Skip to content

Commit

Permalink
Merge pull request #61 from pingidentity/RemoveDuplicateProperty
Browse files Browse the repository at this point in the history
Remove duplicate prop and incorrect required
  • Loading branch information
henryrecker-pingidentity authored Nov 20, 2024
2 parents 4d67e7a + 565f136 commit 153ae53
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 148 deletions.
17 changes: 0 additions & 17 deletions api/pf-swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17300,7 +17300,6 @@ components:
description: The remote party URLs to resolve the artifact.
ArtifactSettings:
required:
- lifetime
- resolverLocations
type: object
properties:
Expand Down Expand Up @@ -18497,19 +18496,11 @@ components:
allOf:
- $ref: "#/components/schemas/DataStoreRepository"
- required:
- jitRepositoryAttributeMapping
- sqlMethod
type: object
properties:
sqlMethod:
$ref: "#/components/schemas/SqlMethod"
jitRepositoryAttributeMapping:
type: object
additionalProperties:
$ref: "#/components/schemas/AttributeFulfillmentValue"
description:
A list of user repository mappings from attribute names to
their fulfillment values.
description: JDBC data store user repository.
JitProvisioning:
required:
Expand Down Expand Up @@ -18555,7 +18546,6 @@ components:
allOf:
- $ref: "#/components/schemas/DataStoreRepository"
- required:
- jitRepositoryAttributeMapping
- uniqueUserIdFilter
type: object
properties:
Expand All @@ -18569,13 +18559,6 @@ components:
description:
"The expression that results in a unique user identifier,\
\ when combined with the Base DN."
jitRepositoryAttributeMapping:
type: object
additionalProperties:
$ref: "#/components/schemas/AttributeFulfillmentValue"
description:
A list of user repository mappings from attribute names to
their fulfillment values.
description: LDAP data store user repository.
LdapInboundProvisioningUserRepository:
allOf:
Expand Down
15 changes: 0 additions & 15 deletions configurationapi/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19283,7 +19283,6 @@ components:
description: Source ID for SAML1.x connections
type: string
required:
- lifetime
- resolverLocations
type: object
AssertionLifetime:
Expand Down Expand Up @@ -20726,14 +20725,7 @@ components:
properties:
sqlMethod:
$ref: '#/components/schemas/SqlMethod'
jitRepositoryAttributeMapping:
additionalProperties:
$ref: '#/components/schemas/AttributeFulfillmentValue'
description: A list of user repository mappings from attribute names to
their fulfillment values.
type: object
required:
- jitRepositoryAttributeMapping
- sqlMethod
type: object
JitProvisioning:
Expand Down Expand Up @@ -20786,14 +20778,7 @@ components:
description: "The expression that results in a unique user identifier,\
\ when combined with the Base DN."
type: string
jitRepositoryAttributeMapping:
additionalProperties:
$ref: '#/components/schemas/AttributeFulfillmentValue'
description: A list of user repository mappings from attribute names to
their fulfillment values.
type: object
required:
- jitRepositoryAttributeMapping
- uniqueUserIdFilter
type: object
LdapInboundProvisioningUserRepository:
Expand Down
9 changes: 7 additions & 2 deletions configurationapi/docs/ArtifactSettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Lifetime** | **int64** | The lifetime of the artifact in seconds. |
**Lifetime** | Pointer to **int64** | The lifetime of the artifact in seconds. | [optional]
**ResolverLocations** | [**[]ArtifactResolverLocation**](ArtifactResolverLocation.md) | Remote party URLs that you will use to resolve/translate the artifact and get the actual protocol message |
**SourceId** | Pointer to **string** | Source ID for SAML1.x connections | [optional]

## Methods

### NewArtifactSettings

`func NewArtifactSettings(lifetime int64, resolverLocations []ArtifactResolverLocation, ) *ArtifactSettings`
`func NewArtifactSettings(resolverLocations []ArtifactResolverLocation, ) *ArtifactSettings`

NewArtifactSettings instantiates a new ArtifactSettings object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -46,6 +46,11 @@ and a boolean to check if the value has been set.

SetLifetime sets Lifetime field to given value.

### HasLifetime

`func (o *ArtifactSettings) HasLifetime() bool`

HasLifetime returns a boolean if a field has been set.

### GetResolverLocations

Expand Down
2 changes: 1 addition & 1 deletion configurationapi/docs/DataStoreRepositoryAggregation.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **string** | The data store repository type. |
**DataStoreRef** | [**ResourceLink**](ResourceLink.md) | |
**JitRepositoryAttributeMapping** | [**map[string]AttributeFulfillmentValue**](AttributeFulfillmentValue.md) | A list of user repository mappings from attribute names to their fulfillment values. |
**JitRepositoryAttributeMapping** | [**map[string]AttributeFulfillmentValue**](AttributeFulfillmentValue.md) | The user repository attribute mapping. |
**BaseDn** | Pointer to **string** | The base DN to search from. If not specified, the search will start at the LDAP's root. | [optional]
**UniqueUserIdFilter** | **string** | The expression that results in a unique user identifier, when combined with the Base DN. |

Expand Down
23 changes: 1 addition & 22 deletions configurationapi/docs/JdbcDataStoreRepository.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**SqlMethod** | [**SqlMethod**](SqlMethod.md) | |
**JitRepositoryAttributeMapping** | [**map[string]AttributeFulfillmentValue**](AttributeFulfillmentValue.md) | A list of user repository mappings from attribute names to their fulfillment values. |

## Methods

### NewJdbcDataStoreRepository

`func NewJdbcDataStoreRepository(sqlMethod SqlMethod, jitRepositoryAttributeMapping map[string]AttributeFulfillmentValue, ) *JdbcDataStoreRepository`
`func NewJdbcDataStoreRepository(sqlMethod SqlMethod, ) *JdbcDataStoreRepository`

NewJdbcDataStoreRepository instantiates a new JdbcDataStoreRepository object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -46,26 +45,6 @@ and a boolean to check if the value has been set.
SetSqlMethod sets SqlMethod field to given value.


### GetJitRepositoryAttributeMapping

`func (o *JdbcDataStoreRepository) GetJitRepositoryAttributeMapping() map[string]AttributeFulfillmentValue`

GetJitRepositoryAttributeMapping returns the JitRepositoryAttributeMapping field if non-nil, zero value otherwise.

### GetJitRepositoryAttributeMappingOk

`func (o *JdbcDataStoreRepository) GetJitRepositoryAttributeMappingOk() (*map[string]AttributeFulfillmentValue, bool)`

GetJitRepositoryAttributeMappingOk returns a tuple with the JitRepositoryAttributeMapping field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetJitRepositoryAttributeMapping

`func (o *JdbcDataStoreRepository) SetJitRepositoryAttributeMapping(v map[string]AttributeFulfillmentValue)`

SetJitRepositoryAttributeMapping sets JitRepositoryAttributeMapping field to given value.



[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
23 changes: 1 addition & 22 deletions configurationapi/docs/LdapDataStoreRepository.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**BaseDn** | Pointer to **string** | The base DN to search from. If not specified, the search will start at the LDAP's root. | [optional]
**UniqueUserIdFilter** | **string** | The expression that results in a unique user identifier, when combined with the Base DN. |
**JitRepositoryAttributeMapping** | [**map[string]AttributeFulfillmentValue**](AttributeFulfillmentValue.md) | A list of user repository mappings from attribute names to their fulfillment values. |

## Methods

### NewLdapDataStoreRepository

`func NewLdapDataStoreRepository(uniqueUserIdFilter string, jitRepositoryAttributeMapping map[string]AttributeFulfillmentValue, ) *LdapDataStoreRepository`
`func NewLdapDataStoreRepository(uniqueUserIdFilter string, ) *LdapDataStoreRepository`

NewLdapDataStoreRepository instantiates a new LdapDataStoreRepository object
This constructor will assign default values to properties that have it defined,
Expand Down Expand Up @@ -72,26 +71,6 @@ and a boolean to check if the value has been set.
SetUniqueUserIdFilter sets UniqueUserIdFilter field to given value.


### GetJitRepositoryAttributeMapping

`func (o *LdapDataStoreRepository) GetJitRepositoryAttributeMapping() map[string]AttributeFulfillmentValue`

GetJitRepositoryAttributeMapping returns the JitRepositoryAttributeMapping field if non-nil, zero value otherwise.

### GetJitRepositoryAttributeMappingOk

`func (o *LdapDataStoreRepository) GetJitRepositoryAttributeMappingOk() (*map[string]AttributeFulfillmentValue, bool)`

GetJitRepositoryAttributeMappingOk returns a tuple with the JitRepositoryAttributeMapping field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetJitRepositoryAttributeMapping

`func (o *LdapDataStoreRepository) SetJitRepositoryAttributeMapping(v map[string]AttributeFulfillmentValue)`

SetJitRepositoryAttributeMapping sets JitRepositoryAttributeMapping field to given value.



[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
35 changes: 22 additions & 13 deletions configurationapi/model_artifact_settings.go

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

29 changes: 1 addition & 28 deletions configurationapi/model_jdbc_data_store_repository.go

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

29 changes: 1 addition & 28 deletions configurationapi/model_ldap_data_store_repository.go

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

0 comments on commit 153ae53

Please sign in to comment.