1. Packages
  2. Azure Native
  3. API Docs
  4. appplatform
  5. DevToolPortal
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

azure-native.appplatform.DevToolPortal

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

    Dev Tool Portal resource Azure REST API version: 2023-05-01-preview.

    Other available API versions: 2023-07-01-preview, 2023-09-01-preview, 2023-11-01-preview, 2023-12-01, 2024-01-01-preview, 2024-05-01-preview.

    Example Usage

    DevToolPortals_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var devToolPortal = new AzureNative.AppPlatform.DevToolPortal("devToolPortal", new()
        {
            DevToolPortalName = "default",
            Properties = new AzureNative.AppPlatform.Inputs.DevToolPortalPropertiesArgs
            {
                Features = new AzureNative.AppPlatform.Inputs.DevToolPortalFeatureSettingsArgs
                {
                    ApplicationAccelerator = new AzureNative.AppPlatform.Inputs.DevToolPortalFeatureDetailArgs
                    {
                        State = AzureNative.AppPlatform.DevToolPortalFeatureState.Enabled,
                    },
                    ApplicationLiveView = new AzureNative.AppPlatform.Inputs.DevToolPortalFeatureDetailArgs
                    {
                        State = AzureNative.AppPlatform.DevToolPortalFeatureState.Enabled,
                    },
                },
                Public = true,
                SsoProperties = new AzureNative.AppPlatform.Inputs.DevToolPortalSsoPropertiesArgs
                {
                    ClientId = "00000000-0000-0000-0000-000000000000",
                    ClientSecret = "xxxxx",
                    MetadataUrl = "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration",
                    Scopes = new[]
                    {
                        "openid",
                    },
                },
            },
            ResourceGroupName = "myResourceGroup",
            ServiceName = "myservice",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/appplatform/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := appplatform.NewDevToolPortal(ctx, "devToolPortal", &appplatform.DevToolPortalArgs{
    			DevToolPortalName: pulumi.String("default"),
    			Properties: &appplatform.DevToolPortalPropertiesArgs{
    				Features: &appplatform.DevToolPortalFeatureSettingsArgs{
    					ApplicationAccelerator: &appplatform.DevToolPortalFeatureDetailArgs{
    						State: pulumi.String(appplatform.DevToolPortalFeatureStateEnabled),
    					},
    					ApplicationLiveView: &appplatform.DevToolPortalFeatureDetailArgs{
    						State: pulumi.String(appplatform.DevToolPortalFeatureStateEnabled),
    					},
    				},
    				Public: pulumi.Bool(true),
    				SsoProperties: &appplatform.DevToolPortalSsoPropertiesArgs{
    					ClientId:     pulumi.String("00000000-0000-0000-0000-000000000000"),
    					ClientSecret: pulumi.String("xxxxx"),
    					MetadataUrl:  pulumi.String("https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration"),
    					Scopes: pulumi.StringArray{
    						pulumi.String("openid"),
    					},
    				},
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    			ServiceName:       pulumi.String("myservice"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.appplatform.DevToolPortal;
    import com.pulumi.azurenative.appplatform.DevToolPortalArgs;
    import com.pulumi.azurenative.appplatform.inputs.DevToolPortalPropertiesArgs;
    import com.pulumi.azurenative.appplatform.inputs.DevToolPortalFeatureSettingsArgs;
    import com.pulumi.azurenative.appplatform.inputs.DevToolPortalFeatureDetailArgs;
    import com.pulumi.azurenative.appplatform.inputs.DevToolPortalSsoPropertiesArgs;
    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 devToolPortal = new DevToolPortal("devToolPortal", DevToolPortalArgs.builder()        
                .devToolPortalName("default")
                .properties(DevToolPortalPropertiesArgs.builder()
                    .features(DevToolPortalFeatureSettingsArgs.builder()
                        .applicationAccelerator(DevToolPortalFeatureDetailArgs.builder()
                            .state("Enabled")
                            .build())
                        .applicationLiveView(DevToolPortalFeatureDetailArgs.builder()
                            .state("Enabled")
                            .build())
                        .build())
                    .public_(true)
                    .ssoProperties(DevToolPortalSsoPropertiesArgs.builder()
                        .clientId("00000000-0000-0000-0000-000000000000")
                        .clientSecret("xxxxx")
                        .metadataUrl("https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration")
                        .scopes("openid")
                        .build())
                    .build())
                .resourceGroupName("myResourceGroup")
                .serviceName("myservice")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    dev_tool_portal = azure_native.appplatform.DevToolPortal("devToolPortal",
        dev_tool_portal_name="default",
        properties=azure_native.appplatform.DevToolPortalPropertiesArgs(
            features=azure_native.appplatform.DevToolPortalFeatureSettingsArgs(
                application_accelerator=azure_native.appplatform.DevToolPortalFeatureDetailArgs(
                    state=azure_native.appplatform.DevToolPortalFeatureState.ENABLED,
                ),
                application_live_view=azure_native.appplatform.DevToolPortalFeatureDetailArgs(
                    state=azure_native.appplatform.DevToolPortalFeatureState.ENABLED,
                ),
            ),
            public=True,
            sso_properties=azure_native.appplatform.DevToolPortalSsoPropertiesArgs(
                client_id="00000000-0000-0000-0000-000000000000",
                client_secret="xxxxx",
                metadata_url="https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration",
                scopes=["openid"],
            ),
        ),
        resource_group_name="myResourceGroup",
        service_name="myservice")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const devToolPortal = new azure_native.appplatform.DevToolPortal("devToolPortal", {
        devToolPortalName: "default",
        properties: {
            features: {
                applicationAccelerator: {
                    state: azure_native.appplatform.DevToolPortalFeatureState.Enabled,
                },
                applicationLiveView: {
                    state: azure_native.appplatform.DevToolPortalFeatureState.Enabled,
                },
            },
            "public": true,
            ssoProperties: {
                clientId: "00000000-0000-0000-0000-000000000000",
                clientSecret: "xxxxx",
                metadataUrl: "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration",
                scopes: ["openid"],
            },
        },
        resourceGroupName: "myResourceGroup",
        serviceName: "myservice",
    });
    
    resources:
      devToolPortal:
        type: azure-native:appplatform:DevToolPortal
        properties:
          devToolPortalName: default
          properties:
            features:
              applicationAccelerator:
                state: Enabled
              applicationLiveView:
                state: Enabled
            public: true
            ssoProperties:
              clientId: 00000000-0000-0000-0000-000000000000
              clientSecret: xxxxx
              metadataUrl: https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration
              scopes:
                - openid
          resourceGroupName: myResourceGroup
          serviceName: myservice
    

    Create DevToolPortal Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DevToolPortal(name: string, args: DevToolPortalArgs, opts?: CustomResourceOptions);
    @overload
    def DevToolPortal(resource_name: str,
                      args: DevToolPortalArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def DevToolPortal(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      resource_group_name: Optional[str] = None,
                      service_name: Optional[str] = None,
                      dev_tool_portal_name: Optional[str] = None,
                      properties: Optional[DevToolPortalPropertiesArgs] = None)
    func NewDevToolPortal(ctx *Context, name string, args DevToolPortalArgs, opts ...ResourceOption) (*DevToolPortal, error)
    public DevToolPortal(string name, DevToolPortalArgs args, CustomResourceOptions? opts = null)
    public DevToolPortal(String name, DevToolPortalArgs args)
    public DevToolPortal(String name, DevToolPortalArgs args, CustomResourceOptions options)
    
    type: azure-native:appplatform:DevToolPortal
    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 DevToolPortalArgs
    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 DevToolPortalArgs
    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 DevToolPortalArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DevToolPortalArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DevToolPortalArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var devToolPortalResource = new AzureNative.AppPlatform.DevToolPortal("devToolPortalResource", new()
    {
        ResourceGroupName = "string",
        ServiceName = "string",
        DevToolPortalName = "string",
        Properties = new AzureNative.AppPlatform.Inputs.DevToolPortalPropertiesArgs
        {
            Features = new AzureNative.AppPlatform.Inputs.DevToolPortalFeatureSettingsArgs
            {
                ApplicationAccelerator = new AzureNative.AppPlatform.Inputs.DevToolPortalFeatureDetailArgs
                {
                    State = "string",
                },
                ApplicationLiveView = new AzureNative.AppPlatform.Inputs.DevToolPortalFeatureDetailArgs
                {
                    State = "string",
                },
            },
            Public = false,
            SsoProperties = new AzureNative.AppPlatform.Inputs.DevToolPortalSsoPropertiesArgs
            {
                ClientId = "string",
                ClientSecret = "string",
                MetadataUrl = "string",
                Scopes = new[]
                {
                    "string",
                },
            },
        },
    });
    
    example, err := appplatform.NewDevToolPortal(ctx, "devToolPortalResource", &appplatform.DevToolPortalArgs{
    ResourceGroupName: pulumi.String("string"),
    ServiceName: pulumi.String("string"),
    DevToolPortalName: pulumi.String("string"),
    Properties: &appplatform.DevToolPortalPropertiesArgs{
    Features: &appplatform.DevToolPortalFeatureSettingsArgs{
    ApplicationAccelerator: &appplatform.DevToolPortalFeatureDetailArgs{
    State: pulumi.String("string"),
    },
    ApplicationLiveView: &appplatform.DevToolPortalFeatureDetailArgs{
    State: pulumi.String("string"),
    },
    },
    Public: pulumi.Bool(false),
    SsoProperties: &appplatform.DevToolPortalSsoPropertiesArgs{
    ClientId: pulumi.String("string"),
    ClientSecret: pulumi.String("string"),
    MetadataUrl: pulumi.String("string"),
    Scopes: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    })
    
    var devToolPortalResource = new DevToolPortal("devToolPortalResource", DevToolPortalArgs.builder()        
        .resourceGroupName("string")
        .serviceName("string")
        .devToolPortalName("string")
        .properties(DevToolPortalPropertiesArgs.builder()
            .features(DevToolPortalFeatureSettingsArgs.builder()
                .applicationAccelerator(DevToolPortalFeatureDetailArgs.builder()
                    .state("string")
                    .build())
                .applicationLiveView(DevToolPortalFeatureDetailArgs.builder()
                    .state("string")
                    .build())
                .build())
            .public_(false)
            .ssoProperties(DevToolPortalSsoPropertiesArgs.builder()
                .clientId("string")
                .clientSecret("string")
                .metadataUrl("string")
                .scopes("string")
                .build())
            .build())
        .build());
    
    dev_tool_portal_resource = azure_native.appplatform.DevToolPortal("devToolPortalResource",
        resource_group_name="string",
        service_name="string",
        dev_tool_portal_name="string",
        properties=azure_native.appplatform.DevToolPortalPropertiesArgs(
            features=azure_native.appplatform.DevToolPortalFeatureSettingsArgs(
                application_accelerator=azure_native.appplatform.DevToolPortalFeatureDetailArgs(
                    state="string",
                ),
                application_live_view=azure_native.appplatform.DevToolPortalFeatureDetailArgs(
                    state="string",
                ),
            ),
            public=False,
            sso_properties=azure_native.appplatform.DevToolPortalSsoPropertiesArgs(
                client_id="string",
                client_secret="string",
                metadata_url="string",
                scopes=["string"],
            ),
        ))
    
    const devToolPortalResource = new azure_native.appplatform.DevToolPortal("devToolPortalResource", {
        resourceGroupName: "string",
        serviceName: "string",
        devToolPortalName: "string",
        properties: {
            features: {
                applicationAccelerator: {
                    state: "string",
                },
                applicationLiveView: {
                    state: "string",
                },
            },
            "public": false,
            ssoProperties: {
                clientId: "string",
                clientSecret: "string",
                metadataUrl: "string",
                scopes: ["string"],
            },
        },
    });
    
    type: azure-native:appplatform:DevToolPortal
    properties:
        devToolPortalName: string
        properties:
            features:
                applicationAccelerator:
                    state: string
                applicationLiveView:
                    state: string
            public: false
            ssoProperties:
                clientId: string
                clientSecret: string
                metadataUrl: string
                scopes:
                    - string
        resourceGroupName: string
        serviceName: string
    

    DevToolPortal Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The DevToolPortal resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    ServiceName string
    The name of the Service resource.
    DevToolPortalName string
    The name of Dev Tool Portal.
    Properties Pulumi.AzureNative.AppPlatform.Inputs.DevToolPortalProperties
    Dev Tool Portal properties payload
    ResourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    ServiceName string
    The name of the Service resource.
    DevToolPortalName string
    The name of Dev Tool Portal.
    Properties DevToolPortalPropertiesArgs
    Dev Tool Portal properties payload
    resourceGroupName String
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    serviceName String
    The name of the Service resource.
    devToolPortalName String
    The name of Dev Tool Portal.
    properties DevToolPortalProperties
    Dev Tool Portal properties payload
    resourceGroupName string
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    serviceName string
    The name of the Service resource.
    devToolPortalName string
    The name of Dev Tool Portal.
    properties DevToolPortalProperties
    Dev Tool Portal properties payload
    resource_group_name str
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    service_name str
    The name of the Service resource.
    dev_tool_portal_name str
    The name of Dev Tool Portal.
    properties DevToolPortalPropertiesArgs
    Dev Tool Portal properties payload
    resourceGroupName String
    The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
    serviceName String
    The name of the Service resource.
    devToolPortalName String
    The name of Dev Tool Portal.
    properties Property Map
    Dev Tool Portal properties payload

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DevToolPortal resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource.
    SystemData Pulumi.AzureNative.AppPlatform.Outputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource.
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    Type string
    The type of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource.
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type string
    The type of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource.
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the resource.
    type str
    The type of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource.
    type String
    The type of the resource.

    Supporting Types

    DevToolPortalComponentResponse, DevToolPortalComponentResponseArgs

    Instances List<Pulumi.AzureNative.AppPlatform.Inputs.DevToolPortalInstanceResponse>
    Collection of instances belong to Dev Tool Portal.
    Name string
    ResourceRequests Pulumi.AzureNative.AppPlatform.Inputs.DevToolPortalResourceRequestsResponse
    The requested resource quantity for required CPU and Memory.
    Instances []DevToolPortalInstanceResponse
    Collection of instances belong to Dev Tool Portal.
    Name string
    ResourceRequests DevToolPortalResourceRequestsResponse
    The requested resource quantity for required CPU and Memory.
    instances List<DevToolPortalInstanceResponse>
    Collection of instances belong to Dev Tool Portal.
    name String
    resourceRequests DevToolPortalResourceRequestsResponse
    The requested resource quantity for required CPU and Memory.
    instances DevToolPortalInstanceResponse[]
    Collection of instances belong to Dev Tool Portal.
    name string
    resourceRequests DevToolPortalResourceRequestsResponse
    The requested resource quantity for required CPU and Memory.
    instances Sequence[DevToolPortalInstanceResponse]
    Collection of instances belong to Dev Tool Portal.
    name str
    resource_requests DevToolPortalResourceRequestsResponse
    The requested resource quantity for required CPU and Memory.
    instances List<Property Map>
    Collection of instances belong to Dev Tool Portal.
    name String
    resourceRequests Property Map
    The requested resource quantity for required CPU and Memory.

    DevToolPortalFeatureDetail, DevToolPortalFeatureDetailArgs

    State string | DevToolPortalFeatureState
    State of the plugin
    state String | DevToolPortalFeatureState
    State of the plugin
    state string | DevToolPortalFeatureState
    State of the plugin
    state str | DevToolPortalFeatureState
    State of the plugin
    state String | "Enabled" | "Disabled"
    State of the plugin

    DevToolPortalFeatureDetailResponse, DevToolPortalFeatureDetailResponseArgs

    Route string
    Route path to visit the plugin
    State string
    State of the plugin
    Route string
    Route path to visit the plugin
    State string
    State of the plugin
    route String
    Route path to visit the plugin
    state String
    State of the plugin
    route string
    Route path to visit the plugin
    state string
    State of the plugin
    route str
    Route path to visit the plugin
    state str
    State of the plugin
    route String
    Route path to visit the plugin
    state String
    State of the plugin

    DevToolPortalFeatureSettings, DevToolPortalFeatureSettingsArgs

    applicationAccelerator Property Map
    Detail of Accelerator plugin
    applicationLiveView Property Map
    Detail of App Live View plugin

    DevToolPortalFeatureSettingsResponse, DevToolPortalFeatureSettingsResponseArgs

    applicationAccelerator Property Map
    Detail of Accelerator plugin
    applicationLiveView Property Map
    Detail of App Live View plugin

    DevToolPortalFeatureState, DevToolPortalFeatureStateArgs

    Enabled
    EnabledEnable the plugin in Dev Tool Portal.
    Disabled
    DisabledDisable the plugin in Dev Tool Portal.
    DevToolPortalFeatureStateEnabled
    EnabledEnable the plugin in Dev Tool Portal.
    DevToolPortalFeatureStateDisabled
    DisabledDisable the plugin in Dev Tool Portal.
    Enabled
    EnabledEnable the plugin in Dev Tool Portal.
    Disabled
    DisabledDisable the plugin in Dev Tool Portal.
    Enabled
    EnabledEnable the plugin in Dev Tool Portal.
    Disabled
    DisabledDisable the plugin in Dev Tool Portal.
    ENABLED
    EnabledEnable the plugin in Dev Tool Portal.
    DISABLED
    DisabledDisable the plugin in Dev Tool Portal.
    "Enabled"
    EnabledEnable the plugin in Dev Tool Portal.
    "Disabled"
    DisabledDisable the plugin in Dev Tool Portal.

    DevToolPortalInstanceResponse, DevToolPortalInstanceResponseArgs

    Name string
    Name of the Dev Tool Portal instance.
    Status string
    Status of the Dev Tool Portal instance. It can be Pending, Running, Succeeded, Failed, Unknown.
    Name string
    Name of the Dev Tool Portal instance.
    Status string
    Status of the Dev Tool Portal instance. It can be Pending, Running, Succeeded, Failed, Unknown.
    name String
    Name of the Dev Tool Portal instance.
    status String
    Status of the Dev Tool Portal instance. It can be Pending, Running, Succeeded, Failed, Unknown.
    name string
    Name of the Dev Tool Portal instance.
    status string
    Status of the Dev Tool Portal instance. It can be Pending, Running, Succeeded, Failed, Unknown.
    name str
    Name of the Dev Tool Portal instance.
    status str
    Status of the Dev Tool Portal instance. It can be Pending, Running, Succeeded, Failed, Unknown.
    name String
    Name of the Dev Tool Portal instance.
    status String
    Status of the Dev Tool Portal instance. It can be Pending, Running, Succeeded, Failed, Unknown.

    DevToolPortalProperties, DevToolPortalPropertiesArgs

    Features Pulumi.AzureNative.AppPlatform.Inputs.DevToolPortalFeatureSettings
    Settings for Dev Tool Portal
    Public bool
    Indicates whether the resource exposes public endpoint
    SsoProperties Pulumi.AzureNative.AppPlatform.Inputs.DevToolPortalSsoProperties
    Single sign-on related configuration
    Features DevToolPortalFeatureSettings
    Settings for Dev Tool Portal
    Public bool
    Indicates whether the resource exposes public endpoint
    SsoProperties DevToolPortalSsoProperties
    Single sign-on related configuration
    features DevToolPortalFeatureSettings
    Settings for Dev Tool Portal
    public_ Boolean
    Indicates whether the resource exposes public endpoint
    ssoProperties DevToolPortalSsoProperties
    Single sign-on related configuration
    features DevToolPortalFeatureSettings
    Settings for Dev Tool Portal
    public boolean
    Indicates whether the resource exposes public endpoint
    ssoProperties DevToolPortalSsoProperties
    Single sign-on related configuration
    features DevToolPortalFeatureSettings
    Settings for Dev Tool Portal
    public bool
    Indicates whether the resource exposes public endpoint
    sso_properties DevToolPortalSsoProperties
    Single sign-on related configuration
    features Property Map
    Settings for Dev Tool Portal
    public Boolean
    Indicates whether the resource exposes public endpoint
    ssoProperties Property Map
    Single sign-on related configuration

    DevToolPortalPropertiesResponse, DevToolPortalPropertiesResponseArgs

    Components List<Pulumi.AzureNative.AppPlatform.Inputs.DevToolPortalComponentResponse>
    Collection of components belong to Dev Tool Portal.
    ProvisioningState string
    State of the Dev Tool Portal.
    Url string
    URL of the resource, exposed when 'public' is true.
    Features Pulumi.AzureNative.AppPlatform.Inputs.DevToolPortalFeatureSettingsResponse
    Settings for Dev Tool Portal
    Public bool
    Indicates whether the resource exposes public endpoint
    SsoProperties Pulumi.AzureNative.AppPlatform.Inputs.DevToolPortalSsoPropertiesResponse
    Single sign-on related configuration
    Components []DevToolPortalComponentResponse
    Collection of components belong to Dev Tool Portal.
    ProvisioningState string
    State of the Dev Tool Portal.
    Url string
    URL of the resource, exposed when 'public' is true.
    Features DevToolPortalFeatureSettingsResponse
    Settings for Dev Tool Portal
    Public bool
    Indicates whether the resource exposes public endpoint
    SsoProperties DevToolPortalSsoPropertiesResponse
    Single sign-on related configuration
    components List<DevToolPortalComponentResponse>
    Collection of components belong to Dev Tool Portal.
    provisioningState String
    State of the Dev Tool Portal.
    url String
    URL of the resource, exposed when 'public' is true.
    features DevToolPortalFeatureSettingsResponse
    Settings for Dev Tool Portal
    public_ Boolean
    Indicates whether the resource exposes public endpoint
    ssoProperties DevToolPortalSsoPropertiesResponse
    Single sign-on related configuration
    components DevToolPortalComponentResponse[]
    Collection of components belong to Dev Tool Portal.
    provisioningState string
    State of the Dev Tool Portal.
    url string
    URL of the resource, exposed when 'public' is true.
    features DevToolPortalFeatureSettingsResponse
    Settings for Dev Tool Portal
    public boolean
    Indicates whether the resource exposes public endpoint
    ssoProperties DevToolPortalSsoPropertiesResponse
    Single sign-on related configuration
    components Sequence[DevToolPortalComponentResponse]
    Collection of components belong to Dev Tool Portal.
    provisioning_state str
    State of the Dev Tool Portal.
    url str
    URL of the resource, exposed when 'public' is true.
    features DevToolPortalFeatureSettingsResponse
    Settings for Dev Tool Portal
    public bool
    Indicates whether the resource exposes public endpoint
    sso_properties DevToolPortalSsoPropertiesResponse
    Single sign-on related configuration
    components List<Property Map>
    Collection of components belong to Dev Tool Portal.
    provisioningState String
    State of the Dev Tool Portal.
    url String
    URL of the resource, exposed when 'public' is true.
    features Property Map
    Settings for Dev Tool Portal
    public Boolean
    Indicates whether the resource exposes public endpoint
    ssoProperties Property Map
    Single sign-on related configuration

    DevToolPortalResourceRequestsResponse, DevToolPortalResourceRequestsResponseArgs

    Cpu string
    Cpu quantity allocated to each Dev Tool Portal instance. 1 core can be represented by 1 or 1000m
    InstanceCount int
    Desired instance count of Dev Tool Portal.
    Memory string
    Memory quantity allocated to each Dev Tool Portal instance. 1 GB can be represented by 1Gi or 1024Mi.
    Cpu string
    Cpu quantity allocated to each Dev Tool Portal instance. 1 core can be represented by 1 or 1000m
    InstanceCount int
    Desired instance count of Dev Tool Portal.
    Memory string
    Memory quantity allocated to each Dev Tool Portal instance. 1 GB can be represented by 1Gi or 1024Mi.
    cpu String
    Cpu quantity allocated to each Dev Tool Portal instance. 1 core can be represented by 1 or 1000m
    instanceCount Integer
    Desired instance count of Dev Tool Portal.
    memory String
    Memory quantity allocated to each Dev Tool Portal instance. 1 GB can be represented by 1Gi or 1024Mi.
    cpu string
    Cpu quantity allocated to each Dev Tool Portal instance. 1 core can be represented by 1 or 1000m
    instanceCount number
    Desired instance count of Dev Tool Portal.
    memory string
    Memory quantity allocated to each Dev Tool Portal instance. 1 GB can be represented by 1Gi or 1024Mi.
    cpu str
    Cpu quantity allocated to each Dev Tool Portal instance. 1 core can be represented by 1 or 1000m
    instance_count int
    Desired instance count of Dev Tool Portal.
    memory str
    Memory quantity allocated to each Dev Tool Portal instance. 1 GB can be represented by 1Gi or 1024Mi.
    cpu String
    Cpu quantity allocated to each Dev Tool Portal instance. 1 core can be represented by 1 or 1000m
    instanceCount Number
    Desired instance count of Dev Tool Portal.
    memory String
    Memory quantity allocated to each Dev Tool Portal instance. 1 GB can be represented by 1Gi or 1024Mi.

    DevToolPortalSsoProperties, DevToolPortalSsoPropertiesArgs

    ClientId string
    The public identifier for the application
    ClientSecret string
    The secret known only to the application and the authorization server
    MetadataUrl string
    The URI of a JSON file with generic OIDC provider configuration.
    Scopes List<string>
    It defines the specific actions applications can be allowed to do on a user's behalf
    ClientId string
    The public identifier for the application
    ClientSecret string
    The secret known only to the application and the authorization server
    MetadataUrl string
    The URI of a JSON file with generic OIDC provider configuration.
    Scopes []string
    It defines the specific actions applications can be allowed to do on a user's behalf
    clientId String
    The public identifier for the application
    clientSecret String
    The secret known only to the application and the authorization server
    metadataUrl String
    The URI of a JSON file with generic OIDC provider configuration.
    scopes List<String>
    It defines the specific actions applications can be allowed to do on a user's behalf
    clientId string
    The public identifier for the application
    clientSecret string
    The secret known only to the application and the authorization server
    metadataUrl string
    The URI of a JSON file with generic OIDC provider configuration.
    scopes string[]
    It defines the specific actions applications can be allowed to do on a user's behalf
    client_id str
    The public identifier for the application
    client_secret str
    The secret known only to the application and the authorization server
    metadata_url str
    The URI of a JSON file with generic OIDC provider configuration.
    scopes Sequence[str]
    It defines the specific actions applications can be allowed to do on a user's behalf
    clientId String
    The public identifier for the application
    clientSecret String
    The secret known only to the application and the authorization server
    metadataUrl String
    The URI of a JSON file with generic OIDC provider configuration.
    scopes List<String>
    It defines the specific actions applications can be allowed to do on a user's behalf

    DevToolPortalSsoPropertiesResponse, DevToolPortalSsoPropertiesResponseArgs

    ClientId string
    The public identifier for the application
    ClientSecret string
    The secret known only to the application and the authorization server
    MetadataUrl string
    The URI of a JSON file with generic OIDC provider configuration.
    Scopes List<string>
    It defines the specific actions applications can be allowed to do on a user's behalf
    ClientId string
    The public identifier for the application
    ClientSecret string
    The secret known only to the application and the authorization server
    MetadataUrl string
    The URI of a JSON file with generic OIDC provider configuration.
    Scopes []string
    It defines the specific actions applications can be allowed to do on a user's behalf
    clientId String
    The public identifier for the application
    clientSecret String
    The secret known only to the application and the authorization server
    metadataUrl String
    The URI of a JSON file with generic OIDC provider configuration.
    scopes List<String>
    It defines the specific actions applications can be allowed to do on a user's behalf
    clientId string
    The public identifier for the application
    clientSecret string
    The secret known only to the application and the authorization server
    metadataUrl string
    The URI of a JSON file with generic OIDC provider configuration.
    scopes string[]
    It defines the specific actions applications can be allowed to do on a user's behalf
    client_id str
    The public identifier for the application
    client_secret str
    The secret known only to the application and the authorization server
    metadata_url str
    The URI of a JSON file with generic OIDC provider configuration.
    scopes Sequence[str]
    It defines the specific actions applications can be allowed to do on a user's behalf
    clientId String
    The public identifier for the application
    clientSecret String
    The secret known only to the application and the authorization server
    metadataUrl String
    The URI of a JSON file with generic OIDC provider configuration.
    scopes List<String>
    It defines the specific actions applications can be allowed to do on a user's behalf

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource modification (UTC).
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource modification (UTC).
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource modification (UTC).
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource modification (UTC).
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource modification (UTC).
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource modification (UTC).
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:appplatform:DevToolPortal default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AppPlatform/Spring/{serviceName}/DevToolPortals/{devToolPortalName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi