We recommend using Azure Native.
Azure Classic v5.81.0 published on Monday, Jun 24, 2024 by Pulumi
azure.arcmachine.get
Explore with Pulumi AI
Use this data source to access information about an existing Azure Arc machine.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.arcmachine.get({
name: "existing-hcmachine",
resourceGroupName: "existing-rg",
});
export const id = example.then(example => example.id);
import pulumi
import pulumi_azure as azure
example = azure.arcmachine.get(name="existing-hcmachine",
resource_group_name="existing-rg")
pulumi.export("id", example.id)
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/arcmachine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := arcmachine.Get(ctx, &arcmachine.GetArgs{
Name: "existing-hcmachine",
ResourceGroupName: "existing-rg",
}, nil)
if err != nil {
return err
}
ctx.Export("id", example.Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = Azure.ArcMachine.Get.Invoke(new()
{
Name = "existing-hcmachine",
ResourceGroupName = "existing-rg",
});
return new Dictionary<string, object?>
{
["id"] = example.Apply(getResult => getResult.Id),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.arcmachine.ArcmachineFunctions;
import com.pulumi.azure.arcmachine.inputs.GetArgs;
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) {
final var example = ArcmachineFunctions.get(GetArgs.builder()
.name("existing-hcmachine")
.resourceGroupName("existing-rg")
.build());
ctx.export("id", example.applyValue(getResult -> getResult.id()));
}
}
variables:
example:
fn::invoke:
Function: azure:arcmachine:get
Arguments:
name: existing-hcmachine
resourceGroupName: existing-rg
outputs:
id: ${example.id}
Using get
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function get(args: GetArgs, opts?: InvokeOptions): Promise<GetResult>
function getOutput(args: GetOutputArgs, opts?: InvokeOptions): Output<GetResult>
def get(name: Optional[str] = None,
resource_group_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetResult
def get_output(name: Optional[pulumi.Input[str]] = None,
resource_group_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetResult]
func Get(ctx *Context, args *GetArgs, opts ...InvokeOption) (*GetResult, error)
func GetOutput(ctx *Context, args *GetOutputArgs, opts ...InvokeOption) GetResultOutput
> Note: This function is named Get
in the Go SDK.
public static class Get
{
public static Task<GetResult> InvokeAsync(GetArgs args, InvokeOptions? opts = null)
public static Output<GetResult> Invoke(GetInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetResult> get(GetArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: azure:arcmachine/get:get
arguments:
# arguments dictionary
The following arguments are supported:
- Name string
- The name of this Azure Arc machine.
- Resource
Group stringName - The name of the Resource Group where the Hybrid Compute exists.
- Name string
- The name of this Azure Arc machine.
- Resource
Group stringName - The name of the Resource Group where the Hybrid Compute exists.
- name String
- The name of this Azure Arc machine.
- resource
Group StringName - The name of the Resource Group where the Hybrid Compute exists.
- name string
- The name of this Azure Arc machine.
- resource
Group stringName - The name of the Resource Group where the Hybrid Compute exists.
- name str
- The name of this Azure Arc machine.
- resource_
group_ strname - The name of the Resource Group where the Hybrid Compute exists.
- name String
- The name of this Azure Arc machine.
- resource
Group StringName - The name of the Resource Group where the Hybrid Compute exists.
get Result
The following output properties are available:
- Active
Directory stringFqdn - Specifies the AD fully qualified display name.
- Agent
Version string - The Azure Arc machine agent full version.
- Agents
List<Get
Agent> - A
agent
block as defined below. - Client
Public stringKey - Public Key that the client provides to be used during initial resource onboarding.
- Cloud
Metadatas List<GetCloud Metadata> - A
cloud_metadata
block as defined below. - Detected
Properties Dictionary<string, string> - A
detected_properties
block as defined below. - Display
Name string - Specifies the Azure Arc machine display name.
- Dns
Fqdn string - Specifies the DNS fully qualified display name.
- Domain
Name string - Specifies the Windows domain name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Identities
List<Get
Identity> - A
identity
block as defined below. - Last
Status stringChange Time - The time of the last status change.
- Location string
- The Azure Region where the Azure Arc machine exists.
- Location
Datas List<GetLocation Data> - A
location_data
block as defined below. - Machine
Fqdn string - Specifies the Azure Arc machine fully qualified display name.
- Mssql
Discovered bool - Specifies whether any MS SQL instance is discovered on the machine.
- Name string
- A canonical name for the geographic or physical location.
- Os
Name string - The Operating System running on the Azure Arc machine.
- Os
Profiles List<GetOs Profile> - A
os_profile
block as defined below. - Os
Sku string - Specifies the Operating System product SKU.
- Os
Type string - The type of Operating System. Possible values are
windows
andlinux
. - Os
Version string - The version of Operating System running on the Azure Arc machine.
- Parent
Cluster stringResource Id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- Private
Link stringScope Resource Id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- Resource
Group stringName - Service
Statuses List<GetService Status> - A
service_status
block as defined below. - Status string
- The current status of the service.
- Dictionary<string, string>
- A mapping of tags assigned to the Hybrid Compute.
- Vm
Id string - Specifies the Azure Arc machine unique ID.
- Vm
Uuid string - Specifies the Arc Machine's unique SMBIOS ID.
- Active
Directory stringFqdn - Specifies the AD fully qualified display name.
- Agent
Version string - The Azure Arc machine agent full version.
- Agents
[]Get
Agent - A
agent
block as defined below. - Client
Public stringKey - Public Key that the client provides to be used during initial resource onboarding.
- Cloud
Metadatas []GetCloud Metadata - A
cloud_metadata
block as defined below. - Detected
Properties map[string]string - A
detected_properties
block as defined below. - Display
Name string - Specifies the Azure Arc machine display name.
- Dns
Fqdn string - Specifies the DNS fully qualified display name.
- Domain
Name string - Specifies the Windows domain name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Identities
[]Get
Identity - A
identity
block as defined below. - Last
Status stringChange Time - The time of the last status change.
- Location string
- The Azure Region where the Azure Arc machine exists.
- Location
Datas []GetLocation Data - A
location_data
block as defined below. - Machine
Fqdn string - Specifies the Azure Arc machine fully qualified display name.
- Mssql
Discovered bool - Specifies whether any MS SQL instance is discovered on the machine.
- Name string
- A canonical name for the geographic or physical location.
- Os
Name string - The Operating System running on the Azure Arc machine.
- Os
Profiles []GetOs Profile - A
os_profile
block as defined below. - Os
Sku string - Specifies the Operating System product SKU.
- Os
Type string - The type of Operating System. Possible values are
windows
andlinux
. - Os
Version string - The version of Operating System running on the Azure Arc machine.
- Parent
Cluster stringResource Id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- Private
Link stringScope Resource Id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- Resource
Group stringName - Service
Statuses []GetService Status - A
service_status
block as defined below. - Status string
- The current status of the service.
- map[string]string
- A mapping of tags assigned to the Hybrid Compute.
- Vm
Id string - Specifies the Azure Arc machine unique ID.
- Vm
Uuid string - Specifies the Arc Machine's unique SMBIOS ID.
- active
Directory StringFqdn - Specifies the AD fully qualified display name.
- agent
Version String - The Azure Arc machine agent full version.
- agents
List<Get
Agent> - A
agent
block as defined below. - client
Public StringKey - Public Key that the client provides to be used during initial resource onboarding.
- cloud
Metadatas List<GetCloud Metadata> - A
cloud_metadata
block as defined below. - detected
Properties Map<String,String> - A
detected_properties
block as defined below. - display
Name String - Specifies the Azure Arc machine display name.
- dns
Fqdn String - Specifies the DNS fully qualified display name.
- domain
Name String - Specifies the Windows domain name.
- id String
- The provider-assigned unique ID for this managed resource.
- identities
List<Get
Identity> - A
identity
block as defined below. - last
Status StringChange Time - The time of the last status change.
- location String
- The Azure Region where the Azure Arc machine exists.
- location
Datas List<GetLocation Data> - A
location_data
block as defined below. - machine
Fqdn String - Specifies the Azure Arc machine fully qualified display name.
- mssql
Discovered Boolean - Specifies whether any MS SQL instance is discovered on the machine.
- name String
- A canonical name for the geographic or physical location.
- os
Name String - The Operating System running on the Azure Arc machine.
- os
Profiles List<GetOs Profile> - A
os_profile
block as defined below. - os
Sku String - Specifies the Operating System product SKU.
- os
Type String - The type of Operating System. Possible values are
windows
andlinux
. - os
Version String - The version of Operating System running on the Azure Arc machine.
- parent
Cluster StringResource Id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- private
Link StringScope Resource Id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- resource
Group StringName - service
Statuses List<GetService Status> - A
service_status
block as defined below. - status String
- The current status of the service.
- Map<String,String>
- A mapping of tags assigned to the Hybrid Compute.
- vm
Id String - Specifies the Azure Arc machine unique ID.
- vm
Uuid String - Specifies the Arc Machine's unique SMBIOS ID.
- active
Directory stringFqdn - Specifies the AD fully qualified display name.
- agent
Version string - The Azure Arc machine agent full version.
- agents
Get
Agent[] - A
agent
block as defined below. - client
Public stringKey - Public Key that the client provides to be used during initial resource onboarding.
- cloud
Metadatas GetCloud Metadata[] - A
cloud_metadata
block as defined below. - detected
Properties {[key: string]: string} - A
detected_properties
block as defined below. - display
Name string - Specifies the Azure Arc machine display name.
- dns
Fqdn string - Specifies the DNS fully qualified display name.
- domain
Name string - Specifies the Windows domain name.
- id string
- The provider-assigned unique ID for this managed resource.
- identities
Get
Identity[] - A
identity
block as defined below. - last
Status stringChange Time - The time of the last status change.
- location string
- The Azure Region where the Azure Arc machine exists.
- location
Datas GetLocation Data[] - A
location_data
block as defined below. - machine
Fqdn string - Specifies the Azure Arc machine fully qualified display name.
- mssql
Discovered boolean - Specifies whether any MS SQL instance is discovered on the machine.
- name string
- A canonical name for the geographic or physical location.
- os
Name string - The Operating System running on the Azure Arc machine.
- os
Profiles GetOs Profile[] - A
os_profile
block as defined below. - os
Sku string - Specifies the Operating System product SKU.
- os
Type string - The type of Operating System. Possible values are
windows
andlinux
. - os
Version string - The version of Operating System running on the Azure Arc machine.
- parent
Cluster stringResource Id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- private
Link stringScope Resource Id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- resource
Group stringName - service
Statuses GetService Status[] - A
service_status
block as defined below. - status string
- The current status of the service.
- {[key: string]: string}
- A mapping of tags assigned to the Hybrid Compute.
- vm
Id string - Specifies the Azure Arc machine unique ID.
- vm
Uuid string - Specifies the Arc Machine's unique SMBIOS ID.
- active_
directory_ strfqdn - Specifies the AD fully qualified display name.
- agent_
version str - The Azure Arc machine agent full version.
- agents
Sequence[Get
Agent] - A
agent
block as defined below. - client_
public_ strkey - Public Key that the client provides to be used during initial resource onboarding.
- cloud_
metadatas Sequence[GetCloud Metadata] - A
cloud_metadata
block as defined below. - detected_
properties Mapping[str, str] - A
detected_properties
block as defined below. - display_
name str - Specifies the Azure Arc machine display name.
- dns_
fqdn str - Specifies the DNS fully qualified display name.
- domain_
name str - Specifies the Windows domain name.
- id str
- The provider-assigned unique ID for this managed resource.
- identities
Sequence[Get
Identity] - A
identity
block as defined below. - last_
status_ strchange_ time - The time of the last status change.
- location str
- The Azure Region where the Azure Arc machine exists.
- location_
datas Sequence[GetLocation Data] - A
location_data
block as defined below. - machine_
fqdn str - Specifies the Azure Arc machine fully qualified display name.
- mssql_
discovered bool - Specifies whether any MS SQL instance is discovered on the machine.
- name str
- A canonical name for the geographic or physical location.
- os_
name str - The Operating System running on the Azure Arc machine.
- os_
profiles Sequence[GetOs Profile] - A
os_profile
block as defined below. - os_
sku str - Specifies the Operating System product SKU.
- os_
type str - The type of Operating System. Possible values are
windows
andlinux
. - os_
version str - The version of Operating System running on the Azure Arc machine.
- parent_
cluster_ strresource_ id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- private_
link_ strscope_ resource_ id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- resource_
group_ strname - service_
statuses Sequence[GetService Status] - A
service_status
block as defined below. - status str
- The current status of the service.
- Mapping[str, str]
- A mapping of tags assigned to the Hybrid Compute.
- vm_
id str - Specifies the Azure Arc machine unique ID.
- vm_
uuid str - Specifies the Arc Machine's unique SMBIOS ID.
- active
Directory StringFqdn - Specifies the AD fully qualified display name.
- agent
Version String - The Azure Arc machine agent full version.
- agents List<Property Map>
- A
agent
block as defined below. - client
Public StringKey - Public Key that the client provides to be used during initial resource onboarding.
- cloud
Metadatas List<Property Map> - A
cloud_metadata
block as defined below. - detected
Properties Map<String> - A
detected_properties
block as defined below. - display
Name String - Specifies the Azure Arc machine display name.
- dns
Fqdn String - Specifies the DNS fully qualified display name.
- domain
Name String - Specifies the Windows domain name.
- id String
- The provider-assigned unique ID for this managed resource.
- identities List<Property Map>
- A
identity
block as defined below. - last
Status StringChange Time - The time of the last status change.
- location String
- The Azure Region where the Azure Arc machine exists.
- location
Datas List<Property Map> - A
location_data
block as defined below. - machine
Fqdn String - Specifies the Azure Arc machine fully qualified display name.
- mssql
Discovered Boolean - Specifies whether any MS SQL instance is discovered on the machine.
- name String
- A canonical name for the geographic or physical location.
- os
Name String - The Operating System running on the Azure Arc machine.
- os
Profiles List<Property Map> - A
os_profile
block as defined below. - os
Sku String - Specifies the Operating System product SKU.
- os
Type String - The type of Operating System. Possible values are
windows
andlinux
. - os
Version String - The version of Operating System running on the Azure Arc machine.
- parent
Cluster StringResource Id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- private
Link StringScope Resource Id - The resource id of the parent cluster (Azure HCI) this machine is assigned to, if any.
- resource
Group StringName - service
Statuses List<Property Map> - A
service_status
block as defined below. - status String
- The current status of the service.
- Map<String>
- A mapping of tags assigned to the Hybrid Compute.
- vm
Id String - Specifies the Azure Arc machine unique ID.
- vm
Uuid String - Specifies the Arc Machine's unique SMBIOS ID.
Supporting Types
GetAgent
- Extensions
Allow List<GetLists Agent Extensions Allow List> - A
extensions_allow_list
block as defined below. - Extensions
Block List<GetLists Agent Extensions Block List> - A
extensions_block_list
block as defined below. - Extensions
Enabled bool - Specifies whether the extension service is enabled or disabled.
- Guest
Configuration boolEnabled - Specified whether the guest configuration service is enabled or disabled.
- Incoming
Connections List<string>Ports - Specifies the list of ports that the agent will be able to listen on.
- Proxy
Bypasses List<string> - List of service names which should not use the specified proxy server.
- Proxy
Url string - Specifies the URL of the proxy to be used.
- Extensions
Allow []GetLists Agent Extensions Allow List - A
extensions_allow_list
block as defined below. - Extensions
Block []GetLists Agent Extensions Block List - A
extensions_block_list
block as defined below. - Extensions
Enabled bool - Specifies whether the extension service is enabled or disabled.
- Guest
Configuration boolEnabled - Specified whether the guest configuration service is enabled or disabled.
- Incoming
Connections []stringPorts - Specifies the list of ports that the agent will be able to listen on.
- Proxy
Bypasses []string - List of service names which should not use the specified proxy server.
- Proxy
Url string - Specifies the URL of the proxy to be used.
- extensions
Allow List<GetLists Agent Extensions Allow List> - A
extensions_allow_list
block as defined below. - extensions
Block List<GetLists Agent Extensions Block List> - A
extensions_block_list
block as defined below. - extensions
Enabled Boolean - Specifies whether the extension service is enabled or disabled.
- guest
Configuration BooleanEnabled - Specified whether the guest configuration service is enabled or disabled.
- incoming
Connections List<String>Ports - Specifies the list of ports that the agent will be able to listen on.
- proxy
Bypasses List<String> - List of service names which should not use the specified proxy server.
- proxy
Url String - Specifies the URL of the proxy to be used.
- extensions
Allow GetLists Agent Extensions Allow List[] - A
extensions_allow_list
block as defined below. - extensions
Block GetLists Agent Extensions Block List[] - A
extensions_block_list
block as defined below. - extensions
Enabled boolean - Specifies whether the extension service is enabled or disabled.
- guest
Configuration booleanEnabled - Specified whether the guest configuration service is enabled or disabled.
- incoming
Connections string[]Ports - Specifies the list of ports that the agent will be able to listen on.
- proxy
Bypasses string[] - List of service names which should not use the specified proxy server.
- proxy
Url string - Specifies the URL of the proxy to be used.
- extensions_
allow_ Sequence[Getlists Agent Extensions Allow List] - A
extensions_allow_list
block as defined below. - extensions_
block_ Sequence[Getlists Agent Extensions Block List] - A
extensions_block_list
block as defined below. - extensions_
enabled bool - Specifies whether the extension service is enabled or disabled.
- guest_
configuration_ boolenabled - Specified whether the guest configuration service is enabled or disabled.
- incoming_
connections_ Sequence[str]ports - Specifies the list of ports that the agent will be able to listen on.
- proxy_
bypasses Sequence[str] - List of service names which should not use the specified proxy server.
- proxy_
url str - Specifies the URL of the proxy to be used.
- extensions
Allow List<Property Map>Lists - A
extensions_allow_list
block as defined below. - extensions
Block List<Property Map>Lists - A
extensions_block_list
block as defined below. - extensions
Enabled Boolean - Specifies whether the extension service is enabled or disabled.
- guest
Configuration BooleanEnabled - Specified whether the guest configuration service is enabled or disabled.
- incoming
Connections List<String>Ports - Specifies the list of ports that the agent will be able to listen on.
- proxy
Bypasses List<String> - List of service names which should not use the specified proxy server.
- proxy
Url String - Specifies the URL of the proxy to be used.
GetAgentExtensionsAllowList
GetAgentExtensionsBlockList
GetCloudMetadata
- Provider string
- Specifies the cloud provider. For example
Azure
,AWS
andGCP
.
- Provider string
- Specifies the cloud provider. For example
Azure
,AWS
andGCP
.
- provider String
- Specifies the cloud provider. For example
Azure
,AWS
andGCP
.
- provider string
- Specifies the cloud provider. For example
Azure
,AWS
andGCP
.
- provider str
- Specifies the cloud provider. For example
Azure
,AWS
andGCP
.
- provider String
- Specifies the cloud provider. For example
Azure
,AWS
andGCP
.
GetIdentity
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- principal_
id str - The principal ID of resource identity.
- tenant_
id str - The tenant ID of resource.
- type str
- The identity type.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
GetLocationData
- City string
- The city or locality where the resource is located.
- Country
Or stringRegion - The country or region where the resource is located.
- District string
- The district, state, or province where the resource is located.
- Name string
- The name of this Azure Arc machine.
- City string
- The city or locality where the resource is located.
- Country
Or stringRegion - The country or region where the resource is located.
- District string
- The district, state, or province where the resource is located.
- Name string
- The name of this Azure Arc machine.
- city String
- The city or locality where the resource is located.
- country
Or StringRegion - The country or region where the resource is located.
- district String
- The district, state, or province where the resource is located.
- name String
- The name of this Azure Arc machine.
- city string
- The city or locality where the resource is located.
- country
Or stringRegion - The country or region where the resource is located.
- district string
- The district, state, or province where the resource is located.
- name string
- The name of this Azure Arc machine.
- city str
- The city or locality where the resource is located.
- country_
or_ strregion - The country or region where the resource is located.
- district str
- The district, state, or province where the resource is located.
- name str
- The name of this Azure Arc machine.
- city String
- The city or locality where the resource is located.
- country
Or StringRegion - The country or region where the resource is located.
- district String
- The district, state, or province where the resource is located.
- name String
- The name of this Azure Arc machine.
GetOsProfile
- Computer
Name string - Specifies the host OS name of the Azure Arc machine.
- Linuxes
List<Get
Os Profile Linux> - A
linux
block as defined above. - Windows
List<Get
Os Profile Window> - A
windows
block as defined below.
- Computer
Name string - Specifies the host OS name of the Azure Arc machine.
- Linuxes
[]Get
Os Profile Linux - A
linux
block as defined above. - Windows
[]Get
Os Profile Window - A
windows
block as defined below.
- computer
Name String - Specifies the host OS name of the Azure Arc machine.
- linuxes
List<Get
Os Profile Linux> - A
linux
block as defined above. - windows
List<Get
Os Profile Window> - A
windows
block as defined below.
- computer
Name string - Specifies the host OS name of the Azure Arc machine.
- linuxes
Get
Os Profile Linux[] - A
linux
block as defined above. - windows
Get
Os Profile Window[] - A
windows
block as defined below.
- computer_
name str - Specifies the host OS name of the Azure Arc machine.
- linuxes
Sequence[Get
Os Profile Linux] - A
linux
block as defined above. - windows
Sequence[Get
Os Profile Window] - A
windows
block as defined below.
- computer
Name String - Specifies the host OS name of the Azure Arc machine.
- linuxes List<Property Map>
- A
linux
block as defined above. - windows List<Property Map>
- A
windows
block as defined below.
GetOsProfileLinux
- Patches
List<Get
Os Profile Linux Patch> - A
patch
block as defined above.
- Patches
[]Get
Os Profile Linux Patch - A
patch
block as defined above.
- patches
List<Get
Os Profile Linux Patch> - A
patch
block as defined above.
- patches
Get
Os Profile Linux Patch[] - A
patch
block as defined above.
- patches
Sequence[Get
Os Profile Linux Patch] - A
patch
block as defined above.
- patches List<Property Map>
- A
patch
block as defined above.
GetOsProfileLinuxPatch
- Assessment
Mode string - Specifies the assessment mode.
- Patch
Mode string - Specifies the patch mode.
- Assessment
Mode string - Specifies the assessment mode.
- Patch
Mode string - Specifies the patch mode.
- assessment
Mode String - Specifies the assessment mode.
- patch
Mode String - Specifies the patch mode.
- assessment
Mode string - Specifies the assessment mode.
- patch
Mode string - Specifies the patch mode.
- assessment_
mode str - Specifies the assessment mode.
- patch_
mode str - Specifies the patch mode.
- assessment
Mode String - Specifies the assessment mode.
- patch
Mode String - Specifies the patch mode.
GetOsProfileWindow
- Patches
List<Get
Os Profile Window Patch> - A
patch
block as defined above.
- Patches
[]Get
Os Profile Window Patch - A
patch
block as defined above.
- patches
List<Get
Os Profile Window Patch> - A
patch
block as defined above.
- patches
Get
Os Profile Window Patch[] - A
patch
block as defined above.
- patches
Sequence[Get
Os Profile Window Patch] - A
patch
block as defined above.
- patches List<Property Map>
- A
patch
block as defined above.
GetOsProfileWindowPatch
- Assessment
Mode string - Specifies the assessment mode.
- Patch
Mode string - Specifies the patch mode.
- Assessment
Mode string - Specifies the assessment mode.
- Patch
Mode string - Specifies the patch mode.
- assessment
Mode String - Specifies the assessment mode.
- patch
Mode String - Specifies the patch mode.
- assessment
Mode string - Specifies the assessment mode.
- patch
Mode string - Specifies the patch mode.
- assessment_
mode str - Specifies the assessment mode.
- patch_
mode str - Specifies the patch mode.
- assessment
Mode String - Specifies the assessment mode.
- patch
Mode String - Specifies the patch mode.
GetServiceStatus
- Extension
Services List<GetService Status Extension Service> - A
extension_service
block as defined above. - Guest
Configuration List<GetServices Service Status Guest Configuration Service> - A
guest_configuration_service
block as defined above.
- Extension
Services []GetService Status Extension Service - A
extension_service
block as defined above. - Guest
Configuration []GetServices Service Status Guest Configuration Service - A
guest_configuration_service
block as defined above.
- extension
Services List<GetService Status Extension Service> - A
extension_service
block as defined above. - guest
Configuration List<GetServices Service Status Guest Configuration Service> - A
guest_configuration_service
block as defined above.
- extension
Services GetService Status Extension Service[] - A
extension_service
block as defined above. - guest
Configuration GetServices Service Status Guest Configuration Service[] - A
guest_configuration_service
block as defined above.
- extension_
services Sequence[GetService Status Extension Service] - A
extension_service
block as defined above. - guest_
configuration_ Sequence[Getservices Service Status Guest Configuration Service] - A
guest_configuration_service
block as defined above.
- extension
Services List<Property Map> - A
extension_service
block as defined above. - guest
Configuration List<Property Map>Services - A
guest_configuration_service
block as defined above.
GetServiceStatusExtensionService
- Startup
Type string - The behavior of the service when the Arc-enabled machine starts up.
- Status string
- The current status of the service.
- Startup
Type string - The behavior of the service when the Arc-enabled machine starts up.
- Status string
- The current status of the service.
- startup
Type String - The behavior of the service when the Arc-enabled machine starts up.
- status String
- The current status of the service.
- startup
Type string - The behavior of the service when the Arc-enabled machine starts up.
- status string
- The current status of the service.
- startup_
type str - The behavior of the service when the Arc-enabled machine starts up.
- status str
- The current status of the service.
- startup
Type String - The behavior of the service when the Arc-enabled machine starts up.
- status String
- The current status of the service.
GetServiceStatusGuestConfigurationService
- Startup
Type string - The behavior of the service when the Arc-enabled machine starts up.
- Status string
- The current status of the service.
- Startup
Type string - The behavior of the service when the Arc-enabled machine starts up.
- Status string
- The current status of the service.
- startup
Type String - The behavior of the service when the Arc-enabled machine starts up.
- status String
- The current status of the service.
- startup
Type string - The behavior of the service when the Arc-enabled machine starts up.
- status string
- The current status of the service.
- startup_
type str - The behavior of the service when the Arc-enabled machine starts up.
- status str
- The current status of the service.
- startup
Type String - The behavior of the service when the Arc-enabled machine starts up.
- status String
- The current status of the service.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.