-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update openapi spec to 2.12.0. (#543)
* Update openapi spec to 2.12.0. * Skip a few brands ITs until OKTA-491199 is fixed.
- Loading branch information
1 parent
3931abc
commit 1043bc1
Showing
18 changed files
with
212 additions
and
27 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
34 changes: 34 additions & 0 deletions
34
src/Okta.Sdk/Generated/IframeEmbedScopeAllowedApps.Generated.cs
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,34 @@ | ||
// <copyright file="IframeEmbedScopeAllowedApps.Generated.cs" company="Okta, Inc"> | ||
// Copyright (c) 2014 - present Okta, Inc. All rights reserved. | ||
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information. | ||
// </copyright> | ||
|
||
// This file was automatically generated. Don't modify it directly. | ||
|
||
namespace Okta.Sdk | ||
{ | ||
/// <summary> | ||
/// An enumeration of IframeEmbedScopeAllowedApps values in the Okta API. | ||
/// </summary> | ||
public sealed class IframeEmbedScopeAllowedApps : StringEnum | ||
{ | ||
/// <summary>The OKTA_ENDUSER IframeEmbedScopeAllowedApps.</summary> | ||
public static IframeEmbedScopeAllowedApps OktaEnduser = new IframeEmbedScopeAllowedApps("OKTA_ENDUSER"); | ||
|
||
/// <summary> | ||
/// Implicit operator declaration to accept and convert a string value as a <see cref="IframeEmbedScopeAllowedApps"/> | ||
/// </summary> | ||
/// <param name="value">The value to use</param> | ||
public static implicit operator IframeEmbedScopeAllowedApps(string value) => new IframeEmbedScopeAllowedApps(value); | ||
|
||
/// <summary> | ||
/// Creates a new <see cref="IframeEmbedScopeAllowedApps"/> instance. | ||
/// </summary> | ||
/// <param name="value">The value to use.</param> | ||
public IframeEmbedScopeAllowedApps(string value) | ||
: base(value) | ||
{ | ||
} | ||
|
||
} | ||
} |
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
Oops, something went wrong.