azure-native.offazurespringboot.Springbootsite
Explore with Pulumi AI
The springbootsites envelope resource definition. Azure REST API version: 2023-01-01-preview.
Example Usage
springbootsites_CreateOrUpdate_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var springbootsite = new AzureNative.OffAzureSpringBoot.Springbootsite("springbootsite", new()
{
ExtendedLocation = new AzureNative.OffAzureSpringBoot.Inputs.SpringbootsitesModelExtendedLocationArgs
{
Name = "rywvpbfsqovhlfirtwisugsdsfsgf",
Type = "lvsb",
},
Location = "tgobtvxktootwhhvjtsmpddvlqlrq",
Properties = new AzureNative.OffAzureSpringBoot.Inputs.SpringbootsitesPropertiesArgs
{
MasterSiteId = "xsoimrgshsactearljwuljmi",
MigrateProjectId = "wwuattybgco",
},
ResourceGroupName = "rgspringbootsites",
SpringbootsitesName = "xrmzlavpewxtfeitghdrj",
Tags =
{
{ "key3558", "xeuhtglamqzj" },
},
});
});
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.NewSpringbootsite(ctx, "springbootsite", &offazurespringboot.SpringbootsiteArgs{
ExtendedLocation: &offazurespringboot.SpringbootsitesModelExtendedLocationArgs{
Name: pulumi.String("rywvpbfsqovhlfirtwisugsdsfsgf"),
Type: pulumi.String("lvsb"),
},
Location: pulumi.String("tgobtvxktootwhhvjtsmpddvlqlrq"),
Properties: &offazurespringboot.SpringbootsitesPropertiesArgs{
MasterSiteId: pulumi.String("xsoimrgshsactearljwuljmi"),
MigrateProjectId: pulumi.String("wwuattybgco"),
},
ResourceGroupName: pulumi.String("rgspringbootsites"),
SpringbootsitesName: pulumi.String("xrmzlavpewxtfeitghdrj"),
Tags: pulumi.StringMap{
"key3558": pulumi.String("xeuhtglamqzj"),
},
})
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.Springbootsite;
import com.pulumi.azurenative.offazurespringboot.SpringbootsiteArgs;
import com.pulumi.azurenative.offazurespringboot.inputs.SpringbootsitesModelExtendedLocationArgs;
import com.pulumi.azurenative.offazurespringboot.inputs.SpringbootsitesPropertiesArgs;
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 springbootsite = new Springbootsite("springbootsite", SpringbootsiteArgs.builder()
.extendedLocation(SpringbootsitesModelExtendedLocationArgs.builder()
.name("rywvpbfsqovhlfirtwisugsdsfsgf")
.type("lvsb")
.build())
.location("tgobtvxktootwhhvjtsmpddvlqlrq")
.properties(SpringbootsitesPropertiesArgs.builder()
.masterSiteId("xsoimrgshsactearljwuljmi")
.migrateProjectId("wwuattybgco")
.build())
.resourceGroupName("rgspringbootsites")
.springbootsitesName("xrmzlavpewxtfeitghdrj")
.tags(Map.of("key3558", "xeuhtglamqzj"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
springbootsite = azure_native.offazurespringboot.Springbootsite("springbootsite",
extended_location={
"name": "rywvpbfsqovhlfirtwisugsdsfsgf",
"type": "lvsb",
},
location="tgobtvxktootwhhvjtsmpddvlqlrq",
properties={
"master_site_id": "xsoimrgshsactearljwuljmi",
"migrate_project_id": "wwuattybgco",
},
resource_group_name="rgspringbootsites",
springbootsites_name="xrmzlavpewxtfeitghdrj",
tags={
"key3558": "xeuhtglamqzj",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const springbootsite = new azure_native.offazurespringboot.Springbootsite("springbootsite", {
extendedLocation: {
name: "rywvpbfsqovhlfirtwisugsdsfsgf",
type: "lvsb",
},
location: "tgobtvxktootwhhvjtsmpddvlqlrq",
properties: {
masterSiteId: "xsoimrgshsactearljwuljmi",
migrateProjectId: "wwuattybgco",
},
resourceGroupName: "rgspringbootsites",
springbootsitesName: "xrmzlavpewxtfeitghdrj",
tags: {
key3558: "xeuhtglamqzj",
},
});
resources:
springbootsite:
type: azure-native:offazurespringboot:Springbootsite
properties:
extendedLocation:
name: rywvpbfsqovhlfirtwisugsdsfsgf
type: lvsb
location: tgobtvxktootwhhvjtsmpddvlqlrq
properties:
masterSiteId: xsoimrgshsactearljwuljmi
migrateProjectId: wwuattybgco
resourceGroupName: rgspringbootsites
springbootsitesName: xrmzlavpewxtfeitghdrj
tags:
key3558: xeuhtglamqzj
springbootsites_CreateOrUpdate_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var springbootsite = new AzureNative.OffAzureSpringBoot.Springbootsite("springbootsite", new()
{
Location = "tgobtvxktootwhhvjtsmpddvlqlrq",
ResourceGroupName = "rgspringbootsites",
SpringbootsitesName = "xrmzlavpewxtfeitghdrj",
});
});
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.NewSpringbootsite(ctx, "springbootsite", &offazurespringboot.SpringbootsiteArgs{
Location: pulumi.String("tgobtvxktootwhhvjtsmpddvlqlrq"),
ResourceGroupName: pulumi.String("rgspringbootsites"),
SpringbootsitesName: pulumi.String("xrmzlavpewxtfeitghdrj"),
})
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.Springbootsite;
import com.pulumi.azurenative.offazurespringboot.SpringbootsiteArgs;
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 springbootsite = new Springbootsite("springbootsite", SpringbootsiteArgs.builder()
.location("tgobtvxktootwhhvjtsmpddvlqlrq")
.resourceGroupName("rgspringbootsites")
.springbootsitesName("xrmzlavpewxtfeitghdrj")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
springbootsite = azure_native.offazurespringboot.Springbootsite("springbootsite",
location="tgobtvxktootwhhvjtsmpddvlqlrq",
resource_group_name="rgspringbootsites",
springbootsites_name="xrmzlavpewxtfeitghdrj")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const springbootsite = new azure_native.offazurespringboot.Springbootsite("springbootsite", {
location: "tgobtvxktootwhhvjtsmpddvlqlrq",
resourceGroupName: "rgspringbootsites",
springbootsitesName: "xrmzlavpewxtfeitghdrj",
});
resources:
springbootsite:
type: azure-native:offazurespringboot:Springbootsite
properties:
location: tgobtvxktootwhhvjtsmpddvlqlrq
resourceGroupName: rgspringbootsites
springbootsitesName: xrmzlavpewxtfeitghdrj
Create Springbootsite Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Springbootsite(name: string, args: SpringbootsiteArgs, opts?: CustomResourceOptions);
@overload
def Springbootsite(resource_name: str,
args: SpringbootsiteArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Springbootsite(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
extended_location: Optional[SpringbootsitesModelExtendedLocationArgs] = None,
location: Optional[str] = None,
properties: Optional[SpringbootsitesPropertiesArgs] = None,
springbootsites_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewSpringbootsite(ctx *Context, name string, args SpringbootsiteArgs, opts ...ResourceOption) (*Springbootsite, error)
public Springbootsite(string name, SpringbootsiteArgs args, CustomResourceOptions? opts = null)
public Springbootsite(String name, SpringbootsiteArgs args)
public Springbootsite(String name, SpringbootsiteArgs args, CustomResourceOptions options)
type: azure-native:offazurespringboot:Springbootsite
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 SpringbootsiteArgs
- 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 SpringbootsiteArgs
- 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 SpringbootsiteArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpringbootsiteArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SpringbootsiteArgs
- 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 springbootsiteResource = new AzureNative.OffAzureSpringBoot.Springbootsite("springbootsiteResource", new()
{
ResourceGroupName = "string",
ExtendedLocation = new AzureNative.OffAzureSpringBoot.Inputs.SpringbootsitesModelExtendedLocationArgs
{
Name = "string",
Type = "string",
},
Location = "string",
Properties = new AzureNative.OffAzureSpringBoot.Inputs.SpringbootsitesPropertiesArgs
{
MasterSiteId = "string",
MigrateProjectId = "string",
ProvisioningState = "string",
},
SpringbootsitesName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := offazurespringboot.NewSpringbootsite(ctx, "springbootsiteResource", &offazurespringboot.SpringbootsiteArgs{
ResourceGroupName: pulumi.String("string"),
ExtendedLocation: &offazurespringboot.SpringbootsitesModelExtendedLocationArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
Location: pulumi.String("string"),
Properties: &offazurespringboot.SpringbootsitesPropertiesArgs{
MasterSiteId: pulumi.String("string"),
MigrateProjectId: pulumi.String("string"),
ProvisioningState: pulumi.String("string"),
},
SpringbootsitesName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var springbootsiteResource = new Springbootsite("springbootsiteResource", SpringbootsiteArgs.builder()
.resourceGroupName("string")
.extendedLocation(SpringbootsitesModelExtendedLocationArgs.builder()
.name("string")
.type("string")
.build())
.location("string")
.properties(SpringbootsitesPropertiesArgs.builder()
.masterSiteId("string")
.migrateProjectId("string")
.provisioningState("string")
.build())
.springbootsitesName("string")
.tags(Map.of("string", "string"))
.build());
springbootsite_resource = azure_native.offazurespringboot.Springbootsite("springbootsiteResource",
resource_group_name="string",
extended_location={
"name": "string",
"type": "string",
},
location="string",
properties={
"masterSiteId": "string",
"migrateProjectId": "string",
"provisioningState": "string",
},
springbootsites_name="string",
tags={
"string": "string",
})
const springbootsiteResource = new azure_native.offazurespringboot.Springbootsite("springbootsiteResource", {
resourceGroupName: "string",
extendedLocation: {
name: "string",
type: "string",
},
location: "string",
properties: {
masterSiteId: "string",
migrateProjectId: "string",
provisioningState: "string",
},
springbootsitesName: "string",
tags: {
string: "string",
},
});
type: azure-native:offazurespringboot:Springbootsite
properties:
extendedLocation:
name: string
type: string
location: string
properties:
masterSiteId: string
migrateProjectId: string
provisioningState: string
resourceGroupName: string
springbootsitesName: string
tags:
string: string
Springbootsite Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Springbootsite resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Extended
Location Pulumi.Azure Native. Off Azure Spring Boot. Inputs. Springbootsites Model Extended Location - The extended location definition.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Off Azure Spring Boot. Inputs. Springbootsites Properties - The springbootsites resource definition.
- Springbootsites
Name string - The springbootsites name.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Extended
Location SpringbootsitesModel Extended Location Args - The extended location definition.
- Location string
- The geo-location where the resource lives
- Properties
Springbootsites
Properties Args - The springbootsites resource definition.
- Springbootsites
Name string - The springbootsites name.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- extended
Location SpringbootsitesModel Extended Location - The extended location definition.
- location String
- The geo-location where the resource lives
- properties
Springbootsites
Properties - The springbootsites resource definition.
- springbootsites
Name String - The springbootsites name.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- extended
Location SpringbootsitesModel Extended Location - The extended location definition.
- location string
- The geo-location where the resource lives
- properties
Springbootsites
Properties - The springbootsites resource definition.
- springbootsites
Name string - The springbootsites name.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- extended_
location SpringbootsitesModel Extended Location Args - The extended location definition.
- location str
- The geo-location where the resource lives
- properties
Springbootsites
Properties Args - The springbootsites resource definition.
- springbootsites_
name str - The springbootsites name.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- extended
Location Property Map - The extended location definition.
- location String
- The geo-location where the resource lives
- properties Property Map
- The springbootsites resource definition.
- springbootsites
Name String - The springbootsites name.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Springbootsite resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data 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
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the 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"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the 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"
- 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
- 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
ProvisioningState, ProvisioningStateArgs
- Unknown
- Unknown
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Accepted
- Accepted
- Provisioning
- Provisioning
- Deleting
- Deleting
- Provisioning
State Unknown - Unknown
- Provisioning
State Succeeded - Succeeded
- Provisioning
State Failed - Failed
- Provisioning
State Canceled - Canceled
- Provisioning
State Accepted - Accepted
- Provisioning
State Provisioning - Provisioning
- Provisioning
State 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
SpringbootsitesModelExtendedLocation, SpringbootsitesModelExtendedLocationArgs
SpringbootsitesModelResponseExtendedLocation, SpringbootsitesModelResponseExtendedLocationArgs
SpringbootsitesProperties, SpringbootsitesPropertiesArgs
- Master
Site stringId - The master site ID from Azure Migrate.
- Migrate
Project stringId - The migrate project ID from Azure Migrate.
- Provisioning
State string | Pulumi.Azure Native. Off Azure Spring Boot. Provisioning State - The resource provisioning state.
- Master
Site stringId - The master site ID from Azure Migrate.
- Migrate
Project stringId - The migrate project ID from Azure Migrate.
- Provisioning
State string | ProvisioningState - The resource provisioning state.
- master
Site StringId - The master site ID from Azure Migrate.
- migrate
Project StringId - The migrate project ID from Azure Migrate.
- provisioning
State String | ProvisioningState - The resource provisioning state.
- master
Site stringId - The master site ID from Azure Migrate.
- migrate
Project stringId - The migrate project ID from Azure Migrate.
- provisioning
State string | ProvisioningState - The resource provisioning state.
- master_
site_ strid - The master site ID from Azure Migrate.
- migrate_
project_ strid - The migrate project ID from Azure Migrate.
- provisioning_
state str | ProvisioningState - The resource provisioning state.
- master
Site StringId - The master site ID from Azure Migrate.
- migrate
Project StringId - The migrate project ID from Azure Migrate.
- provisioning
State String | "Unknown" | "Succeeded" | "Failed" | "Canceled" | "Accepted" | "Provisioning" | "Deleting" - The resource provisioning state.
SpringbootsitesPropertiesResponse, SpringbootsitesPropertiesResponseArgs
- Master
Site stringId - The master site ID from Azure Migrate.
- Migrate
Project stringId - The migrate project ID from Azure Migrate.
- Provisioning
State string - The resource provisioning state.
- Master
Site stringId - The master site ID from Azure Migrate.
- Migrate
Project stringId - The migrate project ID from Azure Migrate.
- Provisioning
State string - The resource provisioning state.
- master
Site StringId - The master site ID from Azure Migrate.
- migrate
Project StringId - The migrate project ID from Azure Migrate.
- provisioning
State String - The resource provisioning state.
- master
Site stringId - The master site ID from Azure Migrate.
- migrate
Project stringId - The migrate project ID from Azure Migrate.
- provisioning
State string - The resource provisioning state.
- master_
site_ strid - The master site ID from Azure Migrate.
- migrate_
project_ strid - The migrate project ID from Azure Migrate.
- provisioning_
state str - The resource provisioning state.
- master
Site StringId - The master site ID from Azure Migrate.
- migrate
Project StringId - The migrate project ID from Azure Migrate.
- provisioning
State String - The resource provisioning state.
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:offazurespringboot:Springbootsite jjyngfg /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OffAzureSpringBoot/springbootsites/{springbootsitesName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0