Viewing docs for Impart Security v0.11.3
published on Wednesday, Mar 18, 2026 by Impart Security
published on Wednesday, Mar 18, 2026 by Impart Security
Viewing docs for Impart Security v0.11.3
published on Wednesday, Mar 18, 2026 by Impart Security
published on Wednesday, Mar 18, 2026 by Impart Security
Manage a connector.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as impart from "@impart-security/pulumi-impart";
// Read in an existing specification
const exampleConnector = impart.GetConnector({
id: "<id>",
});
import pulumi
import pulumi_impart as impart
# Read in an existing specification
example_connector = impart.get_connector(id="<id>")
package main
import (
"github.com/impart-security/pulumi-impart/sdk/go/impart"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Read in an existing specification
_, err := impart.GetConnector(ctx, &impart.GetConnectorArgs{
Id: "<id>",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Impart = Pulumi.Impart;
return await Deployment.RunAsync(() =>
{
// Read in an existing specification
var exampleConnector = Impart.GetConnector.Invoke(new()
{
Id = "<id>",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.impart.ImpartFunctions;
import com.pulumi.impart.inputs.GetConnectorArgs;
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) {
// Read in an existing specification
final var exampleConnector = ImpartFunctions.GetConnector(GetConnectorArgs.builder()
.id("<id>")
.build());
}
}
variables:
# Read in an existing specification
exampleConnector:
fn::invoke:
function: impart:GetConnector
arguments:
id: <id>
Using GetConnector
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getConnector(args: GetConnectorArgs, opts?: InvokeOptions): Promise<GetConnectorResult>
function getConnectorOutput(args: GetConnectorOutputArgs, opts?: InvokeOptions): Output<GetConnectorResult>def get_connector(connector_type_id: Optional[str] = None,
id: Optional[str] = None,
is_connected: Optional[bool] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetConnectorResult
def get_connector_output(connector_type_id: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
is_connected: Optional[pulumi.Input[bool]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetConnectorResult]func GetConnector(ctx *Context, args *GetConnectorArgs, opts ...InvokeOption) (*GetConnectorResult, error)
func GetConnectorOutput(ctx *Context, args *GetConnectorOutputArgs, opts ...InvokeOption) GetConnectorResultOutputpublic static class GetConnector
{
public static Task<GetConnectorResult> InvokeAsync(GetConnectorArgs args, InvokeOptions? opts = null)
public static Output<GetConnectorResult> Invoke(GetConnectorInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetConnectorResult> getConnector(GetConnectorArgs args, InvokeOptions options)
public static Output<GetConnectorResult> getConnector(GetConnectorArgs args, InvokeOptions options)
fn::invoke:
function: impart:GetConnector
arguments:
# arguments dictionaryThe following arguments are supported:
- Id string
- Identifier for this connector.
- Connector
Type stringId - ID of the connector type (eg. ID for our Slack or Jira connector types).
- Is
Connected bool - Whether or not the connector is authenticated via OAuth2.
- Name string
- Name for this connector.
- Id string
- Identifier for this connector.
- Connector
Type stringId - ID of the connector type (eg. ID for our Slack or Jira connector types).
- Is
Connected bool - Whether or not the connector is authenticated via OAuth2.
- Name string
- Name for this connector.
- id String
- Identifier for this connector.
- connector
Type StringId - ID of the connector type (eg. ID for our Slack or Jira connector types).
- is
Connected Boolean - Whether or not the connector is authenticated via OAuth2.
- name String
- Name for this connector.
- id string
- Identifier for this connector.
- connector
Type stringId - ID of the connector type (eg. ID for our Slack or Jira connector types).
- is
Connected boolean - Whether or not the connector is authenticated via OAuth2.
- name string
- Name for this connector.
- id str
- Identifier for this connector.
- connector_
type_ strid - ID of the connector type (eg. ID for our Slack or Jira connector types).
- is_
connected bool - Whether or not the connector is authenticated via OAuth2.
- name str
- Name for this connector.
- id String
- Identifier for this connector.
- connector
Type StringId - ID of the connector type (eg. ID for our Slack or Jira connector types).
- is
Connected Boolean - Whether or not the connector is authenticated via OAuth2.
- name String
- Name for this connector.
GetConnector Result
The following output properties are available:
- Id string
- Identifier for this connector.
- Connector
Type stringId - ID of the connector type (eg. ID for our Slack or Jira connector types).
- Is
Connected bool - Whether or not the connector is authenticated via OAuth2.
- Name string
- Name for this connector.
- Id string
- Identifier for this connector.
- Connector
Type stringId - ID of the connector type (eg. ID for our Slack or Jira connector types).
- Is
Connected bool - Whether or not the connector is authenticated via OAuth2.
- Name string
- Name for this connector.
- id String
- Identifier for this connector.
- connector
Type StringId - ID of the connector type (eg. ID for our Slack or Jira connector types).
- is
Connected Boolean - Whether or not the connector is authenticated via OAuth2.
- name String
- Name for this connector.
- id string
- Identifier for this connector.
- connector
Type stringId - ID of the connector type (eg. ID for our Slack or Jira connector types).
- is
Connected boolean - Whether or not the connector is authenticated via OAuth2.
- name string
- Name for this connector.
- id str
- Identifier for this connector.
- connector_
type_ strid - ID of the connector type (eg. ID for our Slack or Jira connector types).
- is_
connected bool - Whether or not the connector is authenticated via OAuth2.
- name str
- Name for this connector.
- id String
- Identifier for this connector.
- connector
Type StringId - ID of the connector type (eg. ID for our Slack or Jira connector types).
- is
Connected Boolean - Whether or not the connector is authenticated via OAuth2.
- name String
- Name for this connector.
Package Details
- Repository
- impart impart-security/pulumi-impart
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
impartTerraform Provider.
Viewing docs for Impart Security v0.11.3
published on Wednesday, Mar 18, 2026 by Impart Security
published on Wednesday, Mar 18, 2026 by Impart Security
