1. Packages
  2. Azure Native
  3. API Docs
  4. app
  5. JavaComponent
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.app.JavaComponent

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    Java Component.

    Uses Azure REST API version 2024-10-02-preview. In version 2.x of the Azure Native provider, it used API version 2023-11-02-preview.

    Other available API versions: 2023-11-02-preview, 2024-02-02-preview, 2024-08-02-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native app [ApiVersion]. See the version guide for details.

    Example Usage

    Create or Update Java Component

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var javaComponent = new AzureNative.App.JavaComponent("javaComponent", new()
        {
            EnvironmentName = "myenvironment",
            Name = "myjavacomponent",
            Properties = new AzureNative.App.Inputs.SpringBootAdminComponentArgs
            {
                ComponentType = "SpringBootAdmin",
                Configurations = new[]
                {
                    new AzureNative.App.Inputs.JavaComponentConfigurationPropertyArgs
                    {
                        PropertyName = "spring.boot.admin.ui.enable-toasts",
                        Value = "true",
                    },
                    new AzureNative.App.Inputs.JavaComponentConfigurationPropertyArgs
                    {
                        PropertyName = "spring.boot.admin.monitor.status-interval",
                        Value = "10000ms",
                    },
                },
                Scale = new AzureNative.App.Inputs.JavaComponentPropertiesScaleArgs
                {
                    MaxReplicas = 1,
                    MinReplicas = 1,
                },
            },
            ResourceGroupName = "examplerg",
        });
    
    });
    
    package main
    
    import (
    	app "github.com/pulumi/pulumi-azure-native-sdk/app/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := app.NewJavaComponent(ctx, "javaComponent", &app.JavaComponentArgs{
    			EnvironmentName: pulumi.String("myenvironment"),
    			Name:            pulumi.String("myjavacomponent"),
    			Properties: &app.SpringBootAdminComponentArgs{
    				ComponentType: pulumi.String("SpringBootAdmin"),
    				Configurations: app.JavaComponentConfigurationPropertyArray{
    					&app.JavaComponentConfigurationPropertyArgs{
    						PropertyName: pulumi.String("spring.boot.admin.ui.enable-toasts"),
    						Value:        pulumi.String("true"),
    					},
    					&app.JavaComponentConfigurationPropertyArgs{
    						PropertyName: pulumi.String("spring.boot.admin.monitor.status-interval"),
    						Value:        pulumi.String("10000ms"),
    					},
    				},
    				Scale: &app.JavaComponentPropertiesScaleArgs{
    					MaxReplicas: pulumi.Int(1),
    					MinReplicas: pulumi.Int(1),
    				},
    			},
    			ResourceGroupName: pulumi.String("examplerg"),
    		})
    		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.app.JavaComponent;
    import com.pulumi.azurenative.app.JavaComponentArgs;
    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 javaComponent = new JavaComponent("javaComponent", JavaComponentArgs.builder()
                .environmentName("myenvironment")
                .name("myjavacomponent")
                .properties(SpringBootAdminComponentArgs.builder()
                    .componentType("SpringBootAdmin")
                    .configurations(                
                        JavaComponentConfigurationPropertyArgs.builder()
                            .propertyName("spring.boot.admin.ui.enable-toasts")
                            .value("true")
                            .build(),
                        JavaComponentConfigurationPropertyArgs.builder()
                            .propertyName("spring.boot.admin.monitor.status-interval")
                            .value("10000ms")
                            .build())
                    .scale(JavaComponentPropertiesScaleArgs.builder()
                        .maxReplicas(1)
                        .minReplicas(1)
                        .build())
                    .build())
                .resourceGroupName("examplerg")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const javaComponent = new azure_native.app.JavaComponent("javaComponent", {
        environmentName: "myenvironment",
        name: "myjavacomponent",
        properties: {
            componentType: "SpringBootAdmin",
            configurations: [
                {
                    propertyName: "spring.boot.admin.ui.enable-toasts",
                    value: "true",
                },
                {
                    propertyName: "spring.boot.admin.monitor.status-interval",
                    value: "10000ms",
                },
            ],
            scale: {
                maxReplicas: 1,
                minReplicas: 1,
            },
        },
        resourceGroupName: "examplerg",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    java_component = azure_native.app.JavaComponent("javaComponent",
        environment_name="myenvironment",
        name="myjavacomponent",
        properties={
            "component_type": "SpringBootAdmin",
            "configurations": [
                {
                    "property_name": "spring.boot.admin.ui.enable-toasts",
                    "value": "true",
                },
                {
                    "property_name": "spring.boot.admin.monitor.status-interval",
                    "value": "10000ms",
                },
            ],
            "scale": {
                "max_replicas": 1,
                "min_replicas": 1,
            },
        },
        resource_group_name="examplerg")
    
    resources:
      javaComponent:
        type: azure-native:app:JavaComponent
        properties:
          environmentName: myenvironment
          name: myjavacomponent
          properties:
            componentType: SpringBootAdmin
            configurations:
              - propertyName: spring.boot.admin.ui.enable-toasts
                value: 'true'
              - propertyName: spring.boot.admin.monitor.status-interval
                value: 10000ms
            scale:
              maxReplicas: 1
              minReplicas: 1
          resourceGroupName: examplerg
    

    Create or Update Java Component with ServiceBinds

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var javaComponent = new AzureNative.App.JavaComponent("javaComponent", new()
        {
            EnvironmentName = "myenvironment",
            Name = "myjavacomponent",
            Properties = new AzureNative.App.Inputs.SpringBootAdminComponentArgs
            {
                ComponentType = "SpringBootAdmin",
                Configurations = new[]
                {
                    new AzureNative.App.Inputs.JavaComponentConfigurationPropertyArgs
                    {
                        PropertyName = "spring.boot.admin.ui.enable-toasts",
                        Value = "true",
                    },
                    new AzureNative.App.Inputs.JavaComponentConfigurationPropertyArgs
                    {
                        PropertyName = "spring.boot.admin.monitor.status-interval",
                        Value = "10000ms",
                    },
                },
                Scale = new AzureNative.App.Inputs.JavaComponentPropertiesScaleArgs
                {
                    MaxReplicas = 1,
                    MinReplicas = 1,
                },
                ServiceBinds = new[]
                {
                    new AzureNative.App.Inputs.JavaComponentServiceBindArgs
                    {
                        Name = "yellowcat",
                        ServiceId = "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/javaComponents/yellowcat",
                    },
                },
            },
            ResourceGroupName = "examplerg",
        });
    
    });
    
    package main
    
    import (
    	app "github.com/pulumi/pulumi-azure-native-sdk/app/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := app.NewJavaComponent(ctx, "javaComponent", &app.JavaComponentArgs{
    			EnvironmentName: pulumi.String("myenvironment"),
    			Name:            pulumi.String("myjavacomponent"),
    			Properties: &app.SpringBootAdminComponentArgs{
    				ComponentType: pulumi.String("SpringBootAdmin"),
    				Configurations: app.JavaComponentConfigurationPropertyArray{
    					&app.JavaComponentConfigurationPropertyArgs{
    						PropertyName: pulumi.String("spring.boot.admin.ui.enable-toasts"),
    						Value:        pulumi.String("true"),
    					},
    					&app.JavaComponentConfigurationPropertyArgs{
    						PropertyName: pulumi.String("spring.boot.admin.monitor.status-interval"),
    						Value:        pulumi.String("10000ms"),
    					},
    				},
    				Scale: &app.JavaComponentPropertiesScaleArgs{
    					MaxReplicas: pulumi.Int(1),
    					MinReplicas: pulumi.Int(1),
    				},
    				ServiceBinds: app.JavaComponentServiceBindArray{
    					&app.JavaComponentServiceBindArgs{
    						Name:      pulumi.String("yellowcat"),
    						ServiceId: pulumi.String("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/javaComponents/yellowcat"),
    					},
    				},
    			},
    			ResourceGroupName: pulumi.String("examplerg"),
    		})
    		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.app.JavaComponent;
    import com.pulumi.azurenative.app.JavaComponentArgs;
    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 javaComponent = new JavaComponent("javaComponent", JavaComponentArgs.builder()
                .environmentName("myenvironment")
                .name("myjavacomponent")
                .properties(SpringBootAdminComponentArgs.builder()
                    .componentType("SpringBootAdmin")
                    .configurations(                
                        JavaComponentConfigurationPropertyArgs.builder()
                            .propertyName("spring.boot.admin.ui.enable-toasts")
                            .value("true")
                            .build(),
                        JavaComponentConfigurationPropertyArgs.builder()
                            .propertyName("spring.boot.admin.monitor.status-interval")
                            .value("10000ms")
                            .build())
                    .scale(JavaComponentPropertiesScaleArgs.builder()
                        .maxReplicas(1)
                        .minReplicas(1)
                        .build())
                    .serviceBinds(JavaComponentServiceBindArgs.builder()
                        .name("yellowcat")
                        .serviceId("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/javaComponents/yellowcat")
                        .build())
                    .build())
                .resourceGroupName("examplerg")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const javaComponent = new azure_native.app.JavaComponent("javaComponent", {
        environmentName: "myenvironment",
        name: "myjavacomponent",
        properties: {
            componentType: "SpringBootAdmin",
            configurations: [
                {
                    propertyName: "spring.boot.admin.ui.enable-toasts",
                    value: "true",
                },
                {
                    propertyName: "spring.boot.admin.monitor.status-interval",
                    value: "10000ms",
                },
            ],
            scale: {
                maxReplicas: 1,
                minReplicas: 1,
            },
            serviceBinds: [{
                name: "yellowcat",
                serviceId: "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/javaComponents/yellowcat",
            }],
        },
        resourceGroupName: "examplerg",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    java_component = azure_native.app.JavaComponent("javaComponent",
        environment_name="myenvironment",
        name="myjavacomponent",
        properties={
            "component_type": "SpringBootAdmin",
            "configurations": [
                {
                    "property_name": "spring.boot.admin.ui.enable-toasts",
                    "value": "true",
                },
                {
                    "property_name": "spring.boot.admin.monitor.status-interval",
                    "value": "10000ms",
                },
            ],
            "scale": {
                "max_replicas": 1,
                "min_replicas": 1,
            },
            "service_binds": [{
                "name": "yellowcat",
                "service_id": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/javaComponents/yellowcat",
            }],
        },
        resource_group_name="examplerg")
    
    resources:
      javaComponent:
        type: azure-native:app:JavaComponent
        properties:
          environmentName: myenvironment
          name: myjavacomponent
          properties:
            componentType: SpringBootAdmin
            configurations:
              - propertyName: spring.boot.admin.ui.enable-toasts
                value: 'true'
              - propertyName: spring.boot.admin.monitor.status-interval
                value: 10000ms
            scale:
              maxReplicas: 1
              minReplicas: 1
            serviceBinds:
              - name: yellowcat
                serviceId: /subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/javaComponents/yellowcat
          resourceGroupName: examplerg
    

    Create JavaComponent Resource

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

    Constructor syntax

    new JavaComponent(name: string, args: JavaComponentArgs, opts?: CustomResourceOptions);
    @overload
    def JavaComponent(resource_name: str,
                      args: JavaComponentArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def JavaComponent(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      environment_name: Optional[str] = None,
                      resource_group_name: Optional[str] = None,
                      name: Optional[str] = None,
                      properties: Optional[Union[NacosComponentArgs, SpringBootAdminComponentArgs, SpringCloudConfigComponentArgs, SpringCloudEurekaComponentArgs, SpringCloudGatewayComponentArgs]] = None)
    func NewJavaComponent(ctx *Context, name string, args JavaComponentArgs, opts ...ResourceOption) (*JavaComponent, error)
    public JavaComponent(string name, JavaComponentArgs args, CustomResourceOptions? opts = null)
    public JavaComponent(String name, JavaComponentArgs args)
    public JavaComponent(String name, JavaComponentArgs args, CustomResourceOptions options)
    
    type: azure-native:app:JavaComponent
    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 JavaComponentArgs
    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 JavaComponentArgs
    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 JavaComponentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args JavaComponentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args JavaComponentArgs
    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 javaComponentResource = new AzureNative.App.JavaComponent("javaComponentResource", new()
    {
        EnvironmentName = "string",
        ResourceGroupName = "string",
        Name = "string",
        Properties = new AzureNative.App.Inputs.NacosComponentArgs
        {
            ComponentType = "Nacos",
            Configurations = new[]
            {
                new AzureNative.App.Inputs.JavaComponentConfigurationPropertyArgs
                {
                    PropertyName = "string",
                    Value = "string",
                },
            },
            Scale = new AzureNative.App.Inputs.JavaComponentPropertiesScaleArgs
            {
                MaxReplicas = 0,
                MinReplicas = 0,
            },
            ServiceBinds = new[]
            {
                new AzureNative.App.Inputs.JavaComponentServiceBindArgs
                {
                    Name = "string",
                    ServiceId = "string",
                },
            },
        },
    });
    
    example, err := app.NewJavaComponent(ctx, "javaComponentResource", &app.JavaComponentArgs{
    	EnvironmentName:   pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	Properties: &app.NacosComponentArgs{
    		ComponentType: pulumi.String("Nacos"),
    		Configurations: app.JavaComponentConfigurationPropertyArray{
    			&app.JavaComponentConfigurationPropertyArgs{
    				PropertyName: pulumi.String("string"),
    				Value:        pulumi.String("string"),
    			},
    		},
    		Scale: &app.JavaComponentPropertiesScaleArgs{
    			MaxReplicas: pulumi.Int(0),
    			MinReplicas: pulumi.Int(0),
    		},
    		ServiceBinds: app.JavaComponentServiceBindArray{
    			&app.JavaComponentServiceBindArgs{
    				Name:      pulumi.String("string"),
    				ServiceId: pulumi.String("string"),
    			},
    		},
    	},
    })
    
    var javaComponentResource = new JavaComponent("javaComponentResource", JavaComponentArgs.builder()
        .environmentName("string")
        .resourceGroupName("string")
        .name("string")
        .properties(NacosComponentArgs.builder()
            .componentType("Nacos")
            .configurations(JavaComponentConfigurationPropertyArgs.builder()
                .propertyName("string")
                .value("string")
                .build())
            .scale(JavaComponentPropertiesScaleArgs.builder()
                .maxReplicas(0)
                .minReplicas(0)
                .build())
            .serviceBinds(JavaComponentServiceBindArgs.builder()
                .name("string")
                .serviceId("string")
                .build())
            .build())
        .build());
    
    java_component_resource = azure_native.app.JavaComponent("javaComponentResource",
        environment_name="string",
        resource_group_name="string",
        name="string",
        properties={
            "component_type": "Nacos",
            "configurations": [{
                "property_name": "string",
                "value": "string",
            }],
            "scale": {
                "max_replicas": 0,
                "min_replicas": 0,
            },
            "service_binds": [{
                "name": "string",
                "service_id": "string",
            }],
        })
    
    const javaComponentResource = new azure_native.app.JavaComponent("javaComponentResource", {
        environmentName: "string",
        resourceGroupName: "string",
        name: "string",
        properties: {
            componentType: "Nacos",
            configurations: [{
                propertyName: "string",
                value: "string",
            }],
            scale: {
                maxReplicas: 0,
                minReplicas: 0,
            },
            serviceBinds: [{
                name: "string",
                serviceId: "string",
            }],
        },
    });
    
    type: azure-native:app:JavaComponent
    properties:
        environmentName: string
        name: string
        properties:
            componentType: Nacos
            configurations:
                - propertyName: string
                  value: string
            scale:
                maxReplicas: 0
                minReplicas: 0
            serviceBinds:
                - name: string
                  serviceId: string
        resourceGroupName: string
    

    JavaComponent 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 JavaComponent resource accepts the following input properties:

    EnvironmentName string
    Name of the Managed Environment.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Name string
    Name of the Java Component.
    Properties NacosComponentArgs | SpringBootAdminComponentArgs | SpringCloudConfigComponentArgs | SpringCloudEurekaComponentArgs | SpringCloudGatewayComponentArgs
    Java Component resource specific properties
    environmentName String
    Name of the Managed Environment.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    name String
    Name of the Java Component.
    properties NacosComponent | SpringBootAdminComponent | SpringCloudConfigComponent | SpringCloudEurekaComponent | SpringCloudGatewayComponent
    Java Component resource specific properties
    environmentName string
    Name of the Managed Environment.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    name string
    Name of the Java Component.
    properties NacosComponent | SpringBootAdminComponent | SpringCloudConfigComponent | SpringCloudEurekaComponent | SpringCloudGatewayComponent
    Java Component resource specific properties
    environment_name str
    Name of the Managed Environment.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    name str
    Name of the Java Component.
    properties NacosComponentArgs | SpringBootAdminComponentArgs | SpringCloudConfigComponentArgs | SpringCloudEurekaComponentArgs | SpringCloudGatewayComponentArgs
    Java Component resource specific properties
    environmentName String
    Name of the Managed Environment.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    name String
    Name of the Java Component.
    properties Property Map | Property Map | Property Map | Property Map | Property Map
    Java Component resource specific properties

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    SystemData Pulumi.AzureNative.App.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    JavaComponentConfigurationProperty, JavaComponentConfigurationPropertyArgs

    PropertyName string
    The name of the property
    Value string
    The value of the property
    PropertyName string
    The name of the property
    Value string
    The value of the property
    propertyName String
    The name of the property
    value String
    The value of the property
    propertyName string
    The name of the property
    value string
    The value of the property
    property_name str
    The name of the property
    value str
    The value of the property
    propertyName String
    The name of the property
    value String
    The value of the property

    JavaComponentConfigurationPropertyResponse, JavaComponentConfigurationPropertyResponseArgs

    PropertyName string
    The name of the property
    Value string
    The value of the property
    PropertyName string
    The name of the property
    Value string
    The value of the property
    propertyName String
    The name of the property
    value String
    The value of the property
    propertyName string
    The name of the property
    value string
    The value of the property
    property_name str
    The name of the property
    value str
    The value of the property
    propertyName String
    The name of the property
    value String
    The value of the property

    JavaComponentIngressResponse, JavaComponentIngressResponseArgs

    Fqdn string
    Hostname of the Java Component endpoint
    Fqdn string
    Hostname of the Java Component endpoint
    fqdn String
    Hostname of the Java Component endpoint
    fqdn string
    Hostname of the Java Component endpoint
    fqdn str
    Hostname of the Java Component endpoint
    fqdn String
    Hostname of the Java Component endpoint

    JavaComponentPropertiesResponseScale, JavaComponentPropertiesResponseScaleArgs

    MaxReplicas int
    Optional. Maximum number of Java component replicas
    MinReplicas int
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set
    MaxReplicas int
    Optional. Maximum number of Java component replicas
    MinReplicas int
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set
    maxReplicas Integer
    Optional. Maximum number of Java component replicas
    minReplicas Integer
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set
    maxReplicas number
    Optional. Maximum number of Java component replicas
    minReplicas number
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set
    max_replicas int
    Optional. Maximum number of Java component replicas
    min_replicas int
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set
    maxReplicas Number
    Optional. Maximum number of Java component replicas
    minReplicas Number
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set

    JavaComponentPropertiesScale, JavaComponentPropertiesScaleArgs

    MaxReplicas int
    Optional. Maximum number of Java component replicas
    MinReplicas int
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set
    MaxReplicas int
    Optional. Maximum number of Java component replicas
    MinReplicas int
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set
    maxReplicas Integer
    Optional. Maximum number of Java component replicas
    minReplicas Integer
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set
    maxReplicas number
    Optional. Maximum number of Java component replicas
    minReplicas number
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set
    max_replicas int
    Optional. Maximum number of Java component replicas
    min_replicas int
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set
    maxReplicas Number
    Optional. Maximum number of Java component replicas
    minReplicas Number
    Optional. Minimum number of Java component replicas. Defaults to 1 if not set

    JavaComponentServiceBind, JavaComponentServiceBindArgs

    Name string
    Name of the service bind
    ServiceId string
    Resource id of the target service
    Name string
    Name of the service bind
    ServiceId string
    Resource id of the target service
    name String
    Name of the service bind
    serviceId String
    Resource id of the target service
    name string
    Name of the service bind
    serviceId string
    Resource id of the target service
    name str
    Name of the service bind
    service_id str
    Resource id of the target service
    name String
    Name of the service bind
    serviceId String
    Resource id of the target service

    JavaComponentServiceBindResponse, JavaComponentServiceBindResponseArgs

    Name string
    Name of the service bind
    ServiceId string
    Resource id of the target service
    Name string
    Name of the service bind
    ServiceId string
    Resource id of the target service
    name String
    Name of the service bind
    serviceId String
    Resource id of the target service
    name string
    Name of the service bind
    serviceId string
    Resource id of the target service
    name str
    Name of the service bind
    service_id str
    Resource id of the target service
    name String
    Name of the service bind
    serviceId String
    Resource id of the target service

    NacosComponent, NacosComponentArgs

    Configurations List<Pulumi.AzureNative.App.Inputs.JavaComponentConfigurationProperty>
    List of Java Components configuration properties
    Scale Pulumi.AzureNative.App.Inputs.JavaComponentPropertiesScale
    Java component scaling configurations
    ServiceBinds List<Pulumi.AzureNative.App.Inputs.JavaComponentServiceBind>
    List of Java Components that are bound to the Java component
    Configurations []JavaComponentConfigurationProperty
    List of Java Components configuration properties
    Scale JavaComponentPropertiesScale
    Java component scaling configurations
    ServiceBinds []JavaComponentServiceBind
    List of Java Components that are bound to the Java component
    configurations List<JavaComponentConfigurationProperty>
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    serviceBinds List<JavaComponentServiceBind>
    List of Java Components that are bound to the Java component
    configurations JavaComponentConfigurationProperty[]
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    serviceBinds JavaComponentServiceBind[]
    List of Java Components that are bound to the Java component
    configurations Sequence[JavaComponentConfigurationProperty]
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    service_binds Sequence[JavaComponentServiceBind]
    List of Java Components that are bound to the Java component
    configurations List<Property Map>
    List of Java Components configuration properties
    scale Property Map
    Java component scaling configurations
    serviceBinds List<Property Map>
    List of Java Components that are bound to the Java component

    NacosComponentResponse, NacosComponentResponseArgs

    ProvisioningState string
    Provisioning state of the Java Component.
    Configurations List<Pulumi.AzureNative.App.Inputs.JavaComponentConfigurationPropertyResponse>
    List of Java Components configuration properties
    Ingress Pulumi.AzureNative.App.Inputs.JavaComponentIngressResponse
    Java Component Ingress configurations.
    Scale Pulumi.AzureNative.App.Inputs.JavaComponentPropertiesResponseScale
    Java component scaling configurations
    ServiceBinds List<Pulumi.AzureNative.App.Inputs.JavaComponentServiceBindResponse>
    List of Java Components that are bound to the Java component
    ProvisioningState string
    Provisioning state of the Java Component.
    Configurations []JavaComponentConfigurationPropertyResponse
    List of Java Components configuration properties
    Ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    Scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    ServiceBinds []JavaComponentServiceBindResponse
    List of Java Components that are bound to the Java component
    provisioningState String
    Provisioning state of the Java Component.
    configurations List<JavaComponentConfigurationPropertyResponse>
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    serviceBinds List<JavaComponentServiceBindResponse>
    List of Java Components that are bound to the Java component
    provisioningState string
    Provisioning state of the Java Component.
    configurations JavaComponentConfigurationPropertyResponse[]
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    serviceBinds JavaComponentServiceBindResponse[]
    List of Java Components that are bound to the Java component
    provisioning_state str
    Provisioning state of the Java Component.
    configurations Sequence[JavaComponentConfigurationPropertyResponse]
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    service_binds Sequence[JavaComponentServiceBindResponse]
    List of Java Components that are bound to the Java component
    provisioningState String
    Provisioning state of the Java Component.
    configurations List<Property Map>
    List of Java Components configuration properties
    ingress Property Map
    Java Component Ingress configurations.
    scale Property Map
    Java component scaling configurations
    serviceBinds List<Property Map>
    List of Java Components that are bound to the Java component

    ScgRoute, ScgRouteArgs

    Id string
    Id of the route
    Uri string
    Uri of the route
    Filters List<string>
    Filters of the route
    Order double
    Order of the route
    Predicates List<string>
    Predicates of the route
    Id string
    Id of the route
    Uri string
    Uri of the route
    Filters []string
    Filters of the route
    Order float64
    Order of the route
    Predicates []string
    Predicates of the route
    id String
    Id of the route
    uri String
    Uri of the route
    filters List<String>
    Filters of the route
    order Double
    Order of the route
    predicates List<String>
    Predicates of the route
    id string
    Id of the route
    uri string
    Uri of the route
    filters string[]
    Filters of the route
    order number
    Order of the route
    predicates string[]
    Predicates of the route
    id str
    Id of the route
    uri str
    Uri of the route
    filters Sequence[str]
    Filters of the route
    order float
    Order of the route
    predicates Sequence[str]
    Predicates of the route
    id String
    Id of the route
    uri String
    Uri of the route
    filters List<String>
    Filters of the route
    order Number
    Order of the route
    predicates List<String>
    Predicates of the route

    ScgRouteResponse, ScgRouteResponseArgs

    Id string
    Id of the route
    Uri string
    Uri of the route
    Filters List<string>
    Filters of the route
    Order double
    Order of the route
    Predicates List<string>
    Predicates of the route
    Id string
    Id of the route
    Uri string
    Uri of the route
    Filters []string
    Filters of the route
    Order float64
    Order of the route
    Predicates []string
    Predicates of the route
    id String
    Id of the route
    uri String
    Uri of the route
    filters List<String>
    Filters of the route
    order Double
    Order of the route
    predicates List<String>
    Predicates of the route
    id string
    Id of the route
    uri string
    Uri of the route
    filters string[]
    Filters of the route
    order number
    Order of the route
    predicates string[]
    Predicates of the route
    id str
    Id of the route
    uri str
    Uri of the route
    filters Sequence[str]
    Filters of the route
    order float
    Order of the route
    predicates Sequence[str]
    Predicates of the route
    id String
    Id of the route
    uri String
    Uri of the route
    filters List<String>
    Filters of the route
    order Number
    Order of the route
    predicates List<String>
    Predicates of the route

    SpringBootAdminComponent, SpringBootAdminComponentArgs

    Configurations List<Pulumi.AzureNative.App.Inputs.JavaComponentConfigurationProperty>
    List of Java Components configuration properties
    Scale Pulumi.AzureNative.App.Inputs.JavaComponentPropertiesScale
    Java component scaling configurations
    ServiceBinds List<Pulumi.AzureNative.App.Inputs.JavaComponentServiceBind>
    List of Java Components that are bound to the Java component
    Configurations []JavaComponentConfigurationProperty
    List of Java Components configuration properties
    Scale JavaComponentPropertiesScale
    Java component scaling configurations
    ServiceBinds []JavaComponentServiceBind
    List of Java Components that are bound to the Java component
    configurations List<JavaComponentConfigurationProperty>
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    serviceBinds List<JavaComponentServiceBind>
    List of Java Components that are bound to the Java component
    configurations JavaComponentConfigurationProperty[]
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    serviceBinds JavaComponentServiceBind[]
    List of Java Components that are bound to the Java component
    configurations Sequence[JavaComponentConfigurationProperty]
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    service_binds Sequence[JavaComponentServiceBind]
    List of Java Components that are bound to the Java component
    configurations List<Property Map>
    List of Java Components configuration properties
    scale Property Map
    Java component scaling configurations
    serviceBinds List<Property Map>
    List of Java Components that are bound to the Java component

    SpringBootAdminComponentResponse, SpringBootAdminComponentResponseArgs

    ProvisioningState string
    Provisioning state of the Java Component.
    Configurations List<Pulumi.AzureNative.App.Inputs.JavaComponentConfigurationPropertyResponse>
    List of Java Components configuration properties
    Ingress Pulumi.AzureNative.App.Inputs.JavaComponentIngressResponse
    Java Component Ingress configurations.
    Scale Pulumi.AzureNative.App.Inputs.JavaComponentPropertiesResponseScale
    Java component scaling configurations
    ServiceBinds List<Pulumi.AzureNative.App.Inputs.JavaComponentServiceBindResponse>
    List of Java Components that are bound to the Java component
    ProvisioningState string
    Provisioning state of the Java Component.
    Configurations []JavaComponentConfigurationPropertyResponse
    List of Java Components configuration properties
    Ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    Scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    ServiceBinds []JavaComponentServiceBindResponse
    List of Java Components that are bound to the Java component
    provisioningState String
    Provisioning state of the Java Component.
    configurations List<JavaComponentConfigurationPropertyResponse>
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    serviceBinds List<JavaComponentServiceBindResponse>
    List of Java Components that are bound to the Java component
    provisioningState string
    Provisioning state of the Java Component.
    configurations JavaComponentConfigurationPropertyResponse[]
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    serviceBinds JavaComponentServiceBindResponse[]
    List of Java Components that are bound to the Java component
    provisioning_state str
    Provisioning state of the Java Component.
    configurations Sequence[JavaComponentConfigurationPropertyResponse]
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    service_binds Sequence[JavaComponentServiceBindResponse]
    List of Java Components that are bound to the Java component
    provisioningState String
    Provisioning state of the Java Component.
    configurations List<Property Map>
    List of Java Components configuration properties
    ingress Property Map
    Java Component Ingress configurations.
    scale Property Map
    Java component scaling configurations
    serviceBinds List<Property Map>
    List of Java Components that are bound to the Java component

    SpringCloudConfigComponent, SpringCloudConfigComponentArgs

    Configurations List<Pulumi.AzureNative.App.Inputs.JavaComponentConfigurationProperty>
    List of Java Components configuration properties
    Scale Pulumi.AzureNative.App.Inputs.JavaComponentPropertiesScale
    Java component scaling configurations
    ServiceBinds List<Pulumi.AzureNative.App.Inputs.JavaComponentServiceBind>
    List of Java Components that are bound to the Java component
    Configurations []JavaComponentConfigurationProperty
    List of Java Components configuration properties
    Scale JavaComponentPropertiesScale
    Java component scaling configurations
    ServiceBinds []JavaComponentServiceBind
    List of Java Components that are bound to the Java component
    configurations List<JavaComponentConfigurationProperty>
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    serviceBinds List<JavaComponentServiceBind>
    List of Java Components that are bound to the Java component
    configurations JavaComponentConfigurationProperty[]
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    serviceBinds JavaComponentServiceBind[]
    List of Java Components that are bound to the Java component
    configurations Sequence[JavaComponentConfigurationProperty]
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    service_binds Sequence[JavaComponentServiceBind]
    List of Java Components that are bound to the Java component
    configurations List<Property Map>
    List of Java Components configuration properties
    scale Property Map
    Java component scaling configurations
    serviceBinds List<Property Map>
    List of Java Components that are bound to the Java component

    SpringCloudConfigComponentResponse, SpringCloudConfigComponentResponseArgs

    ProvisioningState string
    Provisioning state of the Java Component.
    Configurations List<Pulumi.AzureNative.App.Inputs.JavaComponentConfigurationPropertyResponse>
    List of Java Components configuration properties
    Scale Pulumi.AzureNative.App.Inputs.JavaComponentPropertiesResponseScale
    Java component scaling configurations
    ServiceBinds List<Pulumi.AzureNative.App.Inputs.JavaComponentServiceBindResponse>
    List of Java Components that are bound to the Java component
    ProvisioningState string
    Provisioning state of the Java Component.
    Configurations []JavaComponentConfigurationPropertyResponse
    List of Java Components configuration properties
    Scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    ServiceBinds []JavaComponentServiceBindResponse
    List of Java Components that are bound to the Java component
    provisioningState String
    Provisioning state of the Java Component.
    configurations List<JavaComponentConfigurationPropertyResponse>
    List of Java Components configuration properties
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    serviceBinds List<JavaComponentServiceBindResponse>
    List of Java Components that are bound to the Java component
    provisioningState string
    Provisioning state of the Java Component.
    configurations JavaComponentConfigurationPropertyResponse[]
    List of Java Components configuration properties
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    serviceBinds JavaComponentServiceBindResponse[]
    List of Java Components that are bound to the Java component
    provisioning_state str
    Provisioning state of the Java Component.
    configurations Sequence[JavaComponentConfigurationPropertyResponse]
    List of Java Components configuration properties
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    service_binds Sequence[JavaComponentServiceBindResponse]
    List of Java Components that are bound to the Java component
    provisioningState String
    Provisioning state of the Java Component.
    configurations List<Property Map>
    List of Java Components configuration properties
    scale Property Map
    Java component scaling configurations
    serviceBinds List<Property Map>
    List of Java Components that are bound to the Java component

    SpringCloudEurekaComponent, SpringCloudEurekaComponentArgs

    Configurations List<Pulumi.AzureNative.App.Inputs.JavaComponentConfigurationProperty>
    List of Java Components configuration properties
    Scale Pulumi.AzureNative.App.Inputs.JavaComponentPropertiesScale
    Java component scaling configurations
    ServiceBinds List<Pulumi.AzureNative.App.Inputs.JavaComponentServiceBind>
    List of Java Components that are bound to the Java component
    Configurations []JavaComponentConfigurationProperty
    List of Java Components configuration properties
    Scale JavaComponentPropertiesScale
    Java component scaling configurations
    ServiceBinds []JavaComponentServiceBind
    List of Java Components that are bound to the Java component
    configurations List<JavaComponentConfigurationProperty>
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    serviceBinds List<JavaComponentServiceBind>
    List of Java Components that are bound to the Java component
    configurations JavaComponentConfigurationProperty[]
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    serviceBinds JavaComponentServiceBind[]
    List of Java Components that are bound to the Java component
    configurations Sequence[JavaComponentConfigurationProperty]
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    service_binds Sequence[JavaComponentServiceBind]
    List of Java Components that are bound to the Java component
    configurations List<Property Map>
    List of Java Components configuration properties
    scale Property Map
    Java component scaling configurations
    serviceBinds List<Property Map>
    List of Java Components that are bound to the Java component

    SpringCloudEurekaComponentResponse, SpringCloudEurekaComponentResponseArgs

    ProvisioningState string
    Provisioning state of the Java Component.
    Configurations List<Pulumi.AzureNative.App.Inputs.JavaComponentConfigurationPropertyResponse>
    List of Java Components configuration properties
    Ingress Pulumi.AzureNative.App.Inputs.JavaComponentIngressResponse
    Java Component Ingress configurations.
    Scale Pulumi.AzureNative.App.Inputs.JavaComponentPropertiesResponseScale
    Java component scaling configurations
    ServiceBinds List<Pulumi.AzureNative.App.Inputs.JavaComponentServiceBindResponse>
    List of Java Components that are bound to the Java component
    ProvisioningState string
    Provisioning state of the Java Component.
    Configurations []JavaComponentConfigurationPropertyResponse
    List of Java Components configuration properties
    Ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    Scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    ServiceBinds []JavaComponentServiceBindResponse
    List of Java Components that are bound to the Java component
    provisioningState String
    Provisioning state of the Java Component.
    configurations List<JavaComponentConfigurationPropertyResponse>
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    serviceBinds List<JavaComponentServiceBindResponse>
    List of Java Components that are bound to the Java component
    provisioningState string
    Provisioning state of the Java Component.
    configurations JavaComponentConfigurationPropertyResponse[]
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    serviceBinds JavaComponentServiceBindResponse[]
    List of Java Components that are bound to the Java component
    provisioning_state str
    Provisioning state of the Java Component.
    configurations Sequence[JavaComponentConfigurationPropertyResponse]
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    service_binds Sequence[JavaComponentServiceBindResponse]
    List of Java Components that are bound to the Java component
    provisioningState String
    Provisioning state of the Java Component.
    configurations List<Property Map>
    List of Java Components configuration properties
    ingress Property Map
    Java Component Ingress configurations.
    scale Property Map
    Java component scaling configurations
    serviceBinds List<Property Map>
    List of Java Components that are bound to the Java component

    SpringCloudGatewayComponent, SpringCloudGatewayComponentArgs

    Configurations []JavaComponentConfigurationProperty
    List of Java Components configuration properties
    Scale JavaComponentPropertiesScale
    Java component scaling configurations
    ServiceBinds []JavaComponentServiceBind
    List of Java Components that are bound to the Java component
    SpringCloudGatewayRoutes []ScgRoute
    Gateway route definition
    configurations List<JavaComponentConfigurationProperty>
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    serviceBinds List<JavaComponentServiceBind>
    List of Java Components that are bound to the Java component
    springCloudGatewayRoutes List<ScgRoute>
    Gateway route definition
    configurations JavaComponentConfigurationProperty[]
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    serviceBinds JavaComponentServiceBind[]
    List of Java Components that are bound to the Java component
    springCloudGatewayRoutes ScgRoute[]
    Gateway route definition
    configurations Sequence[JavaComponentConfigurationProperty]
    List of Java Components configuration properties
    scale JavaComponentPropertiesScale
    Java component scaling configurations
    service_binds Sequence[JavaComponentServiceBind]
    List of Java Components that are bound to the Java component
    spring_cloud_gateway_routes Sequence[ScgRoute]
    Gateway route definition
    configurations List<Property Map>
    List of Java Components configuration properties
    scale Property Map
    Java component scaling configurations
    serviceBinds List<Property Map>
    List of Java Components that are bound to the Java component
    springCloudGatewayRoutes List<Property Map>
    Gateway route definition

    SpringCloudGatewayComponentResponse, SpringCloudGatewayComponentResponseArgs

    ProvisioningState string
    Provisioning state of the Java Component.
    Configurations []JavaComponentConfigurationPropertyResponse
    List of Java Components configuration properties
    Ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    Scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    ServiceBinds []JavaComponentServiceBindResponse
    List of Java Components that are bound to the Java component
    SpringCloudGatewayRoutes []ScgRouteResponse
    Gateway route definition
    provisioningState String
    Provisioning state of the Java Component.
    configurations List<JavaComponentConfigurationPropertyResponse>
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    serviceBinds List<JavaComponentServiceBindResponse>
    List of Java Components that are bound to the Java component
    springCloudGatewayRoutes List<ScgRouteResponse>
    Gateway route definition
    provisioningState string
    Provisioning state of the Java Component.
    configurations JavaComponentConfigurationPropertyResponse[]
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    serviceBinds JavaComponentServiceBindResponse[]
    List of Java Components that are bound to the Java component
    springCloudGatewayRoutes ScgRouteResponse[]
    Gateway route definition
    provisioning_state str
    Provisioning state of the Java Component.
    configurations Sequence[JavaComponentConfigurationPropertyResponse]
    List of Java Components configuration properties
    ingress JavaComponentIngressResponse
    Java Component Ingress configurations.
    scale JavaComponentPropertiesResponseScale
    Java component scaling configurations
    service_binds Sequence[JavaComponentServiceBindResponse]
    List of Java Components that are bound to the Java component
    spring_cloud_gateway_routes Sequence[ScgRouteResponse]
    Gateway route definition
    provisioningState String
    Provisioning state of the Java Component.
    configurations List<Property Map>
    List of Java Components configuration properties
    ingress Property Map
    Java Component Ingress configurations.
    scale Property Map
    Java component scaling configurations
    serviceBinds List<Property Map>
    List of Java Components that are bound to the Java component
    springCloudGatewayRoutes List<Property Map>
    Gateway route definition

    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 last 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 last 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 last 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 last 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 last 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 last 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:app:JavaComponent myjavacomponent /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/managedEnvironments/{environmentName}/javaComponents/{name} 
    

    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 v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi