azure-native.offazurespringboot.Springbootserver
Explore with Pulumi AI
The springbootservers envelope resource definition. Azure REST API version: 2023-01-01-preview.
Example Usage
springbootservers_CreateOrUpdate_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var springbootserver = new AzureNative.OffAzureSpringBoot.Springbootserver("springbootserver", new()
    {
        Properties = new AzureNative.OffAzureSpringBoot.Inputs.SpringbootserversPropertiesArgs
        {
            Errors = new() { },
            FqdnAndIpAddressList = new() { },
            MachineArmId = "fvfkiapbqsprnbzczdfmuryknrna",
            Port = 10,
            Server = "thhuxocfyqpeluqcgnypi",
            SpringBootApps = 17,
            TotalApps = 5,
        },
        ResourceGroupName = "rgspringbootservers",
        SiteName = "hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj",
        SpringbootserversName = "zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn",
    });
});
package main
import (
	offazurespringboot "github.com/pulumi/pulumi-azure-native-sdk/offazurespringboot/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := offazurespringboot.NewSpringbootserver(ctx, "springbootserver", &offazurespringboot.SpringbootserverArgs{
			Properties: &offazurespringboot.SpringbootserversPropertiesArgs{
				Errors:               offazurespringboot.ErrorArray{},
				FqdnAndIpAddressList: pulumi.StringArray{},
				MachineArmId:         pulumi.String("fvfkiapbqsprnbzczdfmuryknrna"),
				Port:                 pulumi.Int(10),
				Server:               pulumi.String("thhuxocfyqpeluqcgnypi"),
				SpringBootApps:       pulumi.Int(17),
				TotalApps:            pulumi.Int(5),
			},
			ResourceGroupName:     pulumi.String("rgspringbootservers"),
			SiteName:              pulumi.String("hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj"),
			SpringbootserversName: pulumi.String("zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn"),
		})
		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.offazurespringboot.Springbootserver;
import com.pulumi.azurenative.offazurespringboot.SpringbootserverArgs;
import com.pulumi.azurenative.offazurespringboot.inputs.SpringbootserversPropertiesArgs;
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 springbootserver = new Springbootserver("springbootserver", SpringbootserverArgs.builder()
            .properties(SpringbootserversPropertiesArgs.builder()
                .errors()
                .fqdnAndIpAddressList()
                .machineArmId("fvfkiapbqsprnbzczdfmuryknrna")
                .port(10)
                .server("thhuxocfyqpeluqcgnypi")
                .springBootApps(17)
                .totalApps(5)
                .build())
            .resourceGroupName("rgspringbootservers")
            .siteName("hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj")
            .springbootserversName("zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const springbootserver = new azure_native.offazurespringboot.Springbootserver("springbootserver", {
    properties: {
        errors: [],
        fqdnAndIpAddressList: [],
        machineArmId: "fvfkiapbqsprnbzczdfmuryknrna",
        port: 10,
        server: "thhuxocfyqpeluqcgnypi",
        springBootApps: 17,
        totalApps: 5,
    },
    resourceGroupName: "rgspringbootservers",
    siteName: "hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj",
    springbootserversName: "zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn",
});
import pulumi
import pulumi_azure_native as azure_native
springbootserver = azure_native.offazurespringboot.Springbootserver("springbootserver",
    properties={
        "errors": [],
        "fqdn_and_ip_address_list": [],
        "machine_arm_id": "fvfkiapbqsprnbzczdfmuryknrna",
        "port": 10,
        "server": "thhuxocfyqpeluqcgnypi",
        "spring_boot_apps": 17,
        "total_apps": 5,
    },
    resource_group_name="rgspringbootservers",
    site_name="hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj",
    springbootservers_name="zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn")
resources:
  springbootserver:
    type: azure-native:offazurespringboot:Springbootserver
    properties:
      properties:
        errors: []
        fqdnAndIpAddressList: []
        machineArmId: fvfkiapbqsprnbzczdfmuryknrna
        port: 10
        server: thhuxocfyqpeluqcgnypi
        springBootApps: 17
        totalApps: 5
      resourceGroupName: rgspringbootservers
      siteName: hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj
      springbootserversName: zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn
springbootservers_CreateOrUpdate_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var springbootserver = new AzureNative.OffAzureSpringBoot.Springbootserver("springbootserver", new()
    {
        ResourceGroupName = "rgspringbootservers",
        SiteName = "hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj",
        SpringbootserversName = "zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn",
    });
});
package main
import (
	offazurespringboot "github.com/pulumi/pulumi-azure-native-sdk/offazurespringboot/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := offazurespringboot.NewSpringbootserver(ctx, "springbootserver", &offazurespringboot.SpringbootserverArgs{
			ResourceGroupName:     pulumi.String("rgspringbootservers"),
			SiteName:              pulumi.String("hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj"),
			SpringbootserversName: pulumi.String("zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn"),
		})
		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.offazurespringboot.Springbootserver;
import com.pulumi.azurenative.offazurespringboot.SpringbootserverArgs;
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 springbootserver = new Springbootserver("springbootserver", SpringbootserverArgs.builder()
            .resourceGroupName("rgspringbootservers")
            .siteName("hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj")
            .springbootserversName("zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const springbootserver = new azure_native.offazurespringboot.Springbootserver("springbootserver", {
    resourceGroupName: "rgspringbootservers",
    siteName: "hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj",
    springbootserversName: "zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn",
});
import pulumi
import pulumi_azure_native as azure_native
springbootserver = azure_native.offazurespringboot.Springbootserver("springbootserver",
    resource_group_name="rgspringbootservers",
    site_name="hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj",
    springbootservers_name="zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn")
resources:
  springbootserver:
    type: azure-native:offazurespringboot:Springbootserver
    properties:
      resourceGroupName: rgspringbootservers
      siteName: hlkrzldhyobavtabgpubtjbhlslnjmsvkthwcfboriwyxndacjypzbj
      springbootserversName: zkarbqnwnxeozvjrkpdqmgnwedwgtwcmmyqwaijkn
Create Springbootserver Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Springbootserver(name: string, args: SpringbootserverArgs, opts?: CustomResourceOptions);@overload
def Springbootserver(resource_name: str,
                     args: SpringbootserverArgs,
                     opts: Optional[ResourceOptions] = None)
@overload
def Springbootserver(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     resource_group_name: Optional[str] = None,
                     site_name: Optional[str] = None,
                     properties: Optional[SpringbootserversPropertiesArgs] = None,
                     springbootservers_name: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None)func NewSpringbootserver(ctx *Context, name string, args SpringbootserverArgs, opts ...ResourceOption) (*Springbootserver, error)public Springbootserver(string name, SpringbootserverArgs args, CustomResourceOptions? opts = null)
