konnect.PortalProductVersion
Explore with Pulumi AI
PortalProductVersion Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myPortalproductversion = new konnect.PortalProductVersion("myPortalproductversion", {
applicationRegistrationEnabled: true,
authStrategyIds: [],
autoApproveRegistration: true,
deprecated: false,
notifyDevelopers: false,
portalId: "47a7b8c6-b8ad-4388-ba4c-746cd81f772c",
productVersionId: "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
publishStatus: "published",
});
import pulumi
import pulumi_konnect as konnect
my_portalproductversion = konnect.PortalProductVersion("myPortalproductversion",
application_registration_enabled=True,
auth_strategy_ids=[],
auto_approve_registration=True,
deprecated=False,
notify_developers=False,
portal_id="47a7b8c6-b8ad-4388-ba4c-746cd81f772c",
product_version_id="5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
publish_status="published")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v2/konnect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := konnect.NewPortalProductVersion(ctx, "myPortalproductversion", &konnect.PortalProductVersionArgs{
ApplicationRegistrationEnabled: pulumi.Bool(true),
AuthStrategyIds: pulumi.StringArray{},
AutoApproveRegistration: pulumi.Bool(true),
Deprecated: pulumi.Bool(false),
NotifyDevelopers: pulumi.Bool(false),
PortalId: pulumi.String("47a7b8c6-b8ad-4388-ba4c-746cd81f772c"),
ProductVersionId: pulumi.String("5f9fd312-a987-4628-b4c5-bb4f4fddd5f7"),
PublishStatus: pulumi.String("published"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Konnect = Pulumi.Konnect;
return await Deployment.RunAsync(() =>
{
var myPortalproductversion = new Konnect.PortalProductVersion("myPortalproductversion", new()
{
ApplicationRegistrationEnabled = true,
AuthStrategyIds = new[] {},
AutoApproveRegistration = true,
Deprecated = false,
NotifyDevelopers = false,
PortalId = "47a7b8c6-b8ad-4388-ba4c-746cd81f772c",
ProductVersionId = "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
PublishStatus = "published",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.PortalProductVersion;
import com.pulumi.konnect.PortalProductVersionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var myPortalproductversion = new PortalProductVersion("myPortalproductversion", PortalProductVersionArgs.builder()
.applicationRegistrationEnabled(true)
.authStrategyIds()
.autoApproveRegistration(true)
.deprecated(false)
.notifyDevelopers(false)
.portalId("47a7b8c6-b8ad-4388-ba4c-746cd81f772c")
.productVersionId("5f9fd312-a987-4628-b4c5-bb4f4fddd5f7")
.publishStatus("published")
.build());
}
}
resources:
myPortalproductversion:
type: konnect:PortalProductVersion
properties:
applicationRegistrationEnabled: true
authStrategyIds: []
autoApproveRegistration: true
deprecated: false
notifyDevelopers: false
portalId: 47a7b8c6-b8ad-4388-ba4c-746cd81f772c
productVersionId: 5f9fd312-a987-4628-b4c5-bb4f4fddd5f7
publishStatus: published
Create PortalProductVersion Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PortalProductVersion(name: string, args: PortalProductVersionArgs, opts?: CustomResourceOptions);
@overload
def PortalProductVersion(resource_name: str,
args: PortalProductVersionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PortalProductVersion(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_registration_enabled: Optional[bool] = None,
auth_strategy_ids: Optional[Sequence[str]] = None,
auto_approve_registration: Optional[bool] = None,
deprecated: Optional[bool] = None,
portal_id: Optional[str] = None,
product_version_id: Optional[str] = None,
publish_status: Optional[str] = None,
notify_developers: Optional[bool] = None)
func NewPortalProductVersion(ctx *Context, name string, args PortalProductVersionArgs, opts ...ResourceOption) (*PortalProductVersion, error)
public PortalProductVersion(string name, PortalProductVersionArgs args, CustomResourceOptions? opts = null)
public PortalProductVersion(String name, PortalProductVersionArgs args)
public PortalProductVersion(String name, PortalProductVersionArgs args, CustomResourceOptions options)
type: konnect:PortalProductVersion
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PortalProductVersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args PortalProductVersionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args PortalProductVersionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PortalProductVersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PortalProductVersionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var portalProductVersionResource = new Konnect.PortalProductVersion("portalProductVersionResource", new()
{
ApplicationRegistrationEnabled = false,
AuthStrategyIds = new[]
{
"string",
},
AutoApproveRegistration = false,
Deprecated = false,
PortalId = "string",
ProductVersionId = "string",
PublishStatus = "string",
NotifyDevelopers = false,
});
example, err := konnect.NewPortalProductVersion(ctx, "portalProductVersionResource", &konnect.PortalProductVersionArgs{
ApplicationRegistrationEnabled: pulumi.Bool(false),
AuthStrategyIds: pulumi.StringArray{
pulumi.String("string"),
},
AutoApproveRegistration: pulumi.Bool(false),
Deprecated: pulumi.Bool(false),
PortalId: pulumi.String("string"),
ProductVersionId: pulumi.String("string"),
PublishStatus: pulumi.String("string"),
NotifyDevelopers: pulumi.Bool(false),
})
var portalProductVersionResource = new PortalProductVersion("portalProductVersionResource", PortalProductVersionArgs.builder()
.applicationRegistrationEnabled(false)
.authStrategyIds("string")
.autoApproveRegistration(false)
.deprecated(false)
.portalId("string")
.productVersionId("string")
.publishStatus("string")
.notifyDevelopers(false)
.build());
portal_product_version_resource = konnect.PortalProductVersion("portalProductVersionResource",
application_registration_enabled=False,
auth_strategy_ids=["string"],
auto_approve_registration=False,
deprecated=False,
portal_id="string",
product_version_id="string",
publish_status="string",
notify_developers=False)
const portalProductVersionResource = new konnect.PortalProductVersion("portalProductVersionResource", {
applicationRegistrationEnabled: false,
authStrategyIds: ["string"],
autoApproveRegistration: false,
deprecated: false,
portalId: "string",
productVersionId: "string",
publishStatus: "string",
notifyDevelopers: false,
});
type: konnect:PortalProductVersion
properties:
applicationRegistrationEnabled: false
authStrategyIds:
- string
autoApproveRegistration: false
deprecated: false
notifyDevelopers: false
portalId: string
productVersionId: string
publishStatus: string
PortalProductVersion Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The PortalProductVersion resource accepts the following input properties:
- Application
Registration boolEnabled - Whether the application registration on this portal for the api product version is enabled
- Auth
Strategy List<string>Ids - A list of authentication strategy IDs
- Auto
Approve boolRegistration - Whether the application registration auto approval on this portal for the api product version is enabled
- Deprecated bool
- Whether the api product version on the portal is deprecated
- Portal
Id string - ID of the portal.
- Product
Version stringId - API product version identifier
- Publish
Status string - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- Notify
Developers bool - Whether to notify developers who are affected by this change
- Application
Registration boolEnabled - Whether the application registration on this portal for the api product version is enabled
- Auth
Strategy []stringIds - A list of authentication strategy IDs
- Auto
Approve boolRegistration - Whether the application registration auto approval on this portal for the api product version is enabled
- Deprecated bool
- Whether the api product version on the portal is deprecated
- Portal
Id string - ID of the portal.
- Product
Version stringId - API product version identifier
- Publish
Status string - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- Notify
Developers bool - Whether to notify developers who are affected by this change
- application
Registration BooleanEnabled - Whether the application registration on this portal for the api product version is enabled
- auth
Strategy List<String>Ids - A list of authentication strategy IDs
- auto
Approve BooleanRegistration - Whether the application registration auto approval on this portal for the api product version is enabled
- deprecated Boolean
- Whether the api product version on the portal is deprecated
- portal
Id String - ID of the portal.
- product
Version StringId - API product version identifier
- publish
Status String - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- notify
Developers Boolean - Whether to notify developers who are affected by this change
- application
Registration booleanEnabled - Whether the application registration on this portal for the api product version is enabled
- auth
Strategy string[]Ids - A list of authentication strategy IDs
- auto
Approve booleanRegistration - Whether the application registration auto approval on this portal for the api product version is enabled
- deprecated boolean
- Whether the api product version on the portal is deprecated
- portal
Id string - ID of the portal.
- product
Version stringId - API product version identifier
- publish
Status string - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- notify
Developers boolean - Whether to notify developers who are affected by this change
- application_
registration_ boolenabled - Whether the application registration on this portal for the api product version is enabled
- auth_
strategy_ Sequence[str]ids - A list of authentication strategy IDs
- auto_
approve_ boolregistration - Whether the application registration auto approval on this portal for the api product version is enabled
- deprecated bool
- Whether the api product version on the portal is deprecated
- portal_
id str - ID of the portal.
- product_
version_ strid - API product version identifier
- publish_
status str - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- notify_
developers bool - Whether to notify developers who are affected by this change
- application
Registration BooleanEnabled - Whether the application registration on this portal for the api product version is enabled
- auth
Strategy List<String>Ids - A list of authentication strategy IDs
- auto
Approve BooleanRegistration - Whether the application registration auto approval on this portal for the api product version is enabled
- deprecated Boolean
- Whether the api product version on the portal is deprecated
- portal
Id String - ID of the portal.
- product
Version StringId - API product version identifier
- publish
Status String - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- notify
Developers Boolean - Whether to notify developers who are affected by this change
Outputs
All input properties are implicitly available as output properties. Additionally, the PortalProductVersion resource produces the following output properties:
- Auth
Strategies List<PortalProduct Version Auth Strategy> - A list of authentication strategies
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Id string
- The provider-assigned unique ID for this managed resource.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Auth
Strategies []PortalProduct Version Auth Strategy - A list of authentication strategies
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Id string
- The provider-assigned unique ID for this managed resource.
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- auth
Strategies List<PortalProduct Version Auth Strategy> - A list of authentication strategies
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- id String
- The provider-assigned unique ID for this managed resource.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- auth
Strategies PortalProduct Version Auth Strategy[] - A list of authentication strategies
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- id string
- The provider-assigned unique ID for this managed resource.
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- auth_
strategies Sequence[PortalProduct Version Auth Strategy] - A list of authentication strategies
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- auth
Strategies List<Property Map> - A list of authentication strategies
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- id String
- The provider-assigned unique ID for this managed resource.
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Look up Existing PortalProductVersion Resource
Get an existing PortalProductVersion resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: PortalProductVersionState, opts?: CustomResourceOptions): PortalProductVersion
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_registration_enabled: Optional[bool] = None,
auth_strategies: Optional[Sequence[PortalProductVersionAuthStrategyArgs]] = None,
auth_strategy_ids: Optional[Sequence[str]] = None,
auto_approve_registration: Optional[bool] = None,
created_at: Optional[str] = None,
deprecated: Optional[bool] = None,
notify_developers: Optional[bool] = None,
portal_id: Optional[str] = None,
product_version_id: Optional[str] = None,
publish_status: Optional[str] = None,
updated_at: Optional[str] = None) -> PortalProductVersion
func GetPortalProductVersion(ctx *Context, name string, id IDInput, state *PortalProductVersionState, opts ...ResourceOption) (*PortalProductVersion, error)
public static PortalProductVersion Get(string name, Input<string> id, PortalProductVersionState? state, CustomResourceOptions? opts = null)
public static PortalProductVersion get(String name, Output<String> id, PortalProductVersionState state, CustomResourceOptions options)
resources: _: type: konnect:PortalProductVersion get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Application
Registration boolEnabled - Whether the application registration on this portal for the api product version is enabled
- Auth
Strategies List<PortalProduct Version Auth Strategy> - A list of authentication strategies
- Auth
Strategy List<string>Ids - A list of authentication strategy IDs
- Auto
Approve boolRegistration - Whether the application registration auto approval on this portal for the api product version is enabled
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Deprecated bool
- Whether the api product version on the portal is deprecated
- Notify
Developers bool - Whether to notify developers who are affected by this change
- Portal
Id string - ID of the portal.
- Product
Version stringId - API product version identifier
- Publish
Status string - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Application
Registration boolEnabled - Whether the application registration on this portal for the api product version is enabled
- Auth
Strategies []PortalProduct Version Auth Strategy Args - A list of authentication strategies
- Auth
Strategy []stringIds - A list of authentication strategy IDs
- Auto
Approve boolRegistration - Whether the application registration auto approval on this portal for the api product version is enabled
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Deprecated bool
- Whether the api product version on the portal is deprecated
- Notify
Developers bool - Whether to notify developers who are affected by this change
- Portal
Id string - ID of the portal.
- Product
Version stringId - API product version identifier
- Publish
Status string - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- application
Registration BooleanEnabled - Whether the application registration on this portal for the api product version is enabled
- auth
Strategies List<PortalProduct Version Auth Strategy> - A list of authentication strategies
- auth
Strategy List<String>Ids - A list of authentication strategy IDs
- auto
Approve BooleanRegistration - Whether the application registration auto approval on this portal for the api product version is enabled
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- deprecated Boolean
- Whether the api product version on the portal is deprecated
- notify
Developers Boolean - Whether to notify developers who are affected by this change
- portal
Id String - ID of the portal.
- product
Version StringId - API product version identifier
- publish
Status String - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- application
Registration booleanEnabled - Whether the application registration on this portal for the api product version is enabled
- auth
Strategies PortalProduct Version Auth Strategy[] - A list of authentication strategies
- auth
Strategy string[]Ids - A list of authentication strategy IDs
- auto
Approve booleanRegistration - Whether the application registration auto approval on this portal for the api product version is enabled
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- deprecated boolean
- Whether the api product version on the portal is deprecated
- notify
Developers boolean - Whether to notify developers who are affected by this change
- portal
Id string - ID of the portal.
- product
Version stringId - API product version identifier
- publish
Status string - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- application_
registration_ boolenabled - Whether the application registration on this portal for the api product version is enabled
- auth_
strategies Sequence[PortalProduct Version Auth Strategy Args] - A list of authentication strategies
- auth_
strategy_ Sequence[str]ids - A list of authentication strategy IDs
- auto_
approve_ boolregistration - Whether the application registration auto approval on this portal for the api product version is enabled
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- deprecated bool
- Whether the api product version on the portal is deprecated
- notify_
developers bool - Whether to notify developers who are affected by this change
- portal_
id str - ID of the portal.
- product_
version_ strid - API product version identifier
- publish_
status str - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- application
Registration BooleanEnabled - Whether the application registration on this portal for the api product version is enabled
- auth
Strategies List<Property Map> - A list of authentication strategies
- auth
Strategy List<String>Ids - A list of authentication strategy IDs
- auto
Approve BooleanRegistration - Whether the application registration auto approval on this portal for the api product version is enabled
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- deprecated Boolean
- Whether the api product version on the portal is deprecated
- notify
Developers Boolean - Whether to notify developers who are affected by this change
- portal
Id String - ID of the portal.
- product
Version StringId - API product version identifier
- publish
Status String - Publication status of the API product version on the portal. must be one of ["published", "unpublished"]
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Supporting Types
PortalProductVersionAuthStrategy, PortalProductVersionAuthStrategyArgs
- Client
Credentials PortalProduct Version Auth Strategy Client Credentials - Client Credential Auth strategy that the application uses.
- Key
Auth PortalProduct Version Auth Strategy Key Auth - KeyAuth Auth strategy that the application uses.
- Client
Credentials PortalProduct Version Auth Strategy Client Credentials - Client Credential Auth strategy that the application uses.
- Key
Auth PortalProduct Version Auth Strategy Key Auth - KeyAuth Auth strategy that the application uses.
- client
Credentials PortalProduct Version Auth Strategy Client Credentials - Client Credential Auth strategy that the application uses.
- key
Auth PortalProduct Version Auth Strategy Key Auth - KeyAuth Auth strategy that the application uses.
- client
Credentials PortalProduct Version Auth Strategy Client Credentials - Client Credential Auth strategy that the application uses.
- key
Auth PortalProduct Version Auth Strategy Key Auth - KeyAuth Auth strategy that the application uses.
- client_
credentials PortalProduct Version Auth Strategy Client Credentials - Client Credential Auth strategy that the application uses.
- key_
auth PortalProduct Version Auth Strategy Key Auth - KeyAuth Auth strategy that the application uses.
- client
Credentials Property Map - Client Credential Auth strategy that the application uses.
- key
Auth Property Map - KeyAuth Auth strategy that the application uses.
PortalProductVersionAuthStrategyClientCredentials, PortalProductVersionAuthStrategyClientCredentialsArgs
- Auth
Methods List<string> - Available
Scopes List<string> - Possible developer selectable scopes for an application. Only present when using DCR Provider that supports it.
- Credential
Type string - must be one of ["clientcredentials", "selfmanagedclientcredentials"]
- Id string
- The Application Auth Strategy ID.
- Name string
- Auth
Methods []string - Available
Scopes []string - Possible developer selectable scopes for an application. Only present when using DCR Provider that supports it.
- Credential
Type string - must be one of ["clientcredentials", "selfmanagedclientcredentials"]
- Id string
- The Application Auth Strategy ID.
- Name string
- auth
Methods List<String> - available
Scopes List<String> - Possible developer selectable scopes for an application. Only present when using DCR Provider that supports it.
- credential
Type String - must be one of ["clientcredentials", "selfmanagedclientcredentials"]
- id String
- The Application Auth Strategy ID.
- name String
- auth
Methods string[] - available
Scopes string[] - Possible developer selectable scopes for an application. Only present when using DCR Provider that supports it.
- credential
Type string - must be one of ["clientcredentials", "selfmanagedclientcredentials"]
- id string
- The Application Auth Strategy ID.
- name string
- auth_
methods Sequence[str] - available_
scopes Sequence[str] - Possible developer selectable scopes for an application. Only present when using DCR Provider that supports it.
- credential_
type str - must be one of ["clientcredentials", "selfmanagedclientcredentials"]
- id str
- The Application Auth Strategy ID.
- name str
- auth
Methods List<String> - available
Scopes List<String> - Possible developer selectable scopes for an application. Only present when using DCR Provider that supports it.
- credential
Type String - must be one of ["clientcredentials", "selfmanagedclientcredentials"]
- id String
- The Application Auth Strategy ID.
- name String
PortalProductVersionAuthStrategyKeyAuth, PortalProductVersionAuthStrategyKeyAuthArgs
- Credential
Type string - must be "key_auth"
- Id string
- The Application Auth Strategy ID.
- Key
Names List<string> - Name string
- Credential
Type string - must be "key_auth"
- Id string
- The Application Auth Strategy ID.
- Key
Names []string - Name string
- credential
Type String - must be "key_auth"
- id String
- The Application Auth Strategy ID.
- key
Names List<String> - name String
- credential
Type string - must be "key_auth"
- id string
- The Application Auth Strategy ID.
- key
Names string[] - name string
- credential_
type str - must be "key_auth"
- id str
- The Application Auth Strategy ID.
- key_
names Sequence[str] - name str
- credential
Type String - must be "key_auth"
- id String
- The Application Auth Strategy ID.
- key
Names List<String> - name String
Import
$ pulumi import konnect:index/portalProductVersion:PortalProductVersion my_konnect_portal_product_version "{ \"portal_id\": \"\", \"product_version_id\": \"5f9fd312-a987-4628-b4c5-bb4f4fddd5f7\"}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- konnect kong/terraform-provider-konnect
- License
- Notes
- This Pulumi package is based on the
konnect
Terraform Provider.