azure-native.hybridconnectivity.ServiceConfiguration
Explore with Pulumi AI
The service configuration details associated with the target resource. Azure REST API version: 2023-03-15.
Other available API versions: 2024-12-01.
Example Usage
ServiceConfigurationsPutSSH
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var serviceConfiguration = new AzureNative.HybridConnectivity.ServiceConfiguration("serviceConfiguration", new()
    {
        EndpointName = "default",
        Port = 22,
        ResourceUri = "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default",
        ServiceConfigurationName = "SSH",
        ServiceName = AzureNative.HybridConnectivity.ServiceName.SSH,
    });
});
package main
import (
	hybridconnectivity "github.com/pulumi/pulumi-azure-native-sdk/hybridconnectivity/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := hybridconnectivity.NewServiceConfiguration(ctx, "serviceConfiguration", &hybridconnectivity.ServiceConfigurationArgs{
			EndpointName:             pulumi.String("default"),
			Port:                     pulumi.Float64(22),
			ResourceUri:              pulumi.String("subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default"),
			ServiceConfigurationName: pulumi.String("SSH"),
			ServiceName:              pulumi.String(hybridconnectivity.ServiceNameSSH),
		})
		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.hybridconnectivity.ServiceConfiguration;
import com.pulumi.azurenative.hybridconnectivity.ServiceConfigurationArgs;
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 serviceConfiguration = new ServiceConfiguration("serviceConfiguration", ServiceConfigurationArgs.builder()
            .endpointName("default")
            .port(22)
            .resourceUri("subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default")
            .serviceConfigurationName("SSH")
            .serviceName("SSH")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const serviceConfiguration = new azure_native.hybridconnectivity.ServiceConfiguration("serviceConfiguration", {
    endpointName: "default",
    port: 22,
    resourceUri: "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default",
    serviceConfigurationName: "SSH",
    serviceName: azure_native.hybridconnectivity.ServiceName.SSH,
});
import pulumi
import pulumi_azure_native as azure_native
service_configuration = azure_native.hybridconnectivity.ServiceConfiguration("serviceConfiguration",
    endpoint_name="default",
    port=22,
    resource_uri="subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default",
    service_configuration_name="SSH",
    service_name=azure_native.hybridconnectivity.ServiceName.SSH)
resources:
  serviceConfiguration:
    type: azure-native:hybridconnectivity:ServiceConfiguration
    properties:
      endpointName: default
      port: 22
      resourceUri: subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default
      serviceConfigurationName: SSH
      serviceName: SSH
ServiceConfigurationsPutWAC
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var serviceConfiguration = new AzureNative.HybridConnectivity.ServiceConfiguration("serviceConfiguration", new()
    {
        EndpointName = "default",
        Port = 6516,
        ResourceUri = "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default",
        ServiceConfigurationName = "WAC",
        ServiceName = AzureNative.HybridConnectivity.ServiceName.WAC,
    });
});
package main
import (
	hybridconnectivity "github.com/pulumi/pulumi-azure-native-sdk/hybridconnectivity/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := hybridconnectivity.NewServiceConfiguration(ctx, "serviceConfiguration", &hybridconnectivity.ServiceConfigurationArgs{
			EndpointName:             pulumi.String("default"),
			Port:                     pulumi.Float64(6516),
			ResourceUri:              pulumi.String("subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default"),
			ServiceConfigurationName: pulumi.String("WAC"),
			ServiceName:              pulumi.String(hybridconnectivity.ServiceNameWAC),
		})
		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.hybridconnectivity.ServiceConfiguration;
