Skip to content

Commit

Permalink
Add trials ENUM values to the EnumSolutionType model (#364)
Browse files Browse the repository at this point in the history
* Add trials ENUM values to the `EnumSolutionType` model

* bump version

* changelogs
  • Loading branch information
patrickcping committed Jun 20, 2024
1 parent 7715198 commit ab8dd6a
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Release (Unreleased)

* `github.com/patrickcping/pingone-go-sdk-v2/management` : [v0.42.0](./management/CHANGELOG.md)
* **Enhancement** Added trials ENUM values to the `EnumSolutionType` model. [#364](https://github.com/patrickcping/pingone-go-sdk-v2/pull/364)

# Release (2024-06-18)

* `github.com/patrickcping/pingone-go-sdk-v2` : v0.12.1
Expand Down
2 changes: 1 addition & 1 deletion management/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.41.0
0.42.0
4 changes: 4 additions & 0 deletions management/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.42.0 (Unreleased)

* **Enhancement** Added trials ENUM values to the `EnumSolutionType` model. [#364](https://github.com/patrickcping/pingone-go-sdk-v2/pull/364)

# v0.41.0 (2024-06-18)

* **Enhancement** Added `SpEncryption` to the `ApplicationSAML` and associated models to control encryption of SAML application assertions. [#348](https://github.com/patrickcping/pingone-go-sdk-v2/pull/348)
Expand Down
2 changes: 1 addition & 1 deletion management/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The PingOne Platform API covering the base and SSO services (otherwise known as
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.

- API version: 2023-06-29
- Package version: 0.41.0
- Package version: 0.42.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen

## Installation
Expand Down
9 changes: 8 additions & 1 deletion management/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27342,10 +27342,17 @@ components:
- LDAP
type: string
EnumSolutionType:
description: The solution set of the environment
description: |
The solution type selected when creating the environment. Ignored on PUT operations. The following values are supported:
`CIAM_TRIAL`. The Customer trial experience. Indicates the Customer solution type, and the Solution Designer was selected.
`WF_TRIAL`. The Workforce trial experience. Indicates the Workforce solution type, and the Solution Designer was selected.
`CUSTOMER`. Indicates the Customer solution type was selected. This solution type uses PingOne MFA, rather than PingID.
`WORKFORCE`. Indicates the Workforce solution type was selected. This solution type uses PingID, rather than PingOne MFA.
enum:
- WORKFORCE
- CUSTOMER
- CIAM_TRIAL
- WF_TRIAL
type: string
EnumSubscriptionFilterIncludedTags:
description: "A tags that events must have to be monitored by a subscription.\
Expand Down
2 changes: 1 addition & 1 deletion management/configuration.go

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

4 changes: 4 additions & 0 deletions management/docs/EnumSolutionType.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

* `CUSTOMER` (value: `"CUSTOMER"`)

* `CIAM_TRIAL` (value: `"CIAM_TRIAL"`)

* `WF_TRIAL` (value: `"WF_TRIAL"`)


[[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
9 changes: 7 additions & 2 deletions management/generate/pingone-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -588,8 +588,13 @@ components:
description: A string identifying the type of gateway. Currently, only `LDAP` is supported.
EnumSolutionType:
type: string
enum: [WORKFORCE, CUSTOMER]
description: The solution set of the environment
enum: [WORKFORCE, CUSTOMER, CIAM_TRIAL, WF_TRIAL]
description: |
The solution type selected when creating the environment. Ignored on PUT operations. The following values are supported:
`CIAM_TRIAL`. The Customer trial experience. Indicates the Customer solution type, and the Solution Designer was selected.
`WF_TRIAL`. The Workforce trial experience. Indicates the Workforce solution type, and the Solution Designer was selected.
`CUSTOMER`. Indicates the Customer solution type was selected. This solution type uses PingOne MFA, rather than PingID.
`WORKFORCE`. Indicates the Workforce solution type was selected. This solution type uses PingID, rather than PingOne MFA.
EnumSubscriptionFilterIncludedTags:
type: string
enum: [adminIdentityEvent]
Expand Down
6 changes: 5 additions & 1 deletion management/model_enum_solution_type.go

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

0 comments on commit ab8dd6a

Please sign in to comment.