Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add header to local sdk files, update contribution notes #1833

Merged
merged 3 commits into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,21 @@ the [provider's website](https://registry.terraform.io/providers/okta/okta/lates

Terraform is the work of thousands of contributors. We really appreciate your help!

To contribute, please read the contribution
guidelines: [Contributing to Terraform - Okta Provider](.github/CONTRIBUTING.md)
We have these minimum requirements for source code contributions.

Bug fix pull requests must include:

- [Terraform Plugin Acceptance Tests](https://developer.hashicorp.com/terraform/plugin/sdkv2/testing/acceptance-tests).

Pull requests with new resources and data sources must include:

- Signed [Okta Individual Contributor License Agreement](https://developer.okta.com/cla/) emailed to `[email protected]`
- Implemented with the [Terraform Plugin Framework](https://developer.hashicorp.com/terraform/plugin/framework) (not [Terraform Plugin SDKv2](https://developer.hashicorp.com/terraform/plugin/sdkv2) )
- Make Okta API calls with the [okta-sdk-golang v3](https://github.com/okta/okta-sdk-golang) client
- Include [Terraform Plugin Acceptance Tests](https://developer.hashicorp.com/terraform/plugin/sdkv2/testing/acceptance-tests)

Please see the [contribution guidelines](.github/CONTRIBUTING.md) for additional
information about making contributions to the Okta Terraform Provider.

Issues on GitHub are intended to be related to the bugs or feature requests with provider codebase.
See [Plugin SDK Community](https://www.terraform.io/community)
Expand Down
20 changes: 20 additions & 0 deletions sdk/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# LOCAL SDK

This is a local copy of the original v2 okta-sdk-golang and should be treated
as read-only. If the local SDK is missing a needed API call look for that
behavior in the [okta-sdk-golang v3](https://github.com/okta/okta-sdk-golang)
client.

Resources and data sources making use of the Terraform SDK v2 access the
[okta-sdk-golang v3](https://github.com/okta/okta-sdk-golang) as
`getOktaV3ClientFromMetadata(m)`.

Resources and data sources making use of the Terraform Plugin Framework access
the [okta-sdk-golang v3](https://github.com/okta/okta-sdk-golang) as
`r.oktaSDKClientV3`.

NOTE: Any new resources or data sources contributed to this project should be
implemented with the [Terraform Plugin
Framework](https://developer.hashicorp.com/terraform/plugin/framework) and not
the [Terraform Plugin
SDKv2](https://developer.hashicorp.com/terraform/plugin/sdkv2).
1 change: 1 addition & 0 deletions sdk/api_supplement.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

// APISupplement not all APIs are supported by okta-sdk-golang, this will act as a supplement to the Okta SDK
Expand Down
1 change: 1 addition & 0 deletions sdk/app_oauth_group_claim.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/app_sign_on_policy_rule.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/app_user_type.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/authenticators.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

// List of factors that are applicable to Okta Identity Engine (OIE)
Expand Down
1 change: 1 addition & 0 deletions sdk/behavior.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/cache/cache.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package cache

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/cache/goCache.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package cache

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/cache/noopCache.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package cache

import "net/http"
Expand Down
1 change: 1 addition & 0 deletions sdk/captcha.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/captcha_org_wide.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/client_role_assignment.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/custom_role.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/custom_role_binding_members.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/custom_role_bindings.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/custom_role_permission.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/email_sender.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/factor_hotp.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/idp_discovery_rule.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/mappings.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/metadata.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/org_factor.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/org_logo.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/policy.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/policy_enrollment_apps.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/policy_rule.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/policy_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/query/query.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package query

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/rate_limit.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/resource_set.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/resource_set_resources.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/security_notification_emails.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/templates_email.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/user_factor.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_accessPolicy.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_accessPolicyConstraints.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AccessPolicyConstraints struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_accessPolicyRule.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_accessPolicyRuleActions.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AccessPolicyRuleActions struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_accessPolicyRuleApplicationSignOn.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AccessPolicyRuleApplicationSignOn struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_accessPolicyRuleConditions.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AccessPolicyRuleConditions struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_accessPolicyRuleCustomCondition.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AccessPolicyRuleCustomCondition struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_acsEndpoint.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import "encoding/json"
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_activateFactorRequest.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ActivateFactorRequest struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_appAndInstanceConditionEvaluatorAppOrInstance.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AppAndInstanceConditionEvaluatorAppOrInstance struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_appAndInstancePolicyRuleCondition.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AppAndInstancePolicyRuleCondition struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_appInstancePolicyRuleCondition.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AppInstancePolicyRuleCondition struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_appLink.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import "encoding/json"
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_appUser.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_appUserCredentials.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AppUserCredentials struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_appUserPasswordCredential.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AppUserPasswordCredential struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_application.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationAccessibility.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationAccessibility struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationCredentials.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationCredentials struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationCredentialsOAuthClient.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationCredentialsOAuthClient struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationCredentialsSigning.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationCredentialsUsernameTemplate.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationCredentialsUsernameTemplate struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationFeature.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationFeatureResource resource
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationGroupAssignment.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationLicensing.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import "encoding/json"
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationSettings.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationSettings struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationSettingsApplication.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationSettingsApplication map[string]interface{}
1 change: 1 addition & 0 deletions sdk/v2_applicationSettingsNotes.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationSettingsNotes struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationSettingsNotifications.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationSettingsNotifications struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationSettingsNotificationsVpn.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationSettingsNotificationsVpn struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationSettingsNotificationsVpnNetwork.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationSettingsNotificationsVpnNetwork struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationVisibility.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationVisibility struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_applicationVisibilityHide.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type ApplicationVisibilityHide struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_assignRoleRequest.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AssignRoleRequest struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_authenticationProvider.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AuthenticationProvider struct {
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_authenticator.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

import (
Expand Down
1 change: 1 addition & 0 deletions sdk/v2_authenticatorProvider.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// DO NOT EDIT LOCAL SDK - USE v3 okta-sdk-golang FOR API CALLS THAT DO NOT EXIST IN LOCAL SDK
package sdk

type AuthenticatorProvider struct {
Expand Down
Loading