public Springbootserver(String name, SpringbootserverArgs args)
public Springbootserver(String name, SpringbootserverArgs args, CustomResourceOptions options)
type: azure-native:offazurespringboot:Springbootserver
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 SpringbootserverArgs
- 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 SpringbootserverArgs
- 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 SpringbootserverArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpringbootserverArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SpringbootserverArgs
- 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 springbootserverResource = new AzureNative.OffAzureSpringBoot.Springbootserver("springbootserverResource", new()
{
    ResourceGroupName = "string",
    SiteName = "string",
    Properties = new AzureNative.OffAzureSpringBoot.Inputs.SpringbootserversPropertiesArgs
    {
        Server = "string",
        Errors = new[]
        {
            new AzureNative.OffAzureSpringBoot.Inputs.ErrorArgs
            {
                Code = "string",
                Id = 0,
                Message = "string",
                PossibleCauses = "string",
                RecommendedAction = "string",
                RunAsAccountId = "string",
                Severity = "string",
                SummaryMessage = "string",
                UpdatedTimeStamp = "string",
            },
        },
        FqdnAndIpAddressList = new[]
        {
            "string",
        },
        MachineArmId = "string",
        Port = 0,
        ProvisioningState = "string",
        SpringBootApps = 0,
        TotalApps = 0,
    },
    SpringbootserversName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := offazurespringboot.NewSpringbootserver(ctx, "springbootserverResource", &offazurespringboot.SpringbootserverArgs{
	ResourceGroupName: pulumi.String("string"),
	SiteName:          pulumi.String("string"),
	Properties: &offazurespringboot.SpringbootserversPropertiesArgs{
		Server: pulumi.String("string"),
		Errors: offazurespringboot.ErrorArray{
			&offazurespringboot.ErrorArgs{
				Code:              pulumi.String("string"),
				Id:                pulumi.Float64(0),
				Message:           pulumi.String("string"),
				PossibleCauses:    pulumi.String("string"),
				RecommendedAction: pulumi.String("string"),
				RunAsAccountId:    pulumi.String("string"),
				Severity:          pulumi.String("string"),
				SummaryMessage:    pulumi.String("string"),
				UpdatedTimeStamp:  pulumi.String("string"),
			},
		},
		FqdnAndIpAddressList: pulumi.StringArray{
			pulumi.String("string"),
		},
		MachineArmId:      pulumi.String("string"),
		Port:              pulumi.Int(0),
		ProvisioningState: pulumi.String("string"),
		SpringBootApps:    pulumi.Int(0),
		TotalApps:         pulumi.Int(0),
	},
	SpringbootserversName: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var springbootserverResource = new Springbootserver("springbootserverResource", SpringbootserverArgs.builder()
    .resourceGroupName("string")
    .siteName("string")
    .properties(SpringbootserversPropertiesArgs.builder()
        .server("string")
        .errors(ErrorArgs.builder()
            .code("string")
            .id(0)
            .message("string")
            .possibleCauses("string")
            .recommendedAction("string")
            .runAsAccountId("string")
            .severity("string")
            .summaryMessage("string")
            .updatedTimeStamp("string")
            .build())
        .fqdnAndIpAddressList("string")
        .machineArmId("string")
        .port(0)
        .provisioningState("string")
        .springBootApps(0)
        .totalApps(0)
        .build())
    .springbootserversName("string")
    .tags(Map.of("string", "string"))
    .build());
springbootserver_resource = azure_native.offazurespringboot.Springbootserver("springbootserverResource",
    resource_group_name="string",
    site_name="string",
    properties={
        "server": "string",
        "errors": [{
            "code": "string",
            "id": 0,
            "message": "string",
            "possible_causes": "string",
            "recommended_action": "string",
            "run_as_account_id": "string",
            "severity": "string",
            "summary_message": "string",
            "updated_time_stamp": "string",
        }],
        "fqdn_and_ip_address_list": ["string"],
        "machine_arm_id": "string",
        "port": 0,
        "provisioning_state": "string",
        "spring_boot_apps": 0,
        "total_apps": 0,
    },
    springbootservers_name="string",
    tags={
        "string": "string",
    })
const springbootserverResource = new azure_native.offazurespringboot.Springbootserver("springbootserverResource", {
    resourceGroupName: "string",
    siteName: "string",
    properties: {
        server: "string",
        errors: [{
            code: "string",
            id: 0,
            message: "string",
            possibleCauses: "string",
            recommendedAction: "string",
            runAsAccountId: "string",
            severity: "string",
            summaryMessage: "string",
            updatedTimeStamp: "string",
        }],
        fqdnAndIpAddressList: ["string"],
        machineArmId: "string",
        port: 0,
        provisioningState: "string",
        springBootApps: 0,
        totalApps: 0,
    },
    springbootserversName: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:offazurespringboot:Springbootserver
properties:
    properties:
        errors:
            - code: string
              id: 0
              message: string
              possibleCauses: string
              recommendedAction: string
              runAsAccountId: string
              severity: string
              summaryMessage: string
              updatedTimeStamp: string
        fqdnAndIpAddressList:
            - string
        machineArmId: string
        port: 0
        provisioningState: string
        server: string
        springBootApps: 0
        totalApps: 0
    resourceGroupName: string
    siteName: string
    springbootserversName: string
    tags:
        string: string
Springbootserver 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 Springbootserver resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SiteName string
- The springbootsites name.
- Properties
Pulumi.Azure Native. Off Azure Spring Boot. Inputs. Springbootservers Properties 
- The springbootservers resource definition.
- SpringbootserversName string
- The springbootservers name.
- Dictionary<string, string>
- Resource tags
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SiteName string
- The springbootsites name.
- Properties
SpringbootserversProperties Args 
- The springbootservers resource definition.
- SpringbootserversName string
- The springbootservers name.
- map[string]string
- Resource tags
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- siteName String
- The springbootsites name.
- properties
SpringbootserversProperties 
- The springbootservers resource definition.
- springbootserversName String
- The springbootservers name.
- Map<String,String>
- Resource tags
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- siteName string
- The springbootsites name.
- properties
SpringbootserversProperties 
- The springbootservers resource definition.
- springbootserversName string
- The springbootservers name.
- {[key: string]: string}
- Resource tags
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- site_name str
- The springbootsites name.
- properties
SpringbootserversProperties Args 
- The springbootservers resource definition.
- springbootservers_name str
- The springbootservers name.
- Mapping[str, str]
- Resource tags
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- siteName String
- The springbootsites name.
- properties Property Map
- The springbootservers resource definition.
- springbootserversName String
- The springbootservers name.
- Map<String>
- Resource tags
Outputs
All input properties are implicitly available as output properties. Additionally, the Springbootserver resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Off Azure Spring Boot. 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.
- Name string
- The name of the resource
- SystemData 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.
- name String
- The name of the resource
- systemData 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.
- name string
- The name of the resource
- systemData 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.
- name str
- The name of the 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
Error, ErrorArgs  
- Code string
- The error code.
- Id double
- The error ID.
- Message string
- The detailed error message.
- PossibleCauses string
- The error possible causes.
- RecommendedAction string
- The error recommended action
- RunAs stringAccount Id 
- The account ID used to login.
- Severity string
- The error severity
- SummaryMessage string
- The summarized error message.
- UpdatedTime stringStamp 
- Time when this error was last updated.
- Code string
- The error code.
- Id float64
- The error ID.
- Message string
- The detailed error message.
- PossibleCauses string
- The error possible causes.
- RecommendedAction string
- The error recommended action
- RunAs stringAccount Id 
- The account ID used to login.
- Severity string
- The error severity
- SummaryMessage string
- The summarized error message.
- UpdatedTime stringStamp 
- Time when this error was last updated.
- code String
- The error code.
- id Double
- The error ID.
- message String
- The detailed error message.
- possibleCauses String
- The error possible causes.
- recommendedAction String
- The error recommended action
- runAs StringAccount Id 
- The account ID used to login.
- severity String
- The error severity
- summaryMessage String
- The summarized error message.
- updatedTime StringStamp 
- Time when this error was last updated.
- code string
- The error code.
- id number
- The error ID.
- message string
- The detailed error message.
- possibleCauses string
- The error possible causes.
- recommendedAction string
- The error recommended action
- runAs stringAccount Id 
- The account ID used to login.
- severity string
- The error severity
- summaryMessage string
- The summarized error message.
- updatedTime stringStamp 
- Time when this error was last updated.
- code str
- The error code.
- id float
- The error ID.
- message str
- The detailed error message.
- possible_causes str
- The error possible causes.
- recommended_action str
- The error recommended action
- run_as_ straccount_ id 
- The account ID used to login.
- severity str
- The error severity
- summary_message str
- The summarized error message.
- updated_time_ strstamp 
- Time when this error was last updated.
- code String
- The error code.
- id Number
- The error ID.
- message String
- The detailed error message.
- possibleCauses String
- The error possible causes.
- recommendedAction String
- The error recommended action
- runAs StringAccount Id 
- The account ID used to login.
- severity String
- The error severity
- summaryMessage String
- The summarized error message.
- updatedTime StringStamp 
- Time when this error was last updated.
ErrorResponse, ErrorResponseArgs    
- Code string
- The error code.
- Id double
- The error ID.
- Message string
- The detailed error message.
- PossibleCauses string
- The error possible causes.
- RecommendedAction string
- The error recommended action
- RunAs stringAccount Id 
- The account ID used to login.
- Severity string
- The error severity
- SummaryMessage string
- The summarized error message.
- UpdatedTime stringStamp 
- Time when this error was last updated.
- Code string
- The error code.
- Id float64
- The error ID.
- Message string
- The detailed error message.
- PossibleCauses string
- The error possible causes.
- RecommendedAction string
- The error recommended action
- RunAs stringAccount Id 
- The account ID used to login.
- Severity string
- The error severity
- SummaryMessage string
- The summarized error message.
- UpdatedTime stringStamp 
- Time when this error was last updated.
- code String
- The error code.
- id Double
- The error ID.
- message String
- The detailed error message.
- possibleCauses String
- The error possible causes.
- recommendedAction String
- The error recommended action
- runAs StringAccount Id 
- The account ID used to login.
- severity String
- The error severity
- summaryMessage String
- The summarized error message.
- updatedTime StringStamp 
- Time when this error was last updated.
- code string
- The error code.
- id number
- The error ID.
- message string
- The detailed error message.
- possibleCauses string
- The error possible causes.
- recommendedAction string
- The error recommended action
- runAs stringAccount Id 
- The account ID used to login.
- severity string
- The error severity
- summaryMessage string
- The summarized error message.
- updatedTime stringStamp 
- Time when this error was last updated.
- code str
- The error code.
- id float
- The error ID.
- message str
- The detailed error message.
- possible_causes str
- The error possible causes.
- recommended_action str
- The error recommended action
- run_as_ straccount_ id 
- The account ID used to login.
- severity str
- The error severity
- summary_message str
- The summarized error message.
- updated_time_ strstamp 
- Time when this error was last updated.
- code String
- The error code.
- id Number
- The error ID.
- message String
- The detailed error message.
- possibleCauses String
- The error possible causes.
- recommendedAction String
- The error recommended action
- runAs StringAccount Id 
- The account ID used to login.
- severity String
- The error severity
- summaryMessage String
- The summarized error message.
- updatedTime StringStamp 
- Time when this error was last updated.
ProvisioningState, ProvisioningStateArgs    
- Unknown
- Unknown
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Accepted
- Accepted
- Provisioning
- Provisioning
- Deleting
- Deleting
- ProvisioningState Unknown 
- Unknown
- ProvisioningState Succeeded 
- Succeeded
- ProvisioningState Failed 
- Failed
- ProvisioningState Canceled 
- Canceled
- ProvisioningState Accepted 
- Accepted
- ProvisioningState Provisioning 
- Provisioning
- ProvisioningState Deleting 
- Deleting
- Unknown
- Unknown
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Accepted
- Accepted
- Provisioning
- Provisioning
- Deleting
- Deleting
- Unknown
- Unknown
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Accepted
- Accepted
- Provisioning
- Provisioning
- Deleting
- Deleting
- UNKNOWN
- Unknown
- SUCCEEDED
- Succeeded
- FAILED
- Failed
- CANCELED
- Canceled
- ACCEPTED
- Accepted
- PROVISIONING
- Provisioning
- DELETING
- Deleting
- "Unknown"
- Unknown
- "Succeeded"
- Succeeded
- "Failed"
- Failed
- "Canceled"
- Canceled
- "Accepted"
- Accepted
- "Provisioning"
- Provisioning
- "Deleting"
- Deleting
SpringbootserversProperties, SpringbootserversPropertiesArgs    
- Server string
- Server is the target server name or ip address to discover of SpringBootServer.
- Errors
List<Pulumi.Azure Native. Off Azure Spring Boot. Inputs. Error> 
- The list of errors.
- FqdnAnd List<string>Ip Address List 
- The alternative FQDN or IP addresses to discover for this server
- MachineArm stringId 
- The machine Id from ARM
- Port int
- Target server port for remote login
- ProvisioningState string | Pulumi.Azure Native. Off Azure Spring Boot. Provisioning State 
- The resource provisioning state.
- SpringBoot intApps 
- The total number of spring boot apps been discovered
- TotalApps int
- The total number of apps been discovered
- Server string
- Server is the target server name or ip address to discover of SpringBootServer.
- Errors []Error
- The list of errors.
- FqdnAnd []stringIp Address List 
- The alternative FQDN or IP addresses to discover for this server
- MachineArm stringId 
- The machine Id from ARM
- Port int
- Target server port for remote login
- ProvisioningState string | ProvisioningState 
- The resource provisioning state.
- SpringBoot intApps 
- The total number of spring boot apps been discovered
- TotalApps int
- The total number of apps been discovered
- server String
- Server is the target server name or ip address to discover of SpringBootServer.
- errors List<Error>
- The list of errors.
- fqdnAnd List<String>Ip Address List 
- The alternative FQDN or IP addresses to discover for this server
- machineArm StringId 
- The machine Id from ARM
- port Integer
- Target server port for remote login
- provisioningState String | ProvisioningState 
- The resource provisioning state.
- springBoot IntegerApps 
- The total number of spring boot apps been discovered
- totalApps Integer
- The total number of apps been discovered
- server string
- Server is the target server name or ip address to discover of SpringBootServer.
- errors Error[]
- The list of errors.
- fqdnAnd string[]Ip Address List 
- The alternative FQDN or IP addresses to discover for this server
- machineArm stringId 
- The machine Id from ARM
- port number
- Target server port for remote login
- provisioningState string | ProvisioningState 
- The resource provisioning state.
- springBoot numberApps 
- The total number of spring boot apps been discovered
- totalApps number
- The total number of apps been discovered
- server str
- Server is the target server name or ip address to discover of SpringBootServer.
- errors Sequence[Error]
- The list of errors.
- fqdn_and_ Sequence[str]ip_ address_ list 
- The alternative FQDN or IP addresses to discover for this server
- machine_arm_ strid 
- The machine Id from ARM
- port int
- Target server port for remote login
- provisioning_state str | ProvisioningState 
- The resource provisioning state.
- spring_boot_ intapps 
- The total number of spring boot apps been discovered
- total_apps int
- The total number of apps been discovered
- server String
- Server is the target server name or ip address to discover of SpringBootServer.
- errors List<Property Map>
- The list of errors.
- fqdnAnd List<String>Ip Address List 
- The alternative FQDN or IP addresses to discover for this server
- machineArm StringId 
- The machine Id from ARM
- port Number
- Target server port for remote login
- provisioningState String | "Unknown" | "Succeeded" | "Failed" | "Canceled" | "Accepted" | "Provisioning" | "Deleting"
- The resource provisioning state.
- springBoot NumberApps 
- The total number of spring boot apps been discovered
- totalApps Number
- The total number of apps been discovered
SpringbootserversPropertiesResponse, SpringbootserversPropertiesResponseArgs      
- Server string
- Server is the target server name or ip address to discover of SpringBootServer.
- Errors
List<Pulumi.Azure Native. Off Azure Spring Boot. Inputs. Error Response> 
- The list of errors.
- FqdnAnd List<string>Ip Address List 
- The alternative FQDN or IP addresses to discover for this server
- MachineArm stringId 
- The machine Id from ARM
- Port int
- Target server port for remote login
- ProvisioningState string
- The resource provisioning state.
- SpringBoot intApps 
- The total number of spring boot apps been discovered
- TotalApps int
- The total number of apps been discovered
- Server string
- Server is the target server name or ip address to discover of SpringBootServer.
- Errors
[]ErrorResponse 
- The list of errors.
- FqdnAnd []stringIp Address List 
- The alternative FQDN or IP addresses to discover for this server
- MachineArm stringId 
- The machine Id from ARM
- Port int
- Target server port for remote login
- ProvisioningState string
- The resource provisioning state.
- SpringBoot intApps 
- The total number of spring boot apps been discovered
- TotalApps int
- The total number of apps been discovered
- server String
- Server is the target server name or ip address to discover of SpringBootServer.
- errors
List<ErrorResponse> 
- The list of errors.
- fqdnAnd List<String>Ip Address List 
- The alternative FQDN or IP addresses to discover for this server
- machineArm StringId 
- The machine Id from ARM
- port Integer
- Target server port for remote login
- provisioningState String
- The resource provisioning state.
- springBoot IntegerApps 
- The total number of spring boot apps been discovered
- totalApps Integer
- The total number of apps been discovered
- server string
- Server is the target server name or ip address to discover of SpringBootServer.
- errors
ErrorResponse[] 
- The list of errors.
- fqdnAnd string[]Ip Address List 
- The alternative FQDN or IP addresses to discover for this server
- machineArm stringId 
- The machine Id from ARM
- port number
- Target server port for remote login
- provisioningState string
- The resource provisioning state.
- springBoot numberApps 
- The total number of spring boot apps been discovered
- totalApps number
- The total number of apps been discovered
- server str
- Server is the target server name or ip address to discover of SpringBootServer.
- errors
Sequence[ErrorResponse] 
- The list of errors.
- fqdn_and_ Sequence[str]ip_ address_ list 
- The alternative FQDN or IP addresses to discover for this server
- machine_arm_ strid 
- The machine Id from ARM
- port int
- Target server port for remote login
- provisioning_state str
- The resource provisioning state.
- spring_boot_ intapps 
- The total number of spring boot apps been discovered
- total_apps int
- The total number of apps been discovered
- server String
- Server is the target server name or ip address to discover of SpringBootServer.
- errors List<Property Map>
- The list of errors.
- fqdnAnd List<String>Ip Address List 
- The alternative FQDN or IP addresses to discover for this server
- machineArm StringId 
- The machine Id from ARM
- port Number
- Target server port for remote login
- provisioningState String
- The resource provisioning state.
- springBoot NumberApps 
- The total number of spring boot apps been discovered
- totalApps Number
- The total number of apps been discovered
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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:offazurespringboot:Springbootserver licrobomiqalwnrti /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OffAzureSpringBoot/springbootsites/{siteName}/springbootservers/{springbootserversName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0