azure-native.orbital.Spacecraft
Explore with Pulumi AI
Customer creates a spacecraft resource to schedule a contact. Azure REST API version: 2022-11-01.
Other available API versions: 2022-03-01.
Example Usage
Create a spacecraft
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var spacecraft = new AzureNative.Orbital.Spacecraft("spacecraft", new()
{
Links = new[]
{
new AzureNative.Orbital.Inputs.SpacecraftLinkArgs
{
BandwidthMHz = 2,
CenterFrequencyMHz = 2250,
Direction = AzureNative.Orbital.Direction.Uplink,
Name = "uplink_lhcp1",
Polarization = AzureNative.Orbital.Polarization.LHCP,
},
new AzureNative.Orbital.Inputs.SpacecraftLinkArgs
{
BandwidthMHz = 15,
CenterFrequencyMHz = 8160,
Direction = AzureNative.Orbital.Direction.Downlink,
Name = "downlink_rhcp1",
Polarization = AzureNative.Orbital.Polarization.RHCP,
},
},
Location = "eastus2",
NoradId = "36411",
ResourceGroupName = "contoso-Rgp",
SpacecraftName = "CONTOSO_SAT",
TitleLine = "CONTOSO_SAT",
TleLine1 = "1 27424U 02022A 22167.05119303 .00000638 00000+0 15103-3 0 9994",
TleLine2 = "2 27424 98.2477 108.9546 0000928 92.9194 327.0802 14.57300770 69982",
});
});
package main
import (
orbital "github.com/pulumi/pulumi-azure-native-sdk/orbital/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := orbital.NewSpacecraft(ctx, "spacecraft", &orbital.SpacecraftArgs{
Links: orbital.SpacecraftLinkArray{
&orbital.SpacecraftLinkArgs{
BandwidthMHz: pulumi.Float64(2),
CenterFrequencyMHz: pulumi.Float64(2250),
Direction: pulumi.String(orbital.DirectionUplink),
Name: pulumi.String("uplink_lhcp1"),
Polarization: pulumi.String(orbital.PolarizationLHCP),
},
&orbital.SpacecraftLinkArgs{
BandwidthMHz: pulumi.Float64(15),
CenterFrequencyMHz: pulumi.Float64(8160),
Direction: pulumi.String(orbital.DirectionDownlink),
Name: pulumi.String("downlink_rhcp1"),
Polarization: pulumi.String(orbital.PolarizationRHCP),
},
},
Location: pulumi.String("eastus2"),
NoradId: pulumi.String("36411"),
ResourceGroupName: pulumi.String("contoso-Rgp"),
SpacecraftName: pulumi.String("CONTOSO_SAT"),
TitleLine: pulumi.String("CONTOSO_SAT"),
TleLine1: pulumi.String("1 27424U 02022A 22167.05119303 .00000638 00000+0 15103-3 0 9994"),
TleLine2: pulumi.String("2 27424 98.2477 108.9546 0000928 92.9194 327.0802 14.57300770 69982"),
})
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.orbital.Spacecraft;
import com.pulumi.azurenative.orbital.SpacecraftArgs;
import com.pulumi.azurenative.orbital.inputs.SpacecraftLinkArgs;
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 spacecraft = new Spacecraft("spacecraft", SpacecraftArgs.builder()
.links(
SpacecraftLinkArgs.builder()
.bandwidthMHz(2)
.centerFrequencyMHz(2250)
.direction("Uplink")
.name("uplink_lhcp1")
.polarization("LHCP")
.build(),
SpacecraftLinkArgs.builder()
.bandwidthMHz(15)
.centerFrequencyMHz(8160)
.direction("Downlink")
.name("downlink_rhcp1")
.polarization("RHCP")
.build())
.location("eastus2")
.noradId("36411")
.resourceGroupName("contoso-Rgp")
.spacecraftName("CONTOSO_SAT")
.titleLine("CONTOSO_SAT")
.tleLine1("1 27424U 02022A 22167.05119303 .00000638 00000+0 15103-3 0 9994")
.tleLine2("2 27424 98.2477 108.9546 0000928 92.9194 327.0802 14.57300770 69982")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
spacecraft = azure_native.orbital.Spacecraft("spacecraft",
links=[
{
"bandwidth_m_hz": 2,
"center_frequency_m_hz": 2250,
"direction": azure_native.orbital.Direction.UPLINK,
"name": "uplink_lhcp1",
"polarization": azure_native.orbital.Polarization.LHCP,
},
{
"bandwidth_m_hz": 15,
"center_frequency_m_hz": 8160,
"direction": azure_native.orbital.Direction.DOWNLINK,
"name": "downlink_rhcp1",
"polarization": azure_native.orbital.Polarization.RHCP,
},
],
location="eastus2",
norad_id="36411",
resource_group_name="contoso-Rgp",
spacecraft_name="CONTOSO_SAT",
title_line="CONTOSO_SAT",
tle_line1="1 27424U 02022A 22167.05119303 .00000638 00000+0 15103-3 0 9994",
tle_line2="2 27424 98.2477 108.9546 0000928 92.9194 327.0802 14.57300770 69982")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const spacecraft = new azure_native.orbital.Spacecraft("spacecraft", {
links: [
{
bandwidthMHz: 2,
centerFrequencyMHz: 2250,
direction: azure_native.orbital.Direction.Uplink,
name: "uplink_lhcp1",
polarization: azure_native.orbital.Polarization.LHCP,
},
{
bandwidthMHz: 15,
centerFrequencyMHz: 8160,
direction: azure_native.orbital.Direction.Downlink,
name: "downlink_rhcp1",
polarization: azure_native.orbital.Polarization.RHCP,
},
],
location: "eastus2",
noradId: "36411",
resourceGroupName: "contoso-Rgp",
spacecraftName: "CONTOSO_SAT",
titleLine: "CONTOSO_SAT",
tleLine1: "1 27424U 02022A 22167.05119303 .00000638 00000+0 15103-3 0 9994",
tleLine2: "2 27424 98.2477 108.9546 0000928 92.9194 327.0802 14.57300770 69982",
});
resources:
spacecraft:
type: azure-native:orbital:Spacecraft
properties:
links:
- bandwidthMHz: 2
centerFrequencyMHz: 2250
direction: Uplink
name: uplink_lhcp1
polarization: LHCP
- bandwidthMHz: 15
centerFrequencyMHz: 8160
direction: Downlink
name: downlink_rhcp1
polarization: RHCP
location: eastus2
noradId: '36411'
resourceGroupName: contoso-Rgp
spacecraftName: CONTOSO_SAT
titleLine: CONTOSO_SAT
tleLine1: 1 27424U 02022A 22167.05119303 .00000638 00000+0 15103-3 0 9994
tleLine2: 2 27424 98.2477 108.9546 0000928 92.9194 327.0802 14.57300770 69982
Create Spacecraft Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Spacecraft(name: string, args: SpacecraftArgs, opts?: CustomResourceOptions);
@overload
def Spacecraft(resource_name: str,
args: SpacecraftArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Spacecraft(resource_name: str,
opts: Optional[ResourceOptions] = None,
links: Optional[Sequence[SpacecraftLinkArgs]] = None,
resource_group_name: Optional[str] = None,
title_line: Optional[str] = None,
tle_line1: Optional[str] = None,
tle_line2: Optional[str] = None,
location: Optional[str] = None,
norad_id: Optional[str] = None,
spacecraft_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewSpacecraft(ctx *Context, name string, args SpacecraftArgs, opts ...ResourceOption) (*Spacecraft, error)
public Spacecraft(string name, SpacecraftArgs args, CustomResourceOptions? opts = null)
public Spacecraft(String name, SpacecraftArgs args)
public Spacecraft(String name, SpacecraftArgs args, CustomResourceOptions options)
type: azure-native:orbital:Spacecraft
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 SpacecraftArgs
- 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 SpacecraftArgs
- 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 SpacecraftArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SpacecraftArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SpacecraftArgs
- 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 spacecraftResource = new AzureNative.Orbital.Spacecraft("spacecraftResource", new()
{
Links = new[]
{
new AzureNative.Orbital.Inputs.SpacecraftLinkArgs
{
BandwidthMHz = 0,
CenterFrequencyMHz = 0,
Direction = "string",
Name = "string",
Polarization = "string",
},
},
ResourceGroupName = "string",
TitleLine = "string",
TleLine1 = "string",
TleLine2 = "string",
Location = "string",
NoradId = "string",
SpacecraftName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := orbital.NewSpacecraft(ctx, "spacecraftResource", &orbital.SpacecraftArgs{
Links: orbital.SpacecraftLinkArray{
&orbital.SpacecraftLinkArgs{
BandwidthMHz: pulumi.Float64(0),
CenterFrequencyMHz: pulumi.Float64(0),
Direction: pulumi.String("string"),
Name: pulumi.String("string"),
Polarization: pulumi.String("string"),
},
},
ResourceGroupName: pulumi.String("string"),
TitleLine: pulumi.String("string"),
TleLine1: pulumi.String("string"),
TleLine2: pulumi.String("string"),
Location: pulumi.String("string"),
NoradId: pulumi.String("string"),
SpacecraftName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var spacecraftResource = new Spacecraft("spacecraftResource", SpacecraftArgs.builder()
.links(SpacecraftLinkArgs.builder()
.bandwidthMHz(0)
.centerFrequencyMHz(0)
.direction("string")
.name("string")
.polarization("string")
.build())
.resourceGroupName("string")
.titleLine("string")
.tleLine1("string")
.tleLine2("string")
.location("string")
.noradId("string")
.spacecraftName("string")
.tags(Map.of("string", "string"))
.build());
spacecraft_resource = azure_native.orbital.Spacecraft("spacecraftResource",
links=[{
"bandwidthMHz": 0,
"centerFrequencyMHz": 0,
"direction": "string",
"name": "string",
"polarization": "string",
}],
resource_group_name="string",
title_line="string",
tle_line1="string",
tle_line2="string",
location="string",
norad_id="string",
spacecraft_name="string",
tags={
"string": "string",
})
const spacecraftResource = new azure_native.orbital.Spacecraft("spacecraftResource", {
links: [{
bandwidthMHz: 0,
centerFrequencyMHz: 0,
direction: "string",
name: "string",
polarization: "string",
}],
resourceGroupName: "string",
titleLine: "string",
tleLine1: "string",
tleLine2: "string",
location: "string",
noradId: "string",
spacecraftName: "string",
tags: {
string: "string",
},
});
type: azure-native:orbital:Spacecraft
properties:
links:
- bandwidthMHz: 0
centerFrequencyMHz: 0
direction: string
name: string
polarization: string
location: string
noradId: string
resourceGroupName: string
spacecraftName: string
tags:
string: string
titleLine: string
tleLine1: string
tleLine2: string
Spacecraft 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 Spacecraft resource accepts the following input properties:
- Links
List<Pulumi.
Azure Native. Orbital. Inputs. Spacecraft Link> - Immutable list of Spacecraft links.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Title
Line string - Title line of the two-line element set (TLE).
- Tle
Line1 string - Line 1 of the two-line element set (TLE).
- Tle
Line2 string - Line 2 of the two-line element set (TLE).
- Location string
- The geo-location where the resource lives
- Norad
Id string - NORAD ID of the spacecraft.
- Spacecraft
Name string - Spacecraft ID.
- Dictionary<string, string>
- Resource tags.
- Links
[]Spacecraft
Link Args - Immutable list of Spacecraft links.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Title
Line string - Title line of the two-line element set (TLE).
- Tle
Line1 string - Line 1 of the two-line element set (TLE).
- Tle
Line2 string - Line 2 of the two-line element set (TLE).
- Location string
- The geo-location where the resource lives
- Norad
Id string - NORAD ID of the spacecraft.
- Spacecraft
Name string - Spacecraft ID.
- map[string]string
- Resource tags.
- links
List<Spacecraft
Link> - Immutable list of Spacecraft links.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- title
Line String - Title line of the two-line element set (TLE).
- tle
Line1 String - Line 1 of the two-line element set (TLE).
- tle
Line2 String - Line 2 of the two-line element set (TLE).
- location String
- The geo-location where the resource lives
- norad
Id String - NORAD ID of the spacecraft.
- spacecraft
Name String - Spacecraft ID.
- Map<String,String>
- Resource tags.
- links
Spacecraft
Link[] - Immutable list of Spacecraft links.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- title
Line string - Title line of the two-line element set (TLE).
- tle
Line1 string - Line 1 of the two-line element set (TLE).
- tle
Line2 string - Line 2 of the two-line element set (TLE).
- location string
- The geo-location where the resource lives
- norad
Id string - NORAD ID of the spacecraft.
- spacecraft
Name string - Spacecraft ID.
- {[key: string]: string}
- Resource tags.
- links
Sequence[Spacecraft
Link Args] - Immutable list of Spacecraft links.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- title_
line str - Title line of the two-line element set (TLE).
- tle_
line1 str - Line 1 of the two-line element set (TLE).
- tle_
line2 str - Line 2 of the two-line element set (TLE).
- location str
- The geo-location where the resource lives
- norad_
id str - NORAD ID of the spacecraft.
- spacecraft_
name str - Spacecraft ID.
- Mapping[str, str]
- Resource tags.
- links List<Property Map>
- Immutable list of Spacecraft links.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- title
Line String - Title line of the two-line element set (TLE).
- tle
Line1 String - Line 1 of the two-line element set (TLE).
- tle
Line2 String - Line 2 of the two-line element set (TLE).
- location String
- The geo-location where the resource lives
- norad
Id String - NORAD ID of the spacecraft.
- spacecraft
Name String - Spacecraft ID.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Spacecraft 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. Orbital. 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
AuthorizedGroundstationResponse, AuthorizedGroundstationResponseArgs
- Expiration
Date string - Date of authorization expiration.
- Ground
Station string - Groundstation name.
- Expiration
Date string - Date of authorization expiration.
- Ground
Station string - Groundstation name.
- expiration
Date String - Date of authorization expiration.
- ground
Station String - Groundstation name.
- expiration
Date string - Date of authorization expiration.
- ground
Station string - Groundstation name.
- expiration_
date str - Date of authorization expiration.
- ground_
station str - Groundstation name.
- expiration
Date String - Date of authorization expiration.
- ground
Station String - Groundstation name.
Direction, DirectionArgs
- Uplink
- Uplink
- Downlink
- Downlink
- Direction
Uplink - Uplink
- Direction
Downlink - Downlink
- Uplink
- Uplink
- Downlink
- Downlink
- Uplink
- Uplink
- Downlink
- Downlink
- UPLINK
- Uplink
- DOWNLINK
- Downlink
- "Uplink"
- Uplink
- "Downlink"
- Downlink
Polarization, PolarizationArgs
- RHCP
- RHCP
- LHCP
- LHCP
- Linear
Vertical - linearVertical
- Linear
Horizontal - linearHorizontal
- Polarization
RHCP - RHCP
- Polarization
LHCP - LHCP
- Polarization
Linear Vertical - linearVertical
- Polarization
Linear Horizontal - linearHorizontal
- RHCP
- RHCP
- LHCP
- LHCP
- Linear
Vertical - linearVertical
- Linear
Horizontal - linearHorizontal
- RHCP
- RHCP
- LHCP
- LHCP
- Linear
Vertical - linearVertical
- Linear
Horizontal - linearHorizontal
- RHCP
- RHCP
- LHCP
- LHCP
- LINEAR_VERTICAL
- linearVertical
- LINEAR_HORIZONTAL
- linearHorizontal
- "RHCP"
- RHCP
- "LHCP"
- LHCP
- "linear
Vertical" - linearVertical
- "linear
Horizontal" - linearHorizontal
SpacecraftLink, SpacecraftLinkArgs
- Bandwidth
MHz double - Bandwidth in MHz.
- Center
Frequency doubleMHz - Center Frequency in MHz.
- Direction
string | Pulumi.
Azure Native. Orbital. Direction - Direction (Uplink or Downlink).
- Name string
- Link name.
- Polarization
string | Pulumi.
Azure Native. Orbital. Polarization - Polarization. e.g. (RHCP, LHCP).
- Bandwidth
MHz float64 - Bandwidth in MHz.
- Center
Frequency float64MHz - Center Frequency in MHz.
- Direction string | Direction
- Direction (Uplink or Downlink).
- Name string
- Link name.
- Polarization string | Polarization
- Polarization. e.g. (RHCP, LHCP).
- bandwidth
MHz Double - Bandwidth in MHz.
- center
Frequency DoubleMHz - Center Frequency in MHz.
- direction String | Direction
- Direction (Uplink or Downlink).
- name String
- Link name.
- polarization String | Polarization
- Polarization. e.g. (RHCP, LHCP).
- bandwidth
MHz number - Bandwidth in MHz.
- center
Frequency numberMHz - Center Frequency in MHz.
- direction string | Direction
- Direction (Uplink or Downlink).
- name string
- Link name.
- polarization string | Polarization
- Polarization. e.g. (RHCP, LHCP).
- bandwidth_
m_ floathz - Bandwidth in MHz.
- center_
frequency_ floatm_ hz - Center Frequency in MHz.
- direction str | Direction
- Direction (Uplink or Downlink).
- name str
- Link name.
- polarization str | Polarization
- Polarization. e.g. (RHCP, LHCP).
- bandwidth
MHz Number - Bandwidth in MHz.
- center
Frequency NumberMHz - Center Frequency in MHz.
- direction String | "Uplink" | "Downlink"
- Direction (Uplink or Downlink).
- name String
- Link name.
- polarization
String | "RHCP" | "LHCP" | "linear
Vertical" | "linear Horizontal" - Polarization. e.g. (RHCP, LHCP).
SpacecraftLinkResponse, SpacecraftLinkResponseArgs
- List<Pulumi.
Azure Native. Orbital. Inputs. Authorized Groundstation Response> - Authorized Ground Stations
- Bandwidth
MHz double - Bandwidth in MHz.
- Center
Frequency doubleMHz - Center Frequency in MHz.
- Direction string
- Direction (Uplink or Downlink).
- Name string
- Link name.
- Polarization string
- Polarization. e.g. (RHCP, LHCP).
- []Authorized
Groundstation Response - Authorized Ground Stations
- Bandwidth
MHz float64 - Bandwidth in MHz.
- Center
Frequency float64MHz - Center Frequency in MHz.
- Direction string
- Direction (Uplink or Downlink).
- Name string
- Link name.
- Polarization string
- Polarization. e.g. (RHCP, LHCP).
- List<Authorized
Groundstation Response> - Authorized Ground Stations
- bandwidth
MHz Double - Bandwidth in MHz.
- center
Frequency DoubleMHz - Center Frequency in MHz.
- direction String
- Direction (Uplink or Downlink).
- name String
- Link name.
- polarization String
- Polarization. e.g. (RHCP, LHCP).
- Authorized
Groundstation Response[] - Authorized Ground Stations
- bandwidth
MHz number - Bandwidth in MHz.
- center
Frequency numberMHz - Center Frequency in MHz.
- direction string
- Direction (Uplink or Downlink).
- name string
- Link name.
- polarization string
- Polarization. e.g. (RHCP, LHCP).
- Sequence[Authorized
Groundstation Response] - Authorized Ground Stations
- bandwidth_
m_ floathz - Bandwidth in MHz.
- center_
frequency_ floatm_ hz - Center Frequency in MHz.
- direction str
- Direction (Uplink or Downlink).
- name str
- Link name.
- polarization str
- Polarization. e.g. (RHCP, LHCP).
- List<Property Map>
- Authorized Ground Stations
- bandwidth
MHz Number - Bandwidth in MHz.
- center
Frequency NumberMHz - Center Frequency in MHz.
- direction String
- Direction (Uplink or Downlink).
- name String
- Link name.
- polarization String
- Polarization. e.g. (RHCP, LHCP).
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:orbital:Spacecraft CONTOSO_SAT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Orbital/spacecrafts/{spacecraftName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0