published on Tuesday, Aug 4, 2026 by kong
published on Tuesday, Aug 4, 2026 by kong
PortalApplicationRegistration Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as konnect from "@pulumi/konnect";
const myPortalapplicationregistration = new konnect.PortalApplicationRegistration("my_portalapplicationregistration", {
apiId: "15a8f0a0-e185-4b99-8591-c6319de5704a",
applicationId: "f5e17ae7-79e1-4181-931f-143b2159d313",
portalId: "f32d905a-ed33-46a3-a093-d8f536af9a8a",
status: "approved",
});
import pulumi
import pulumi_konnect as konnect
my_portalapplicationregistration = konnect.PortalApplicationRegistration("my_portalapplicationregistration",
api_id="15a8f0a0-e185-4b99-8591-c6319de5704a",
application_id="f5e17ae7-79e1-4181-931f-143b2159d313",
portal_id="f32d905a-ed33-46a3-a093-d8f536af9a8a",
status="approved")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/konnect/v3/konnect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := konnect.NewPortalApplicationRegistration(ctx, "my_portalapplicationregistration", &konnect.PortalApplicationRegistrationArgs{
ApiId: pulumi.String("15a8f0a0-e185-4b99-8591-c6319de5704a"),
ApplicationId: pulumi.String("f5e17ae7-79e1-4181-931f-143b2159d313"),
PortalId: pulumi.String("f32d905a-ed33-46a3-a093-d8f536af9a8a"),
Status: pulumi.String("approved"),
})
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 myPortalapplicationregistration = new Konnect.PortalApplicationRegistration("my_portalapplicationregistration", new()
{
ApiId = "15a8f0a0-e185-4b99-8591-c6319de5704a",
ApplicationId = "f5e17ae7-79e1-4181-931f-143b2159d313",
PortalId = "f32d905a-ed33-46a3-a093-d8f536af9a8a",
Status = "approved",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.konnect.PortalApplicationRegistration;
import com.pulumi.konnect.PortalApplicationRegistrationArgs;
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 myPortalapplicationregistration = new PortalApplicationRegistration("myPortalapplicationregistration", PortalApplicationRegistrationArgs.builder()
.apiId("15a8f0a0-e185-4b99-8591-c6319de5704a")
.applicationId("f5e17ae7-79e1-4181-931f-143b2159d313")
.portalId("f32d905a-ed33-46a3-a093-d8f536af9a8a")
.status("approved")
.build());
}
}
resources:
myPortalapplicationregistration:
type: konnect:PortalApplicationRegistration
name: my_portalapplicationregistration
properties:
apiId: 15a8f0a0-e185-4b99-8591-c6319de5704a
applicationId: f5e17ae7-79e1-4181-931f-143b2159d313
portalId: f32d905a-ed33-46a3-a093-d8f536af9a8a
status: approved
Example coming soon!
Create PortalApplicationRegistration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PortalApplicationRegistration(name: string, args: PortalApplicationRegistrationArgs, opts?: CustomResourceOptions);@overload
def PortalApplicationRegistration(resource_name: str,
args: PortalApplicationRegistrationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PortalApplicationRegistration(resource_name: str,
opts: Optional[ResourceOptions] = None,
api_id: Optional[str] = None,
application_id: Optional[str] = None,
portal_id: Optional[str] = None,
status: Optional[str] = None)func NewPortalApplicationRegistration(ctx *Context, name string, args PortalApplicationRegistrationArgs, opts ...ResourceOption) (*PortalApplicationRegistration, error)public PortalApplicationRegistration(string name, PortalApplicationRegistrationArgs args, CustomResourceOptions? opts = null)
public PortalApplicationRegistration(String name, PortalApplicationRegistrationArgs args)
public PortalApplicationRegistration(String name, PortalApplicationRegistrationArgs args, CustomResourceOptions options)
type: konnect:PortalApplicationRegistration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "konnect_portal_application_registration" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args PortalApplicationRegistrationArgs
- 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 PortalApplicationRegistrationArgs
- 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 PortalApplicationRegistrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PortalApplicationRegistrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PortalApplicationRegistrationArgs
- 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 portalApplicationRegistrationResource = new Konnect.PortalApplicationRegistration("portalApplicationRegistrationResource", new()
{
ApiId = "string",
ApplicationId = "string",
PortalId = "string",
Status = "string",
});
example, err := konnect.NewPortalApplicationRegistration(ctx, "portalApplicationRegistrationResource", &konnect.PortalApplicationRegistrationArgs{
ApiId: pulumi.String("string"),
ApplicationId: pulumi.String("string"),
PortalId: pulumi.String("string"),
Status: pulumi.String("string"),
})
resource "konnect_portal_application_registration" "portalApplicationRegistrationResource" {
lifecycle {
create_before_destroy = true
}
api_id = "string"
application_id = "string"
portal_id = "string"
status = "string"
}
var portalApplicationRegistrationResource = new PortalApplicationRegistration("portalApplicationRegistrationResource", PortalApplicationRegistrationArgs.builder()
.apiId("string")
.applicationId("string")
.portalId("string")
.status("string")
.build());
portal_application_registration_resource = konnect.PortalApplicationRegistration("portalApplicationRegistrationResource",
api_id="string",
application_id="string",
portal_id="string",
status="string")
const portalApplicationRegistrationResource = new konnect.PortalApplicationRegistration("portalApplicationRegistrationResource", {
apiId: "string",
applicationId: "string",
portalId: "string",
status: "string",
});
type: konnect:PortalApplicationRegistration
properties:
apiId: string
applicationId: string
portalId: string
status: string
PortalApplicationRegistration 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 PortalApplicationRegistration resource accepts the following input properties:
- Api
Id string - The ID of the API the application is registering for. Requires replacement if changed.
- Application
Id string - ID of the application.
- Portal
Id string - The Portal identifier
- Status string
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- Api
Id string - The ID of the API the application is registering for. Requires replacement if changed.
- Application
Id string - ID of the application.
- Portal
Id string - The Portal identifier
- Status string
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- api_
id string - The ID of the API the application is registering for. Requires replacement if changed.
- application_
id string - ID of the application.
- portal_
id string - The Portal identifier
- status string
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- api
Id String - The ID of the API the application is registering for. Requires replacement if changed.
- application
Id String - ID of the application.
- portal
Id String - The Portal identifier
- status String
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- api
Id string - The ID of the API the application is registering for. Requires replacement if changed.
- application
Id string - ID of the application.
- portal
Id string - The Portal identifier
- status string
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- api_
id str - The ID of the API the application is registering for. Requires replacement if changed.
- application_
id str - ID of the application.
- portal_
id str - The Portal identifier
- status str
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- api
Id String - The ID of the API the application is registering for. Requires replacement if changed.
- application
Id String - ID of the application.
- portal
Id String - The Portal identifier
- status String
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
Outputs
All input properties are implicitly available as output properties. Additionally, the PortalApplicationRegistration resource produces the following output properties:
- Api
Portal
Application Registration Api - Details about the API the application is registered to.
- Application
Portal
Application Registration Application - Details about the application the registration is part of.
- Consumer
Portal
Application Registration Consumer - Details about the consumer associated with this application registration.
- 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.
- Api
Portal
Application Registration Api - Details about the API the application is registered to.
- Application
Portal
Application Registration Application - Details about the application the registration is part of.
- Consumer
Portal
Application Registration Consumer - Details about the consumer associated with this application registration.
- 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.
- api object
- Details about the API the application is registered to.
- application object
- Details about the application the registration is part of.
- consumer object
- Details about the consumer associated with this application registration.
- 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.
- api
Portal
Application Registration Api - Details about the API the application is registered to.
- application
Portal
Application Registration Application - Details about the application the registration is part of.
- consumer
Portal
Application Registration Consumer - Details about the consumer associated with this application registration.
- 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.
- api
Portal
Application Registration Api - Details about the API the application is registered to.
- application
Portal
Application Registration Application - Details about the application the registration is part of.
- consumer
Portal
Application Registration Consumer - Details about the consumer associated with this application registration.
- 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.
- api
Portal
Application Registration Api - Details about the API the application is registered to.
- application
Portal
Application Registration Application - Details about the application the registration is part of.
- consumer
Portal
Application Registration Consumer - Details about the consumer associated with this application registration.
- 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.
- api Property Map
- Details about the API the application is registered to.
- application Property Map
- Details about the application the registration is part of.
- consumer Property Map
- Details about the consumer associated with this application registration.
- 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 PortalApplicationRegistration Resource
Get an existing PortalApplicationRegistration 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?: PortalApplicationRegistrationState, opts?: CustomResourceOptions): PortalApplicationRegistration@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
api: Optional[PortalApplicationRegistrationApiArgs] = None,
api_id: Optional[str] = None,
application: Optional[PortalApplicationRegistrationApplicationArgs] = None,
application_id: Optional[str] = None,
consumer: Optional[PortalApplicationRegistrationConsumerArgs] = None,
created_at: Optional[str] = None,
portal_id: Optional[str] = None,
status: Optional[str] = None,
updated_at: Optional[str] = None) -> PortalApplicationRegistrationfunc GetPortalApplicationRegistration(ctx *Context, name string, id IDInput, state *PortalApplicationRegistrationState, opts ...ResourceOption) (*PortalApplicationRegistration, error)public static PortalApplicationRegistration Get(string name, Input<string> id, PortalApplicationRegistrationState? state, CustomResourceOptions? opts = null)public static PortalApplicationRegistration get(String name, Output<String> id, PortalApplicationRegistrationState state, CustomResourceOptions options)resources: _: type: konnect:PortalApplicationRegistration get: id: ${id}import {
to = konnect_portal_application_registration.example
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.
- Api
Portal
Application Registration Api - Details about the API the application is registered to.
- Api
Id string - The ID of the API the application is registering for. Requires replacement if changed.
- Application
Portal
Application Registration Application - Details about the application the registration is part of.
- Application
Id string - ID of the application.
- Consumer
Portal
Application Registration Consumer - Details about the consumer associated with this application registration.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Portal
Id string - The Portal identifier
- Status string
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- Api
Portal
Application Registration Api Args - Details about the API the application is registered to.
- Api
Id string - The ID of the API the application is registering for. Requires replacement if changed.
- Application
Portal
Application Registration Application Args - Details about the application the registration is part of.
- Application
Id string - ID of the application.
- Consumer
Portal
Application Registration Consumer Args - Details about the consumer associated with this application registration.
- Created
At string - An ISO-8601 timestamp representation of entity creation date.
- Portal
Id string - The Portal identifier
- Status string
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- Updated
At string - An ISO-8601 timestamp representation of entity update date.
- api object
- Details about the API the application is registered to.
- api_
id string - The ID of the API the application is registering for. Requires replacement if changed.
- application object
- Details about the application the registration is part of.
- application_
id string - ID of the application.
- consumer object
- Details about the consumer associated with this application registration.
- created_
at string - An ISO-8601 timestamp representation of entity creation date.
- portal_
id string - The Portal identifier
- status string
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- updated_
at string - An ISO-8601 timestamp representation of entity update date.
- api
Portal
Application Registration Api - Details about the API the application is registered to.
- api
Id String - The ID of the API the application is registering for. Requires replacement if changed.
- application
Portal
Application Registration Application - Details about the application the registration is part of.
- application
Id String - ID of the application.
- consumer
Portal
Application Registration Consumer - Details about the consumer associated with this application registration.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- portal
Id String - The Portal identifier
- status String
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- updated
At String - An ISO-8601 timestamp representation of entity update date.
- api
Portal
Application Registration Api - Details about the API the application is registered to.
- api
Id string - The ID of the API the application is registering for. Requires replacement if changed.
- application
Portal
Application Registration Application - Details about the application the registration is part of.
- application
Id string - ID of the application.
- consumer
Portal
Application Registration Consumer - Details about the consumer associated with this application registration.
- created
At string - An ISO-8601 timestamp representation of entity creation date.
- portal
Id string - The Portal identifier
- status string
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- updated
At string - An ISO-8601 timestamp representation of entity update date.
- api
Portal
Application Registration Api Args - Details about the API the application is registered to.
- api_
id str - The ID of the API the application is registering for. Requires replacement if changed.
- application
Portal
Application Registration Application Args - Details about the application the registration is part of.
- application_
id str - ID of the application.
- consumer
Portal
Application Registration Consumer Args - Details about the consumer associated with this application registration.
- created_
at str - An ISO-8601 timestamp representation of entity creation date.
- portal_
id str - The Portal identifier
- status str
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- updated_
at str - An ISO-8601 timestamp representation of entity update date.
- api Property Map
- Details about the API the application is registered to.
- api
Id String - The ID of the API the application is registering for. Requires replacement if changed.
- application Property Map
- Details about the application the registration is part of.
- application
Id String - ID of the application.
- consumer Property Map
- Details about the consumer associated with this application registration.
- created
At String - An ISO-8601 timestamp representation of entity creation date.
- portal
Id String - The Portal identifier
- status String
- The status of the application registration. It must be a valid status value for a registration creation. possible known values include one of ["approved", "pending"]
- updated
At String - An ISO-8601 timestamp representation of entity update date.
Supporting Types
PortalApplicationRegistrationApi, PortalApplicationRegistrationApiArgs
- Entity
Type string - The type of entity that is being published. Can be either an API or an API Package.
- Id string
- Contains a unique identifier used for this resource.
- Name string
- The name of the API the application is registered to.
- Version string
- The version of the API the application is registered to.
- Entity
Type string - The type of entity that is being published. Can be either an API or an API Package.
- Id string
- Contains a unique identifier used for this resource.
- Name string
- The name of the API the application is registered to.
- Version string
- The version of the API the application is registered to.
- entity_
type string - The type of entity that is being published. Can be either an API or an API Package.
- id string
- Contains a unique identifier used for this resource.
- name string
- The name of the API the application is registered to.
- version string
- The version of the API the application is registered to.
- entity
Type String - The type of entity that is being published. Can be either an API or an API Package.
- id String
- Contains a unique identifier used for this resource.
- name String
- The name of the API the application is registered to.
- version String
- The version of the API the application is registered to.
- entity
Type string - The type of entity that is being published. Can be either an API or an API Package.
- id string
- Contains a unique identifier used for this resource.
- name string
- The name of the API the application is registered to.
- version string
- The version of the API the application is registered to.
- entity_
type str - The type of entity that is being published. Can be either an API or an API Package.
- id str
- Contains a unique identifier used for this resource.
- name str
- The name of the API the application is registered to.
- version str
- The version of the API the application is registered to.
- entity
Type String - The type of entity that is being published. Can be either an API or an API Package.
- id String
- Contains a unique identifier used for this resource.
- name String
- The name of the API the application is registered to.
- version String
- The version of the API the application is registered to.
PortalApplicationRegistrationApplication, PortalApplicationRegistrationApplicationArgs
PortalApplicationRegistrationConsumer, PortalApplicationRegistrationConsumerArgs
- Control
Plane stringId - Contains a unique identifier used for this resource.
- Custom
Id string - The custom ID of the associated consumer.
- Id string
- Contains a unique identifier used for this resource.
- Username string
- The username of the associated consumer.
- Control
Plane stringId - Contains a unique identifier used for this resource.
- Custom
Id string - The custom ID of the associated consumer.
- Id string
- Contains a unique identifier used for this resource.
- Username string
- The username of the associated consumer.
- control_
plane_ stringid - Contains a unique identifier used for this resource.
- custom_
id string - The custom ID of the associated consumer.
- id string
- Contains a unique identifier used for this resource.
- username string
- The username of the associated consumer.
- control
Plane StringId - Contains a unique identifier used for this resource.
- custom
Id String - The custom ID of the associated consumer.
- id String
- Contains a unique identifier used for this resource.
- username String
- The username of the associated consumer.
- control
Plane stringId - Contains a unique identifier used for this resource.
- custom
Id string - The custom ID of the associated consumer.
- id string
- Contains a unique identifier used for this resource.
- username string
- The username of the associated consumer.
- control_
plane_ strid - Contains a unique identifier used for this resource.
- custom_
id str - The custom ID of the associated consumer.
- id str
- Contains a unique identifier used for this resource.
- username str
- The username of the associated consumer.
- control
Plane StringId - Contains a unique identifier used for this resource.
- custom
Id String - The custom ID of the associated consumer.
- id String
- Contains a unique identifier used for this resource.
- username String
- The username of the associated consumer.
Import
In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:
terraform
import {
to = konnect_portal_application_registration.my_konnect_portal_application_registration
id = jsonencode({
application_id = "..."
id = "..."
portal_id = "f32d905a-ed33-46a3-a093-d8f536af9a8a"
})
}
The pulumi import command can be used, for example:
$ pulumi import konnect:index/portalApplicationRegistration:PortalApplicationRegistration my_konnect_portal_application_registration '{"application_id": "...", "id": "...", "portal_id": "f32d905a-ed33-46a3-a093-d8f536af9a8a"}'
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
konnectTerraform Provider.
published on Tuesday, Aug 4, 2026 by kong