import com.pulumi.azurenative.hybridconnectivity.ServiceConfigurationArgs;
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 serviceConfiguration = new ServiceConfiguration("serviceConfiguration", ServiceConfigurationArgs.builder()
            .endpointName("default")
            .port(6516)
            .resourceUri("subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default")
            .serviceConfigurationName("WAC")
            .serviceName("WAC")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const serviceConfiguration = new azure_native.hybridconnectivity.ServiceConfiguration("serviceConfiguration", {
    endpointName: "default",
    port: 6516,
    resourceUri: "subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default",
    serviceConfigurationName: "WAC",
    serviceName: azure_native.hybridconnectivity.ServiceName.WAC,
});
import pulumi
import pulumi_azure_native as azure_native
service_configuration = azure_native.hybridconnectivity.ServiceConfiguration("serviceConfiguration",
    endpoint_name="default",
    port=6516,
    resource_uri="subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default",
    service_configuration_name="WAC",
    service_name=azure_native.hybridconnectivity.ServiceName.WAC)
resources:
  serviceConfiguration:
    type: azure-native:hybridconnectivity:ServiceConfiguration
    properties:
      endpointName: default
      port: 6516
      resourceUri: subscriptions/f5bcc1d9-23af-4ae9-aca1-041d0f593a63/resourceGroups/hybridRG/providers/Microsoft.HybridCompute/machines/testMachine/providers/Microsoft.HybridConnectivity/endpoints/default
      serviceConfigurationName: WAC
      serviceName: WAC
Create ServiceConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceConfiguration(name: string, args: ServiceConfigurationArgs, opts?: CustomResourceOptions);@overload
def ServiceConfiguration(resource_name: str,
                         args: ServiceConfigurationArgs,
                         opts: Optional[ResourceOptions] = None)
@overload
def ServiceConfiguration(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         endpoint_name: Optional[str] = None,
                         resource_uri: Optional[str] = None,
                         service_name: Optional[Union[str, ServiceName]] = None,
                         created_at: Optional[str] = None,
                         created_by: Optional[str] = None,
                         created_by_type: Optional[Union[str, CreatedByType]] = None,
                         last_modified_at: Optional[str] = None,
                         last_modified_by: Optional[str] = None,
                         last_modified_by_type: Optional[Union[str, CreatedByType]] = None,
                         port: Optional[float] = None,
                         resource_id: Optional[str] = None,
                         service_configuration_name: Optional[str] = None)func NewServiceConfiguration(ctx *Context, name string, args ServiceConfigurationArgs, opts ...ResourceOption) (*ServiceConfiguration, error)public ServiceConfiguration(string name, ServiceConfigurationArgs args, CustomResourceOptions? opts = null)
public ServiceConfiguration(String name, ServiceConfigurationArgs args)
public ServiceConfiguration(String name, ServiceConfigurationArgs args, CustomResourceOptions options)
type: azure-native:hybridconnectivity:ServiceConfiguration
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 ServiceConfigurationArgs
- 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 ServiceConfigurationArgs
- 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 ServiceConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceConfigurationArgs
- 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 serviceConfigurationResource = new AzureNative.HybridConnectivity.ServiceConfiguration("serviceConfigurationResource", new()
{
    EndpointName = "string",
    ResourceUri = "string",
    ServiceName = "string",
    CreatedAt = "string",
    CreatedBy = "string",
    CreatedByType = "string",
    LastModifiedAt = "string",
    LastModifiedBy = "string",
    LastModifiedByType = "string",
    Port = 0,
    ResourceId = "string",
    ServiceConfigurationName = "string",
});
example, err := hybridconnectivity.NewServiceConfiguration(ctx, "serviceConfigurationResource", &hybridconnectivity.ServiceConfigurationArgs{
	EndpointName:             pulumi.String("string"),
	ResourceUri:              pulumi.String("string"),
	ServiceName:              pulumi.String("string"),
	CreatedAt:                pulumi.String("string"),
	CreatedBy:                pulumi.String("string"),
	CreatedByType:            pulumi.String("string"),
	LastModifiedAt:           pulumi.String("string"),
	LastModifiedBy:           pulumi.String("string"),
	LastModifiedByType:       pulumi.String("string"),
	Port:                     pulumi.Float64(0),
	ResourceId:               pulumi.String("string"),
	ServiceConfigurationName: pulumi.String("string"),
})
var serviceConfigurationResource = new ServiceConfiguration("serviceConfigurationResource", ServiceConfigurationArgs.builder()
    .endpointName("string")
    .resourceUri("string")
    .serviceName("string")
    .createdAt("string")
    .createdBy("string")
    .createdByType("string")
    .lastModifiedAt("string")
    .lastModifiedBy("string")
    .lastModifiedByType("string")
    .port(0)
    .resourceId("string")
    .serviceConfigurationName("string")
    .build());
service_configuration_resource = azure_native.hybridconnectivity.ServiceConfiguration("serviceConfigurationResource",
    endpoint_name="string",
    resource_uri="string",
    service_name="string",
    created_at="string",
    created_by="string",
    created_by_type="string",
    last_modified_at="string",
    last_modified_by="string",
    last_modified_by_type="string",
    port=0,
    resource_id="string",
    service_configuration_name="string")
const serviceConfigurationResource = new azure_native.hybridconnectivity.ServiceConfiguration("serviceConfigurationResource", {
    endpointName: "string",
    resourceUri: "string",
    serviceName: "string",
    createdAt: "string",
    createdBy: "string",
    createdByType: "string",
    lastModifiedAt: "string",
    lastModifiedBy: "string",
    lastModifiedByType: "string",
    port: 0,
    resourceId: "string",
    serviceConfigurationName: "string",
});
type: azure-native:hybridconnectivity:ServiceConfiguration
properties:
    createdAt: string
    createdBy: string
    createdByType: string
    endpointName: string
    lastModifiedAt: string
    lastModifiedBy: string
    lastModifiedByType: string
    port: 0
    resourceId: string
    resourceUri: string
    serviceConfigurationName: string
    serviceName: string
ServiceConfiguration 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 ServiceConfiguration resource accepts the following input properties:
- EndpointName string
- The endpoint name.
- ResourceUri string
- The fully qualified Azure Resource manager identifier of the resource to be connected.
- ServiceName string | Pulumi.Azure Native. Hybrid Connectivity. Service Name 
- Name of the service.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy string | Pulumi.Type Azure Native. Hybrid Connectivity. Created By Type 
- 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 string | Pulumi.By Type Azure Native. Hybrid Connectivity. Created By Type 
- The type of identity that last modified the resource.
- Port double
- The port on which service is enabled.
- ResourceId string
- The resource Id of the connectivity endpoint (optional).
- ServiceConfiguration stringName 
- The service name.
- EndpointName string
- The endpoint name.
- ResourceUri string
- The fully qualified Azure Resource manager identifier of the resource to be connected.
- ServiceName string | ServiceName 
- Name of the service.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy string | CreatedType By Type 
- 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 string | CreatedBy Type By Type 
- The type of identity that last modified the resource.
- Port float64
- The port on which service is enabled.
- ResourceId string
- The resource Id of the connectivity endpoint (optional).
- ServiceConfiguration stringName 
- The service name.
- endpointName String
- The endpoint name.
- resourceUri String
- The fully qualified Azure Resource manager identifier of the resource to be connected.
- serviceName String | ServiceName 
- Name of the service.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy String | CreatedType By Type 
- 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 String | CreatedBy Type By Type 
- The type of identity that last modified the resource.
- port Double
- The port on which service is enabled.
- resourceId String
- The resource Id of the connectivity endpoint (optional).
- serviceConfiguration StringName 
- The service name.
- endpointName string
- The endpoint name.
- resourceUri string
- The fully qualified Azure Resource manager identifier of the resource to be connected.
- serviceName string | ServiceName 
- Name of the service.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy string | CreatedType By Type 
- 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 string | CreatedBy Type By Type 
- The type of identity that last modified the resource.
- port number
- The port on which service is enabled.
- resourceId string
- The resource Id of the connectivity endpoint (optional).
- serviceConfiguration stringName 
- The service name.
- endpoint_name str
- The endpoint name.
- resource_uri str
- The fully qualified Azure Resource manager identifier of the resource to be connected.
- service_name str | ServiceName 
- Name of the service.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ str | Createdtype By Type 
- 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_ str | Createdby_ type By Type 
- The type of identity that last modified the resource.
- port float
- The port on which service is enabled.
- resource_id str
- The resource Id of the connectivity endpoint (optional).
- service_configuration_ strname 
- The service name.
- endpointName String
- The endpoint name.
- resourceUri String
- The fully qualified Azure Resource manager identifier of the resource to be connected.
- serviceName String | "SSH" | "WAC"
- Name of the service.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy String | "User" | "Application" | "ManagedType Identity" | "Key" 
- 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 String | "User" | "Application" | "ManagedBy Type Identity" | "Key" 
- The type of identity that last modified the resource.
- port Number
- The port on which service is enabled.
- resourceId String
- The resource Id of the connectivity endpoint (optional).
- serviceConfiguration StringName 
- The service name.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceConfiguration resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- The resource provisioning state.
- SystemData Pulumi.Azure Native. Hybrid Connectivity. 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
- ProvisioningState string
- The resource provisioning state.
- 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
- provisioningState String
- The resource provisioning state.
- 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
- provisioningState string
- The resource provisioning state.
- 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
- provisioning_state str
- The resource provisioning state.
- 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
- provisioningState String
- The resource provisioning state.
- 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
CreatedByType, CreatedByTypeArgs      
- User
- User
- Application
- Application
- ManagedIdentity 
- ManagedIdentity
- Key
- Key
- CreatedBy Type User 
- User
- CreatedBy Type Application 
- Application
- CreatedBy Type Managed Identity 
- ManagedIdentity
- CreatedBy Type Key 
- Key
- User
- User
- Application
- Application
- ManagedIdentity 
- ManagedIdentity
- Key
- Key
- User
- User
- Application
- Application
- ManagedIdentity 
- ManagedIdentity
- Key
- Key
- USER
- User
- APPLICATION
- Application
- MANAGED_IDENTITY
- ManagedIdentity
- KEY
- Key
- "User"
- User
- "Application"
- Application
- "ManagedIdentity" 
- ManagedIdentity
- "Key"
- Key
ServiceName, ServiceNameArgs    
- SSH
- SSH
- WAC
- WAC
- ServiceName SSH 
- SSH
- ServiceName WAC 
- WAC
- SSH
- SSH
- WAC
- WAC
- SSH
- SSH
- WAC
- WAC
- SSH
- SSH
- WAC
- WAC
- "SSH"
- SSH
- "WAC"
- WAC
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:hybridconnectivity:ServiceConfiguration myresource1 /{resourceUri}/providers/Microsoft.HybridConnectivity/endpoints/{endpointName}/serviceConfigurations/{serviceConfigurationName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0