azure-native.app.JavaComponent
Explore with Pulumi AI
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:
- Environment
Name string - Name of the Managed Environment.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Name string
- Name of the Java Component.
- Properties
Pulumi.
Azure | Pulumi.Native. App. Inputs. Nacos Component Azure | Pulumi.Native. App. Inputs. Spring Boot Admin Component Azure | Pulumi.Native. App. Inputs. Spring Cloud Config Component Azure | Pulumi.Native. App. Inputs. Spring Cloud Eureka Component Azure Native. App. Inputs. Spring Cloud Gateway Component - Java Component resource specific properties
- Environment
Name string - Name of the Managed Environment.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Name string
- Name of the Java Component.
- Properties
Nacos
Component | SpringArgs Boot | SpringAdmin Component Args Cloud | SpringConfig Component Args Cloud | SpringEureka Component Args Cloud Gateway Component Args - Java Component resource specific properties
- environment
Name String - Name of the Managed Environment.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- name String
- Name of the Java Component.
- properties
Nacos
Component | SpringBoot | SpringAdmin Component Cloud | SpringConfig Component Cloud | SpringEureka Component Cloud Gateway Component - Java Component resource specific properties
- environment
Name string - Name of the Managed Environment.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- name string
- Name of the Java Component.
- properties
Nacos
Component | SpringBoot | SpringAdmin Component Cloud | SpringConfig Component Cloud | SpringEureka Component Cloud Gateway Component - Java Component resource specific properties
- environment_
name str - Name of the Managed Environment.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- name str
- Name of the Java Component.
- properties
Nacos
Component | SpringArgs Boot | SpringAdmin Component Args Cloud | SpringConfig Component Args Cloud | SpringEureka Component Args Cloud Gateway Component Args - Java Component resource specific properties
- environment
Name String - Name of the Managed Environment.
- resource
Group StringName - 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:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- 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"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- 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"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- 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
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
- 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
- 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
- max
Replicas Integer - Optional. Maximum number of Java component replicas
- min
Replicas Integer - Optional. Minimum number of Java component replicas. Defaults to 1 if not set
- max
Replicas number - Optional. Maximum number of Java component replicas
- min
Replicas 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
- max
Replicas Number - Optional. Maximum number of Java component replicas
- min
Replicas Number - Optional. Minimum number of Java component replicas. Defaults to 1 if not set
JavaComponentPropertiesScale, JavaComponentPropertiesScaleArgs
- 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
- 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
- max
Replicas Integer - Optional. Maximum number of Java component replicas
- min
Replicas Integer - Optional. Minimum number of Java component replicas. Defaults to 1 if not set
- max
Replicas number - Optional. Maximum number of Java component replicas
- min
Replicas 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
- max
Replicas Number - Optional. Maximum number of Java component replicas
- min
Replicas Number - Optional. Minimum number of Java component replicas. Defaults to 1 if not set
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
NacosComponent, NacosComponentArgs
- Configurations
List<Pulumi.
Azure Native. App. Inputs. Java Component Configuration Property> - List of Java Components configuration properties
- Scale
Pulumi.
Azure Native. App. Inputs. Java Component Properties Scale - Java component scaling configurations
- Service
Binds List<Pulumi.Azure Native. App. Inputs. Java Component Service Bind> - List of Java Components that are bound to the Java component
- Configurations
[]Java
Component Configuration Property - List of Java Components configuration properties
- Scale
Java
Component Properties Scale - Java component scaling configurations
- Service
Binds []JavaComponent Service Bind - List of Java Components that are bound to the Java component
- configurations
List<Java
Component Configuration Property> - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service
Binds List<JavaComponent Service Bind> - List of Java Components that are bound to the Java component
- configurations
Java
Component Configuration Property[] - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service
Binds JavaComponent Service Bind[] - List of Java Components that are bound to the Java component
- configurations
Sequence[Java
Component Configuration Property] - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service_
binds Sequence[JavaComponent Service Bind] - 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
- service
Binds List<Property Map> - List of Java Components that are bound to the Java component
NacosComponentResponse, NacosComponentResponseArgs
- Provisioning
State string - Provisioning state of the Java Component.
- Configurations
List<Pulumi.
Azure Native. App. Inputs. Java Component Configuration Property Response> - List of Java Components configuration properties
- Ingress
Pulumi.
Azure Native. App. Inputs. Java Component Ingress Response - Java Component Ingress configurations.
- Scale
Pulumi.
Azure Native. App. Inputs. Java Component Properties Response Scale - Java component scaling configurations
- Service
Binds List<Pulumi.Azure Native. App. Inputs. Java Component Service Bind Response> - List of Java Components that are bound to the Java component
- Provisioning
State string - Provisioning state of the Java Component.
- Configurations
[]Java
Component Configuration Property Response - List of Java Components configuration properties
- Ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- Scale
Java
Component Properties Response Scale - Java component scaling configurations
- Service
Binds []JavaComponent Service Bind Response - List of Java Components that are bound to the Java component
- provisioning
State String - Provisioning state of the Java Component.
- configurations
List<Java
Component Configuration Property Response> - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service
Binds List<JavaComponent Service Bind Response> - List of Java Components that are bound to the Java component
- provisioning
State string - Provisioning state of the Java Component.
- configurations
Java
Component Configuration Property Response[] - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service
Binds JavaComponent Service Bind Response[] - List of Java Components that are bound to the Java component
- provisioning_
state str - Provisioning state of the Java Component.
- configurations
Sequence[Java
Component Configuration Property Response] - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service_
binds Sequence[JavaComponent Service Bind Response] - List of Java Components that are bound to the Java component
- provisioning
State 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
- service
Binds 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.
Azure Native. App. Inputs. Java Component Configuration Property> - List of Java Components configuration properties
- Scale
Pulumi.
Azure Native. App. Inputs. Java Component Properties Scale - Java component scaling configurations
- Service
Binds List<Pulumi.Azure Native. App. Inputs. Java Component Service Bind> - List of Java Components that are bound to the Java component
- Configurations
[]Java
Component Configuration Property - List of Java Components configuration properties
- Scale
Java
Component Properties Scale - Java component scaling configurations
- Service
Binds []JavaComponent Service Bind - List of Java Components that are bound to the Java component
- configurations
List<Java
Component Configuration Property> - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service
Binds List<JavaComponent Service Bind> - List of Java Components that are bound to the Java component
- configurations
Java
Component Configuration Property[] - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service
Binds JavaComponent Service Bind[] - List of Java Components that are bound to the Java component
- configurations
Sequence[Java
Component Configuration Property] - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service_
binds Sequence[JavaComponent Service Bind] - 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
- service
Binds List<Property Map> - List of Java Components that are bound to the Java component
SpringBootAdminComponentResponse, SpringBootAdminComponentResponseArgs
- Provisioning
State string - Provisioning state of the Java Component.
- Configurations
List<Pulumi.
Azure Native. App. Inputs. Java Component Configuration Property Response> - List of Java Components configuration properties
- Ingress
Pulumi.
Azure Native. App. Inputs. Java Component Ingress Response - Java Component Ingress configurations.
- Scale
Pulumi.
Azure Native. App. Inputs. Java Component Properties Response Scale - Java component scaling configurations
- Service
Binds List<Pulumi.Azure Native. App. Inputs. Java Component Service Bind Response> - List of Java Components that are bound to the Java component
- Provisioning
State string - Provisioning state of the Java Component.
- Configurations
[]Java
Component Configuration Property Response - List of Java Components configuration properties
- Ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- Scale
Java
Component Properties Response Scale - Java component scaling configurations
- Service
Binds []JavaComponent Service Bind Response - List of Java Components that are bound to the Java component
- provisioning
State String - Provisioning state of the Java Component.
- configurations
List<Java
Component Configuration Property Response> - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service
Binds List<JavaComponent Service Bind Response> - List of Java Components that are bound to the Java component
- provisioning
State string - Provisioning state of the Java Component.
- configurations
Java
Component Configuration Property Response[] - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service
Binds JavaComponent Service Bind Response[] - List of Java Components that are bound to the Java component
- provisioning_
state str - Provisioning state of the Java Component.
- configurations
Sequence[Java
Component Configuration Property Response] - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service_
binds Sequence[JavaComponent Service Bind Response] - List of Java Components that are bound to the Java component
- provisioning
State 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
- service
Binds List<Property Map> - List of Java Components that are bound to the Java component
SpringCloudConfigComponent, SpringCloudConfigComponentArgs
- Configurations
List<Pulumi.
Azure Native. App. Inputs. Java Component Configuration Property> - List of Java Components configuration properties
- Scale
Pulumi.
Azure Native. App. Inputs. Java Component Properties Scale - Java component scaling configurations
- Service
Binds List<Pulumi.Azure Native. App. Inputs. Java Component Service Bind> - List of Java Components that are bound to the Java component
- Configurations
[]Java
Component Configuration Property - List of Java Components configuration properties
- Scale
Java
Component Properties Scale - Java component scaling configurations
- Service
Binds []JavaComponent Service Bind - List of Java Components that are bound to the Java component
- configurations
List<Java
Component Configuration Property> - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service
Binds List<JavaComponent Service Bind> - List of Java Components that are bound to the Java component
- configurations
Java
Component Configuration Property[] - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service
Binds JavaComponent Service Bind[] - List of Java Components that are bound to the Java component
- configurations
Sequence[Java
Component Configuration Property] - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service_
binds Sequence[JavaComponent Service Bind] - 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
- service
Binds List<Property Map> - List of Java Components that are bound to the Java component
SpringCloudConfigComponentResponse, SpringCloudConfigComponentResponseArgs
- Provisioning
State string - Provisioning state of the Java Component.
- Configurations
List<Pulumi.
Azure Native. App. Inputs. Java Component Configuration Property Response> - List of Java Components configuration properties
- Scale
Pulumi.
Azure Native. App. Inputs. Java Component Properties Response Scale - Java component scaling configurations
- Service
Binds List<Pulumi.Azure Native. App. Inputs. Java Component Service Bind Response> - List of Java Components that are bound to the Java component
- Provisioning
State string - Provisioning state of the Java Component.
- Configurations
[]Java
Component Configuration Property Response - List of Java Components configuration properties
- Scale
Java
Component Properties Response Scale - Java component scaling configurations
- Service
Binds []JavaComponent Service Bind Response - List of Java Components that are bound to the Java component
- provisioning
State String - Provisioning state of the Java Component.
- configurations
List<Java
Component Configuration Property Response> - List of Java Components configuration properties
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service
Binds List<JavaComponent Service Bind Response> - List of Java Components that are bound to the Java component
- provisioning
State string - Provisioning state of the Java Component.
- configurations
Java
Component Configuration Property Response[] - List of Java Components configuration properties
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service
Binds JavaComponent Service Bind Response[] - List of Java Components that are bound to the Java component
- provisioning_
state str - Provisioning state of the Java Component.
- configurations
Sequence[Java
Component Configuration Property Response] - List of Java Components configuration properties
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service_
binds Sequence[JavaComponent Service Bind Response] - List of Java Components that are bound to the Java component
- provisioning
State String - Provisioning state of the Java Component.
- configurations List<Property Map>
- List of Java Components configuration properties
- scale Property Map
- Java component scaling configurations
- service
Binds List<Property Map> - List of Java Components that are bound to the Java component
SpringCloudEurekaComponent, SpringCloudEurekaComponentArgs
- Configurations
List<Pulumi.
Azure Native. App. Inputs. Java Component Configuration Property> - List of Java Components configuration properties
- Scale
Pulumi.
Azure Native. App. Inputs. Java Component Properties Scale - Java component scaling configurations
- Service
Binds List<Pulumi.Azure Native. App. Inputs. Java Component Service Bind> - List of Java Components that are bound to the Java component
- Configurations
[]Java
Component Configuration Property - List of Java Components configuration properties
- Scale
Java
Component Properties Scale - Java component scaling configurations
- Service
Binds []JavaComponent Service Bind - List of Java Components that are bound to the Java component
- configurations
List<Java
Component Configuration Property> - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service
Binds List<JavaComponent Service Bind> - List of Java Components that are bound to the Java component
- configurations
Java
Component Configuration Property[] - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service
Binds JavaComponent Service Bind[] - List of Java Components that are bound to the Java component
- configurations
Sequence[Java
Component Configuration Property] - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service_
binds Sequence[JavaComponent Service Bind] - 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
- service
Binds List<Property Map> - List of Java Components that are bound to the Java component
SpringCloudEurekaComponentResponse, SpringCloudEurekaComponentResponseArgs
- Provisioning
State string - Provisioning state of the Java Component.
- Configurations
List<Pulumi.
Azure Native. App. Inputs. Java Component Configuration Property Response> - List of Java Components configuration properties
- Ingress
Pulumi.
Azure Native. App. Inputs. Java Component Ingress Response - Java Component Ingress configurations.
- Scale
Pulumi.
Azure Native. App. Inputs. Java Component Properties Response Scale - Java component scaling configurations
- Service
Binds List<Pulumi.Azure Native. App. Inputs. Java Component Service Bind Response> - List of Java Components that are bound to the Java component
- Provisioning
State string - Provisioning state of the Java Component.
- Configurations
[]Java
Component Configuration Property Response - List of Java Components configuration properties
- Ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- Scale
Java
Component Properties Response Scale - Java component scaling configurations
- Service
Binds []JavaComponent Service Bind Response - List of Java Components that are bound to the Java component
- provisioning
State String - Provisioning state of the Java Component.
- configurations
List<Java
Component Configuration Property Response> - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service
Binds List<JavaComponent Service Bind Response> - List of Java Components that are bound to the Java component
- provisioning
State string - Provisioning state of the Java Component.
- configurations
Java
Component Configuration Property Response[] - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service
Binds JavaComponent Service Bind Response[] - List of Java Components that are bound to the Java component
- provisioning_
state str - Provisioning state of the Java Component.
- configurations
Sequence[Java
Component Configuration Property Response] - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service_
binds Sequence[JavaComponent Service Bind Response] - List of Java Components that are bound to the Java component
- provisioning
State 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
- service
Binds List<Property Map> - List of Java Components that are bound to the Java component
SpringCloudGatewayComponent, SpringCloudGatewayComponentArgs
- Configurations
List<Pulumi.
Azure Native. App. Inputs. Java Component Configuration Property> - List of Java Components configuration properties
- Scale
Pulumi.
Azure Native. App. Inputs. Java Component Properties Scale - Java component scaling configurations
- Service
Binds List<Pulumi.Azure Native. App. Inputs. Java Component Service Bind> - List of Java Components that are bound to the Java component
- Spring
Cloud List<Pulumi.Gateway Routes Azure Native. App. Inputs. Scg Route> - Gateway route definition
- Configurations
[]Java
Component Configuration Property - List of Java Components configuration properties
- Scale
Java
Component Properties Scale - Java component scaling configurations
- Service
Binds []JavaComponent Service Bind - List of Java Components that are bound to the Java component
- Spring
Cloud []ScgGateway Routes Route - Gateway route definition
- configurations
List<Java
Component Configuration Property> - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service
Binds List<JavaComponent Service Bind> - List of Java Components that are bound to the Java component
- spring
Cloud List<ScgGateway Routes Route> - Gateway route definition
- configurations
Java
Component Configuration Property[] - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service
Binds JavaComponent Service Bind[] - List of Java Components that are bound to the Java component
- spring
Cloud ScgGateway Routes Route[] - Gateway route definition
- configurations
Sequence[Java
Component Configuration Property] - List of Java Components configuration properties
- scale
Java
Component Properties Scale - Java component scaling configurations
- service_
binds Sequence[JavaComponent Service Bind] - List of Java Components that are bound to the Java component
- spring_
cloud_ Sequence[Scggateway_ routes Route] - Gateway route definition
- configurations List<Property Map>
- List of Java Components configuration properties
- scale Property Map
- Java component scaling configurations
- service
Binds List<Property Map> - List of Java Components that are bound to the Java component
- spring
Cloud List<Property Map>Gateway Routes - Gateway route definition
SpringCloudGatewayComponentResponse, SpringCloudGatewayComponentResponseArgs
- Provisioning
State string - Provisioning state of the Java Component.
- Configurations
List<Pulumi.
Azure Native. App. Inputs. Java Component Configuration Property Response> - List of Java Components configuration properties
- Ingress
Pulumi.
Azure Native. App. Inputs. Java Component Ingress Response - Java Component Ingress configurations.
- Scale
Pulumi.
Azure Native. App. Inputs. Java Component Properties Response Scale - Java component scaling configurations
- Service
Binds List<Pulumi.Azure Native. App. Inputs. Java Component Service Bind Response> - List of Java Components that are bound to the Java component
- Spring
Cloud List<Pulumi.Gateway Routes Azure Native. App. Inputs. Scg Route Response> - Gateway route definition
- Provisioning
State string - Provisioning state of the Java Component.
- Configurations
[]Java
Component Configuration Property Response - List of Java Components configuration properties
- Ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- Scale
Java
Component Properties Response Scale - Java component scaling configurations
- Service
Binds []JavaComponent Service Bind Response - List of Java Components that are bound to the Java component
- Spring
Cloud []ScgGateway Routes Route Response - Gateway route definition
- provisioning
State String - Provisioning state of the Java Component.
- configurations
List<Java
Component Configuration Property Response> - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service
Binds List<JavaComponent Service Bind Response> - List of Java Components that are bound to the Java component
- spring
Cloud List<ScgGateway Routes Route Response> - Gateway route definition
- provisioning
State string - Provisioning state of the Java Component.
- configurations
Java
Component Configuration Property Response[] - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service
Binds JavaComponent Service Bind Response[] - List of Java Components that are bound to the Java component
- spring
Cloud ScgGateway Routes Route Response[] - Gateway route definition
- provisioning_
state str - Provisioning state of the Java Component.
- configurations
Sequence[Java
Component Configuration Property Response] - List of Java Components configuration properties
- ingress
Java
Component Ingress Response - Java Component Ingress configurations.
- scale
Java
Component Properties Response Scale - Java component scaling configurations
- service_
binds Sequence[JavaComponent Service Bind Response] - List of Java Components that are bound to the Java component
- spring_
cloud_ Sequence[Scggateway_ routes Route Response] - Gateway route definition
- provisioning
State 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
- service
Binds List<Property Map> - List of Java Components that are bound to the Java component
- spring
Cloud List<Property Map>Gateway Routes - Gateway route definition
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