azure-native.app.JavaComponent
Explore with Pulumi AI
Java Component. Azure REST API version: 2023-11-02-preview.
Other available API versions: 2024-02-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 (
app "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=[
{
"property_name": "spring.boot.admin.ui.enable-toasts",
"value": "true",
},
{
"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 (
app "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=[
{
"property_name": "spring.boot.admin.ui.enable-toasts",
"value": "true",
},
{
"property_name": "spring.boot.admin.monitor.status-interval",
"value": "10000ms",
},
],
environment_name="myenvironment",
name="myjavacomponent",
resource_group_name="examplerg",
service_binds=[{
"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.
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",
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=[{
"propertyName": "string",
"value": "string",
}],
name="string",
service_binds=[{
"name": "string",
"serviceId": "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:
- Environment
Name string - Name of the Managed Environment.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Component
Type string | Pulumi.Azure Native. App. Java Component Type - Type of the Java Component.
- Configurations
List<Pulumi.
Azure Native. App. Inputs. Java Component Configuration Property> - List of Java Components configuration properties
- Name string
- Name of the Java Component.
- Service
Binds List<Pulumi.Azure Native. App. Inputs. Java Component Service Bind> - List of Java Components that are bound to the Java component
- Environment
Name string - Name of the Managed Environment.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Component
Type string | JavaComponent Type - Type of the Java Component.
- Configurations
[]Java
Component Configuration Property Args - List of Java Components configuration properties
- Name string
- Name of the Java Component.
- Service
Binds []JavaComponent Service Bind Args - List of Java Components that are bound to the Java component
- environment
Name String - Name of the Managed Environment.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- component
Type String | JavaComponent Type - Type of the Java Component.
- configurations
List<Java
Component Configuration Property> - List of Java Components configuration properties
- name String
- Name of the Java Component.
- service
Binds List<JavaComponent Service Bind> - List of Java Components that are bound to the Java component
- environment
Name string - Name of the Managed Environment.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- component
Type string | JavaComponent Type - Type of the Java Component.
- configurations
Java
Component Configuration Property[] - List of Java Components configuration properties
- name string
- Name of the Java Component.
- service
Binds JavaComponent Service Bind[] - List of Java Components that are bound to the Java component
- environment_
name str - Name of the Managed Environment.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- component_
type str | JavaComponent Type - Type of the Java Component.
- configurations
Sequence[Java
Component Configuration Property Args] - List of Java Components configuration properties
- name str
- Name of the Java Component.
- service_
binds Sequence[JavaComponent Service Bind Args] - List of Java Components that are bound to the Java component
- environment
Name String - Name of the Managed Environment.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- component
Type String | "SpringBoot Admin" | "Spring Cloud Eureka" | "Spring Cloud Config" - Type of the Java Component.
- configurations List<Property Map>
- List of Java Components configuration properties
- name String
- Name of the Java Component.
- service
Binds 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.
- Provisioning
State string - Provisioning state of the Java Component.
- System
Data Pulumi.Azure Native. App. Outputs. System Data Response - 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.
- Provisioning
State string - Provisioning state of the Java Component.
- System
Data SystemData Response - 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.
- provisioning
State String - Provisioning state of the Java Component.
- system
Data SystemData Response - 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.
- provisioning
State string - Provisioning state of the Java Component.
- system
Data SystemData Response - 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 SystemData Response - 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.
- provisioning
State String - Provisioning state of the Java Component.
- system
Data 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
- Property
Name string - The name of the property
- Value string
- The value of the property
- Property
Name string - The name of the property
- Value string
- The value of the property
- property
Name String - The name of the property
- value String
- The value of the property
- property
Name 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
- property
Name String - The name of the property
- value String
- The value of the property
JavaComponentConfigurationPropertyResponse, JavaComponentConfigurationPropertyResponseArgs
- Property
Name string - The name of the property
- Value string
- The value of the property
- Property
Name string - The name of the property
- Value string
- The value of the property
- property
Name String - The name of the property
- value String
- The value of the property
- property
Name 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
- property
Name String - The name of the property
- value String
- The value of the property
JavaComponentServiceBind, JavaComponentServiceBindArgs
- name str
- Name of the service bind
- service_
id str - Resource id of the target service
JavaComponentServiceBindResponse, JavaComponentServiceBindResponseArgs
- name str
- Name of the service bind
- service_
id str - Resource id of the target service
JavaComponentType, JavaComponentTypeArgs
- Spring
Boot Admin - SpringBootAdmin
- Spring
Cloud Eureka - SpringCloudEureka
- Spring
Cloud Config - SpringCloudConfig
- Java
Component Type Spring Boot Admin - SpringBootAdmin
- Java
Component Type Spring Cloud Eureka - SpringCloudEureka
- Java
Component Type Spring Cloud Config - SpringCloudConfig
- Spring
Boot Admin - SpringBootAdmin
- Spring
Cloud Eureka - SpringCloudEureka
- Spring
Cloud Config - SpringCloudConfig
- Spring
Boot Admin - SpringBootAdmin
- Spring
Cloud Eureka - SpringCloudEureka
- Spring
Cloud Config - SpringCloudConfig
- SPRING_BOOT_ADMIN
- SpringBootAdmin
- SPRING_CLOUD_EUREKA
- SpringCloudEureka
- SPRING_CLOUD_CONFIG
- SpringCloudConfig
- "Spring
Boot Admin" - SpringBootAdmin
- "Spring
Cloud Eureka" - SpringCloudEureka
- "Spring
Cloud Config" - SpringCloudConfig
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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