1. Packages
  2. Azure Native
  3. API Docs
  4. app
  5. JavaComponent
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.38.0 published on Monday, Apr 22, 2024 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 v1 docs if using the v1 version of this package.
Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi

    Java Component. Azure REST API version: 2023-11-02-preview.

    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()
        {
            ComponentType = AzureNative.App.JavaComponentType.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",
                },
            },
            EnvironmentName = "myenvironment",
            Name = "myjavacomponent",
            ResourceGroupName = "examplerg",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/app/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := app.NewJavaComponent(ctx, "javaComponent", &app.JavaComponentArgs{
    			ComponentType: pulumi.String(app.JavaComponentTypeSpringBootAdmin),
    			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"),
    				},
    			},
    			EnvironmentName:   pulumi.String("myenvironment"),
    			Name:              pulumi.String("myjavacomponent"),
    			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 com.pulumi.azurenative.app.inputs.JavaComponentConfigurationPropertyArgs;
    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()        
                .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())
                .environmentName("myenvironment")
                .name("myjavacomponent")
                .resourceGroupName("examplerg")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    java_component = azure_native.app.JavaComponent("javaComponent",
        component_type=azure_native.app.JavaComponentType.SPRING_BOOT_ADMIN,
        configurations=[
            azure_native.app.JavaComponentConfigurationPropertyArgs(
                property_name="spring.boot.admin.ui.enable-toasts",
                value="true",
            ),
            azure_native.app.JavaComponentConfigurationPropertyArgs(
                property_name="spring.boot.admin.monitor.status-interval",
                value="10000ms",
            ),
        ],
        environment_name="myenvironment",
        name="myjavacomponent",
        resource_group_name="examplerg")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const javaComponent = new azure_native.app.JavaComponent("javaComponent", {
        componentType: azure_native.app.JavaComponentType.SpringBootAdmin,
        configurations: [
            {
                propertyName: "spring.boot.admin.ui.enable-toasts",
                value: "true",
            },
            {
                propertyName: "spring.boot.admin.monitor.status-interval",
                value: "10000ms",
            },
        ],
        environmentName: "myenvironment",
        name: "myjavacomponent",
        resourceGroupName: "examplerg",
    });
    
    resources:
      javaComponent:
        type: azure-native:app:JavaComponent
        properties:
          componentType: SpringBootAdmin
          configurations:
            - propertyName: spring.boot.admin.ui.enable-toasts
              value: 'true'
            - propertyName: spring.boot.admin.monitor.status-interval
              value: 10000ms
          environmentName: myenvironment
          name: myjavacomponent
          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()
        {
            ComponentType = AzureNative.App.JavaComponentType.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",
                },
            },
            EnvironmentName = "myenvironment",
            Name = "myjavacomponent",
            ResourceGroupName = "examplerg",
            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",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/app/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := app.NewJavaComponent(ctx, "javaComponent", &app.JavaComponentArgs{
    			ComponentType: pulumi.String(app.JavaComponentTypeSpringBootAdmin),
    			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"),
    				},
    			},
    			EnvironmentName:   pulumi.String("myenvironment"),
    			Name:              pulumi.String("myjavacomponent"),
    			ResourceGroupName: pulumi.String("examplerg"),
    			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"),
    				},
    			},
    		})
    		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 com.pulumi.azurenative.app.inputs.JavaComponentConfigurationPropertyArgs;
    import com.pulumi.azurenative.app.inputs.JavaComponentServiceBindArgs;
    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()        
                .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())
                .environmentName("myenvironment")
                .name("myjavacomponent")
                .resourceGroupName("examplerg")
                .serviceBinds(JavaComponentServiceBindArgs.builder()
                    .name("yellowcat")
                    .serviceId("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/javaComponents/yellowcat")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    java_component = azure_native.app.JavaComponent("javaComponent",
        component_type=azure_native.app.JavaComponentType.SPRING_BOOT_ADMIN,
        configurations=[
            azure_native.app.JavaComponentConfigurationPropertyArgs(
                property_name="spring.boot.admin.ui.enable-toasts",
                value="true",
            ),
            azure_native.app.JavaComponentConfigurationPropertyArgs(
                property_name="spring.boot.admin.monitor.status-interval",
                value="10000ms",
            ),
        ],
        environment_name="myenvironment",
        name="myjavacomponent",
        resource_group_name="examplerg",
        service_binds=[azure_native.app.JavaComponentServiceBindArgs(
            name="yellowcat",
            service_id="/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/javaComponents/yellowcat",
        )])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const javaComponent = new azure_native.app.JavaComponent("javaComponent", {
        componentType: azure_native.app.JavaComponentType.SpringBootAdmin,
        configurations: [
            {
                propertyName: "spring.boot.admin.ui.enable-toasts",
                value: "true",
            },
            {
                propertyName: "spring.boot.admin.monitor.status-interval",
                value: "10000ms",
            },
        ],
        environmentName: "myenvironment",
        name: "myjavacomponent",
        resourceGroupName: "examplerg",
        serviceBinds: [{
            name: "yellowcat",
            serviceId: "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/javaComponents/yellowcat",
        }],
    });
    
    resources:
      javaComponent:
        type: azure-native:app:JavaComponent
        properties:
          componentType: SpringBootAdmin
          configurations:
            - propertyName: spring.boot.admin.ui.enable-toasts
              value: 'true'
            - propertyName: spring.boot.admin.monitor.status-interval
              value: 10000ms
          environmentName: myenvironment
          name: myjavacomponent
          resourceGroupName: examplerg
          serviceBinds:
            - name: yellowcat
              serviceId: /subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.App/managedEnvironments/myenvironment/javaComponents/yellowcat
    

    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,
                      component_type: Optional[Union[str, JavaComponentType]] = None,
                      configurations: Optional[Sequence[JavaComponentConfigurationPropertyArgs]] = None,
                      name: Optional[str] = None,
                      service_binds: Optional[Sequence[JavaComponentServiceBindArgs]] = 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.

    Example

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

    var javaComponentResource = new AzureNative.App.JavaComponent("javaComponentResource", new()
    {
        EnvironmentName = "string",
        ResourceGroupName = "string",
        ComponentType = "string",
        Configurations = new[]
        {
            new AzureNative.App.Inputs.JavaComponentConfigurationPropertyArgs
            {
                PropertyName = "string",
                Value = "string",
            },
        },
        Name = "string",
        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"),
    ComponentType: pulumi.String("string"),
    Configurations: app.JavaComponentConfigurationPropertyArray{
    &app.JavaComponentConfigurationPropertyArgs{
    PropertyName: pulumi.String("string"),
    Value: pulumi.String("string"),
    },
    },
    Name: pulumi.String("string"),
    ServiceBinds: app.JavaComponentServiceBindArray{
    &app.JavaComponentServiceBindArgs{
    Name: pulumi.String("string"),
    ServiceId: pulumi.String("string"),
    },
    },
    })
    
    var javaComponentResource = new JavaComponent("javaComponentResource", JavaComponentArgs.builder()        
        .environmentName("string")
        .resourceGroupName("string")
        .componentType("string")
        .configurations(JavaComponentConfigurationPropertyArgs.builder()
            .propertyName("string")
            .value("string")
            .build())
        .name("string")
        .serviceBinds(JavaComponentServiceBindArgs.builder()
            .name("string")
            .serviceId("string")
            .build())
        .build());
    
    java_component_resource = azure_native.app.JavaComponent("javaComponentResource",
        environment_name="string",
        resource_group_name="string",
        component_type="string",
        configurations=[azure_native.app.JavaComponentConfigurationPropertyArgs(
            property_name="string",
            value="string",
        )],
        name="string",
        service_binds=[azure_native.app.JavaComponentServiceBindArgs(
            name="string",
            service_id="string",
        )])
    
    const javaComponentResource = new azure_native.app.JavaComponent("javaComponentResource", {
        environmentName: "string",
        resourceGroupName: "string",
        componentType: "string",
        configurations: [{
            propertyName: "string",
            value: "string",
        }],
        name: "string",
        serviceBinds: [{
            name: "string",
            serviceId: "string",
        }],
    });
    
    type: azure-native:app:JavaComponent
    properties:
        componentType: string
        configurations:
            - propertyName: string
              value: string
        environmentName: string
        name: string
        resourceGroupName: string
        serviceBinds:
            - name: string
              serviceId: 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

    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.
    ComponentType string | Pulumi.AzureNative.App.JavaComponentType
    Type of the Java Component.
    Configurations List<Pulumi.AzureNative.App.Inputs.JavaComponentConfigurationProperty>
    List of Java Components configuration properties
    Name string
    Name of the Java Component.
    ServiceBinds List<Pulumi.AzureNative.App.Inputs.JavaComponentServiceBind>
    List of Java Components that are bound to the Java component
    EnvironmentName string
    Name of the Managed Environment.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ComponentType string | JavaComponentType
    Type of the Java Component.
    Configurations []JavaComponentConfigurationPropertyArgs
    List of Java Components configuration properties
    Name string
    Name of the Java Component.
    ServiceBinds []JavaComponentServiceBindArgs
    List of Java Components that are bound to the Java component
    environmentName String
    Name of the Managed Environment.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    componentType String | JavaComponentType
    Type of the Java Component.
    configurations List<JavaComponentConfigurationProperty>
    List of Java Components configuration properties
    name String
    Name of the Java Component.
    serviceBinds List<JavaComponentServiceBind>
    List of Java Components that are bound to the Java component
    environmentName string
    Name of the Managed Environment.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    componentType string | JavaComponentType
    Type of the Java Component.
    configurations JavaComponentConfigurationProperty[]
    List of Java Components configuration properties
    name string
    Name of the Java Component.
    serviceBinds JavaComponentServiceBind[]
    List of Java Components that are bound to the Java component
    environment_name str
    Name of the Managed Environment.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    component_type str | JavaComponentType
    Type of the Java Component.
    configurations Sequence[JavaComponentConfigurationPropertyArgs]
    List of Java Components configuration properties
    name str
    Name of the Java Component.
    service_binds Sequence[JavaComponentServiceBindArgs]
    List of Java Components that are bound to the Java component
    environmentName String
    Name of the Managed Environment.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    componentType String | "SpringBootAdmin" | "SpringCloudEureka" | "SpringCloudConfig"
    Type of the Java Component.
    configurations List<Property Map>
    List of Java Components configuration properties
    name String
    Name of the Java Component.
    serviceBinds List<Property Map>
    List of Java Components that are bound to the Java component

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    ProvisioningState string
    Provisioning state of the Java Component.
    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"
    Id string
    The provider-assigned unique ID for this managed resource.
    ProvisioningState string
    Provisioning state of the Java Component.
    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"
    id String
    The provider-assigned unique ID for this managed resource.
    provisioningState String
    Provisioning state of the Java Component.
    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"
    id string
    The provider-assigned unique ID for this managed resource.
    provisioningState string
    Provisioning state of the Java Component.
    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"
    id str
    The provider-assigned unique ID for this managed resource.
    provisioning_state str
    Provisioning state of the Java Component.
    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"
    id String
    The provider-assigned unique ID for this managed resource.
    provisioningState String
    Provisioning state of the Java Component.
    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

    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

    JavaComponentType, JavaComponentTypeArgs

    SpringBootAdmin
    SpringBootAdmin
    SpringCloudEureka
    SpringCloudEureka
    SpringCloudConfig
    SpringCloudConfig
    JavaComponentTypeSpringBootAdmin
    SpringBootAdmin
    JavaComponentTypeSpringCloudEureka
    SpringCloudEureka
    JavaComponentTypeSpringCloudConfig
    SpringCloudConfig
    SpringBootAdmin
    SpringBootAdmin
    SpringCloudEureka
    SpringCloudEureka
    SpringCloudConfig
    SpringCloudConfig
    SpringBootAdmin
    SpringBootAdmin
    SpringCloudEureka
    SpringCloudEureka
    SpringCloudConfig
    SpringCloudConfig
    SPRING_BOOT_ADMIN
    SpringBootAdmin
    SPRING_CLOUD_EUREKA
    SpringCloudEureka
    SPRING_CLOUD_CONFIG
    SpringCloudConfig
    "SpringBootAdmin"
    SpringBootAdmin
    "SpringCloudEureka"
    SpringCloudEureka
    "SpringCloudConfig"
    SpringCloudConfig

    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 v1 docs if using the v1 version of this package.
    Azure Native v2.38.0 published on Monday, Apr 22, 2024 by Pulumi