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 * 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",
    },
});
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",
    })
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 * 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",
});
import pulumi
import pulumi_azure_native as azure_native
springbootsite = azure_native.offazurespringboot.Springbootsite("springbootsite",
    location="tgobtvxktootwhhvjtsmpddvlqlrq",
    resource_group_name="rgspringbootsites",
    springbootsites_name="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={
        "master_site_id": "string",
        "migrate_project_id": "string",
        "provisioning_state": "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Springbootsite resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ExtendedLocation 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.
- SpringbootsitesName string
- The springbootsites name.
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ExtendedLocation SpringbootsitesModel Extended Location Args 
- The extended location definition.
- Location string
- The geo-location where the resource lives
- Properties
SpringbootsitesProperties Args 
- The springbootsites resource definition.
- SpringbootsitesName string
- The springbootsites name.
- map[string]string
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- extendedLocation SpringbootsitesModel Extended Location 
- The extended location definition.
- location String
- The geo-location where the resource lives
- properties
SpringbootsitesProperties 
- The springbootsites resource definition.
- springbootsitesName String
- The springbootsites name.
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- extendedLocation SpringbootsitesModel Extended Location 
- The extended location definition.
- location string
- The geo-location where the resource lives
- properties
SpringbootsitesProperties 
- The springbootsites resource definition.
- springbootsitesName 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
SpringbootsitesProperties Args 
- The springbootsites resource definition.
- springbootsites_name str
- The springbootsites name.
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- extendedLocation Property Map
- The extended location definition.
- location String
- The geo-location where the resource lives
- properties Property Map
- The springbootsites resource definition.
- springbootsitesName 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
- 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
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
SpringbootsitesModelExtendedLocation, SpringbootsitesModelExtendedLocationArgs        
SpringbootsitesModelResponseExtendedLocation, SpringbootsitesModelResponseExtendedLocationArgs          
SpringbootsitesProperties, SpringbootsitesPropertiesArgs    
- MasterSite stringId 
- The master site ID from Azure Migrate.
- MigrateProject stringId 
- The migrate project ID from Azure Migrate.
- ProvisioningState string | Pulumi.Azure Native. Off Azure Spring Boot. Provisioning State 
- The resource provisioning state.
- MasterSite stringId 
- The master site ID from Azure Migrate.
- MigrateProject stringId 
- The migrate project ID from Azure Migrate.
- ProvisioningState string | ProvisioningState 
- The resource provisioning state.
- masterSite StringId 
- The master site ID from Azure Migrate.
- migrateProject StringId 
- The migrate project ID from Azure Migrate.
- provisioningState String | ProvisioningState 
- The resource provisioning state.
- masterSite stringId 
- The master site ID from Azure Migrate.
- migrateProject stringId 
- The migrate project ID from Azure Migrate.
- provisioningState 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.
- masterSite StringId 
- The master site ID from Azure Migrate.
- migrateProject StringId 
- The migrate project ID from Azure Migrate.
- provisioningState String | "Unknown" | "Succeeded" | "Failed" | "Canceled" | "Accepted" | "Provisioning" | "Deleting"
- The resource provisioning state.
SpringbootsitesPropertiesResponse, SpringbootsitesPropertiesResponseArgs      
- MasterSite stringId 
- The master site ID from Azure Migrate.
- MigrateProject stringId 
- The migrate project ID from Azure Migrate.
- ProvisioningState string
- The resource provisioning state.
- MasterSite stringId 
- The master site ID from Azure Migrate.
- MigrateProject stringId 
- The migrate project ID from Azure Migrate.
- ProvisioningState string
- The resource provisioning state.
- masterSite StringId 
- The master site ID from Azure Migrate.
- migrateProject StringId 
- The migrate project ID from Azure Migrate.
- provisioningState String
- The resource provisioning state.
- masterSite stringId 
- The master site ID from Azure Migrate.
- migrateProject stringId 
- The migrate project ID from Azure Migrate.
- provisioningState 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.
- masterSite StringId 
- The master site ID from Azure Migrate.
- migrateProject StringId 
- The migrate project ID from Azure Migrate.
- provisioningState String
- The resource provisioning state.
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: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