azure-native.azurearcdata.DataController
Data controller resource API Version: 2021-06-01-preview.
Example Usage
Create or update a Data Controller.
using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var dataController = new AzureNative.AzureArcData.DataController("dataController", new()
{
DataControllerName = "testdataController",
ExtendedLocation = new AzureNative.AzureArcData.Inputs.ExtendedLocationArgs
{
Name = "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation",
Type = "CustomLocation",
},
Location = "northeurope",
Properties = new AzureNative.AzureArcData.Inputs.DataControllerPropertiesArgs
{
BasicLoginInformation = new AzureNative.AzureArcData.Inputs.BasicLoginInformationArgs
{
Password = "********",
Username = "username",
},
LogAnalyticsWorkspaceConfig = new AzureNative.AzureArcData.Inputs.LogAnalyticsWorkspaceConfigArgs
{
PrimaryKey = "********",
WorkspaceId = "00000000-1111-2222-3333-444444444444",
},
OnPremiseProperty = new AzureNative.AzureArcData.Inputs.OnPremisePropertyArgs
{
Id = "12345678-1234-1234-ab12-1a2b3c4d5e6f",
PublicSigningKey = "publicOnPremSigningKey",
},
UploadServicePrincipal = new AzureNative.AzureArcData.Inputs.UploadServicePrincipalArgs
{
Authority = "https://login.microsoftonline.com/",
ClientId = "00000000-1111-2222-3333-444444444444",
ClientSecret = "********",
TenantId = "00000000-1111-2222-3333-444444444444",
},
UploadWatermark = new AzureNative.AzureArcData.Inputs.UploadWatermarkArgs
{
Logs = "2020-01-01T17:18:19.1234567Z",
Metrics = "2020-01-01T17:18:19.1234567Z",
Usages = "2020-01-01T17:18:19.1234567Z",
},
},
ResourceGroupName = "testrg",
Tags =
{
{ "mytag", "myval" },
},
});
});
package main
import (
azurearcdata "github.com/pulumi/pulumi-azure-native/sdk/go/azure/azurearcdata"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurearcdata.NewDataController(ctx, "dataController", &azurearcdata.DataControllerArgs{
DataControllerName: pulumi.String("testdataController"),
ExtendedLocation: &azurearcdata.ExtendedLocationArgs{
Name: pulumi.String("/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation"),
Type: pulumi.String("CustomLocation"),
},
Location: pulumi.String("northeurope"),
Properties: azurearcdata.DataControllerPropertiesResponse{
BasicLoginInformation: &azurearcdata.BasicLoginInformationArgs{
Password: pulumi.String("********"),
Username: pulumi.String("username"),
},
LogAnalyticsWorkspaceConfig: &azurearcdata.LogAnalyticsWorkspaceConfigArgs{
PrimaryKey: pulumi.String("********"),
WorkspaceId: pulumi.String("00000000-1111-2222-3333-444444444444"),
},
OnPremiseProperty: &azurearcdata.OnPremisePropertyArgs{
Id: pulumi.String("12345678-1234-1234-ab12-1a2b3c4d5e6f"),
PublicSigningKey: pulumi.String("publicOnPremSigningKey"),
},
UploadServicePrincipal: &azurearcdata.UploadServicePrincipalArgs{
Authority: pulumi.String("https://login.microsoftonline.com/"),
ClientId: pulumi.String("00000000-1111-2222-3333-444444444444"),
ClientSecret: pulumi.String("********"),
TenantId: pulumi.String("00000000-1111-2222-3333-444444444444"),
},
UploadWatermark: &azurearcdata.UploadWatermarkArgs{
Logs: pulumi.String("2020-01-01T17:18:19.1234567Z"),
Metrics: pulumi.String("2020-01-01T17:18:19.1234567Z"),
Usages: pulumi.String("2020-01-01T17:18:19.1234567Z"),
},
},
ResourceGroupName: pulumi.String("testrg"),
Tags: pulumi.StringMap{
"mytag": pulumi.String("myval"),
},
})
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.azurearcdata.DataController;
import com.pulumi.azurenative.azurearcdata.DataControllerArgs;
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 dataController = new DataController("dataController", DataControllerArgs.builder()
.dataControllerName("testdataController")
.extendedLocation(Map.ofEntries(
Map.entry("name", "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation"),
Map.entry("type", "CustomLocation")
))
.location("northeurope")
.properties(Map.ofEntries(
Map.entry("basicLoginInformation", Map.ofEntries(
Map.entry("password", "********"),
Map.entry("username", "username")
)),
Map.entry("logAnalyticsWorkspaceConfig", Map.ofEntries(
Map.entry("primaryKey", "********"),
Map.entry("workspaceId", "00000000-1111-2222-3333-444444444444")
)),
Map.entry("onPremiseProperty", Map.ofEntries(
Map.entry("id", "12345678-1234-1234-ab12-1a2b3c4d5e6f"),
Map.entry("publicSigningKey", "publicOnPremSigningKey")
)),
Map.entry("uploadServicePrincipal", Map.ofEntries(
Map.entry("authority", "https://login.microsoftonline.com/"),
Map.entry("clientId", "00000000-1111-2222-3333-444444444444"),
Map.entry("clientSecret", "********"),
Map.entry("tenantId", "00000000-1111-2222-3333-444444444444")
)),
Map.entry("uploadWatermark", Map.ofEntries(
Map.entry("logs", "2020-01-01T17:18:19.1234567Z"),
Map.entry("metrics", "2020-01-01T17:18:19.1234567Z"),
Map.entry("usages", "2020-01-01T17:18:19.1234567Z")
))
))
.resourceGroupName("testrg")
.tags(Map.of("mytag", "myval"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
data_controller = azure_native.azurearcdata.DataController("dataController",
data_controller_name="testdataController",
extended_location=azure_native.azurearcdata.ExtendedLocationArgs(
name="/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation",
type="CustomLocation",
),
location="northeurope",
properties=azure_native.azurearcdata.DataControllerPropertiesResponseArgs(
basic_login_information=azure_native.azurearcdata.BasicLoginInformationArgs(
password="********",
username="username",
),
log_analytics_workspace_config=azure_native.azurearcdata.LogAnalyticsWorkspaceConfigArgs(
primary_key="********",
workspace_id="00000000-1111-2222-3333-444444444444",
),
on_premise_property=azure_native.azurearcdata.OnPremisePropertyArgs(
id="12345678-1234-1234-ab12-1a2b3c4d5e6f",
public_signing_key="publicOnPremSigningKey",
),
upload_service_principal=azure_native.azurearcdata.UploadServicePrincipalArgs(
authority="https://login.microsoftonline.com/",
client_id="00000000-1111-2222-3333-444444444444",
client_secret="********",
tenant_id="00000000-1111-2222-3333-444444444444",
),
upload_watermark=azure_native.azurearcdata.UploadWatermarkArgs(
logs="2020-01-01T17:18:19.1234567Z",
metrics="2020-01-01T17:18:19.1234567Z",
usages="2020-01-01T17:18:19.1234567Z",
),
),
resource_group_name="testrg",
tags={
"mytag": "myval",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dataController = new azure_native.azurearcdata.DataController("dataController", {
dataControllerName: "testdataController",
extendedLocation: {
name: "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation",
type: "CustomLocation",
},
location: "northeurope",
properties: {
basicLoginInformation: {
password: "********",
username: "username",
},
logAnalyticsWorkspaceConfig: {
primaryKey: "********",
workspaceId: "00000000-1111-2222-3333-444444444444",
},
onPremiseProperty: {
id: "12345678-1234-1234-ab12-1a2b3c4d5e6f",
publicSigningKey: "publicOnPremSigningKey",
},
uploadServicePrincipal: {
authority: "https://login.microsoftonline.com/",
clientId: "00000000-1111-2222-3333-444444444444",
clientSecret: "********",
tenantId: "00000000-1111-2222-3333-444444444444",
},
uploadWatermark: {
logs: "2020-01-01T17:18:19.1234567Z",
metrics: "2020-01-01T17:18:19.1234567Z",
usages: "2020-01-01T17:18:19.1234567Z",
},
},
resourceGroupName: "testrg",
tags: {
mytag: "myval",
},
});
resources:
dataController:
type: azure-native:azurearcdata:DataController
properties:
dataControllerName: testdataController
extendedLocation:
name: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.ExtendedLocation/customLocations/arclocation
type: CustomLocation
location: northeurope
properties:
basicLoginInformation:
password: '********'
username: username
logAnalyticsWorkspaceConfig:
primaryKey: '********'
workspaceId: 00000000-1111-2222-3333-444444444444
onPremiseProperty:
id: 12345678-1234-1234-ab12-1a2b3c4d5e6f
publicSigningKey: publicOnPremSigningKey
uploadServicePrincipal:
authority: https://login.microsoftonline.com/
clientId: 00000000-1111-2222-3333-444444444444
clientSecret: '********'
tenantId: 00000000-1111-2222-3333-444444444444
uploadWatermark:
logs: 2020-01-01T17:18:19.1234567Z
metrics: 2020-01-01T17:18:19.1234567Z
usages: 2020-01-01T17:18:19.1234567Z
resourceGroupName: testrg
tags:
mytag: myval
Create DataController Resource
new DataController(name: string, args: DataControllerArgs, opts?: CustomResourceOptions);
@overload
def DataController(resource_name: str,
opts: Optional[ResourceOptions] = None,
data_controller_name: Optional[str] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
location: Optional[str] = None,
properties: Optional[DataControllerPropertiesArgs] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def DataController(resource_name: str,
args: DataControllerArgs,
opts: Optional[ResourceOptions] = None)
func NewDataController(ctx *Context, name string, args DataControllerArgs, opts ...ResourceOption) (*DataController, error)
public DataController(string name, DataControllerArgs args, CustomResourceOptions? opts = null)
public DataController(String name, DataControllerArgs args)
public DataController(String name, DataControllerArgs args, CustomResourceOptions options)
type: azure-native:azurearcdata:DataController
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataControllerArgs
- 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 DataControllerArgs
- 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 DataControllerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DataControllerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DataControllerArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
DataController 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 DataController resource accepts the following input properties:
- Properties
Pulumi.
Azure Native. Azure Arc Data. Inputs. Data Controller Properties Args The data controller's properties
- Resource
Group stringName The name of the Azure resource group
- Data
Controller stringName - Extended
Location Pulumi.Azure Native. Azure Arc Data. Inputs. Extended Location Args The extendedLocation of the resource.
- Location string
The geo-location where the resource lives
- Dictionary<string, string>
Resource tags.
- Properties
Data
Controller Properties Args The data controller's properties
- Resource
Group stringName The name of the Azure resource group
- Data
Controller stringName - Extended
Location ExtendedLocation Args The extendedLocation of the resource.
- Location string
The geo-location where the resource lives
- map[string]string
Resource tags.
- properties
Data
Controller Properties Args The data controller's properties
- resource
Group StringName The name of the Azure resource group
- data
Controller StringName - extended
Location ExtendedLocation Args The extendedLocation of the resource.
- location String
The geo-location where the resource lives
- Map<String,String>
Resource tags.
- properties
Data
Controller Properties Args The data controller's properties
- resource
Group stringName The name of the Azure resource group
- data
Controller stringName - extended
Location ExtendedLocation Args The extendedLocation of the resource.
- location string
The geo-location where the resource lives
- {[key: string]: string}
Resource tags.
- properties
Data
Controller Properties Args The data controller's properties
- resource_
group_ strname The name of the Azure resource group
- data_
controller_ strname - extended_
location ExtendedLocation Args The extendedLocation of the resource.
- location str
The geo-location where the resource lives
- Mapping[str, str]
Resource tags.
- properties Property Map
The data controller's properties
- resource
Group StringName The name of the Azure resource group
- data
Controller StringName - extended
Location Property Map The extendedLocation of the resource.
- location String
The geo-location where the resource lives
- Map<String>
Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the DataController 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. Azure Arc Data. Outputs. System Data Response Read only system data
- Type string
The type of the resource. Ex- 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 Read only system data
- Type string
The type of the resource. Ex- 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 Read only system data
- type String
The type of the resource. Ex- 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 Read only system data
- type string
The type of the resource. Ex- 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 Read only system data
- type str
The type of the resource. Ex- 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 Read only system data
- type String
The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
Supporting Types
BasicLoginInformation
BasicLoginInformationResponse
- Username string
Login username.
- Username string
Login username.
- username String
Login username.
- username string
Login username.
- username str
Login username.
- username String
Login username.
DataControllerProperties
- Basic
Login Pulumi.Information Azure Native. Azure Arc Data. Inputs. Basic Login Information Username and password for basic login authentication.
- K8s
Raw object The raw kubernetes information
- Last
Uploaded stringDate Last uploaded date from Kubernetes cluster. Defaults to current date time
- Log
Analytics Pulumi.Workspace Config Azure Native. Azure Arc Data. Inputs. Log Analytics Workspace Config Log analytics workspace id and primary key
- On
Premise Pulumi.Property Azure Native. Azure Arc Data. Inputs. On Premise Property Properties from the Kubernetes data controller
- Upload
Service Pulumi.Principal Azure Native. Azure Arc Data. Inputs. Upload Service Principal Service principal for uploading billing, metrics and logs.
- Upload
Watermark Pulumi.Azure Native. Azure Arc Data. Inputs. Upload Watermark Properties on upload watermark. Mostly timestamp for each upload data type
- Basic
Login BasicInformation Login Information Username and password for basic login authentication.
- K8s
Raw interface{} The raw kubernetes information
- Last
Uploaded stringDate Last uploaded date from Kubernetes cluster. Defaults to current date time
- Log
Analytics LogWorkspace Config Analytics Workspace Config Log analytics workspace id and primary key
- On
Premise OnProperty Premise Property Properties from the Kubernetes data controller
- Upload
Service UploadPrincipal Service Principal Service principal for uploading billing, metrics and logs.
- Upload
Watermark UploadWatermark Properties on upload watermark. Mostly timestamp for each upload data type
- basic
Login BasicInformation Login Information Username and password for basic login authentication.
- k8s
Raw Object The raw kubernetes information
- last
Uploaded StringDate Last uploaded date from Kubernetes cluster. Defaults to current date time
- log
Analytics LogWorkspace Config Analytics Workspace Config Log analytics workspace id and primary key
- on
Premise OnProperty Premise Property Properties from the Kubernetes data controller
- upload
Service UploadPrincipal Service Principal Service principal for uploading billing, metrics and logs.
- upload
Watermark UploadWatermark Properties on upload watermark. Mostly timestamp for each upload data type
- basic
Login BasicInformation Login Information Username and password for basic login authentication.
- k8s
Raw any The raw kubernetes information
- last
Uploaded stringDate Last uploaded date from Kubernetes cluster. Defaults to current date time
- log
Analytics LogWorkspace Config Analytics Workspace Config Log analytics workspace id and primary key
- on
Premise OnProperty Premise Property Properties from the Kubernetes data controller
- upload
Service UploadPrincipal Service Principal Service principal for uploading billing, metrics and logs.
- upload
Watermark UploadWatermark Properties on upload watermark. Mostly timestamp for each upload data type
- basic_
login_ Basicinformation Login Information Username and password for basic login authentication.
- k8s_
raw Any The raw kubernetes information
- last_
uploaded_ strdate Last uploaded date from Kubernetes cluster. Defaults to current date time
- log_
analytics_ Logworkspace_ config Analytics Workspace Config Log analytics workspace id and primary key
- on_
premise_ Onproperty Premise Property Properties from the Kubernetes data controller
- upload_
service_ Uploadprincipal Service Principal Service principal for uploading billing, metrics and logs.
- upload_
watermark UploadWatermark Properties on upload watermark. Mostly timestamp for each upload data type
- basic
Login Property MapInformation Username and password for basic login authentication.
- k8s
Raw Any The raw kubernetes information
- last
Uploaded StringDate Last uploaded date from Kubernetes cluster. Defaults to current date time
- log
Analytics Property MapWorkspace Config Log analytics workspace id and primary key
- on
Premise Property MapProperty Properties from the Kubernetes data controller
- upload
Service Property MapPrincipal Service principal for uploading billing, metrics and logs.
- upload
Watermark Property Map Properties on upload watermark. Mostly timestamp for each upload data type
DataControllerPropertiesResponse
- Provisioning
State string - Basic
Login Pulumi.Information Azure Native. Azure Arc Data. Inputs. Basic Login Information Response Username and password for basic login authentication.
- K8s
Raw object The raw kubernetes information
- Last
Uploaded stringDate Last uploaded date from Kubernetes cluster. Defaults to current date time
- Log
Analytics Pulumi.Workspace Config Azure Native. Azure Arc Data. Inputs. Log Analytics Workspace Config Response Log analytics workspace id and primary key
- On
Premise Pulumi.Property Azure Native. Azure Arc Data. Inputs. On Premise Property Response Properties from the Kubernetes data controller
- Upload
Service Pulumi.Principal Azure Native. Azure Arc Data. Inputs. Upload Service Principal Response Service principal for uploading billing, metrics and logs.
- Upload
Watermark Pulumi.Azure Native. Azure Arc Data. Inputs. Upload Watermark Response Properties on upload watermark. Mostly timestamp for each upload data type
- Provisioning
State string - Basic
Login BasicInformation Login Information Response Username and password for basic login authentication.
- K8s
Raw interface{} The raw kubernetes information
- Last
Uploaded stringDate Last uploaded date from Kubernetes cluster. Defaults to current date time
- Log
Analytics LogWorkspace Config Analytics Workspace Config Response Log analytics workspace id and primary key
- On
Premise OnProperty Premise Property Response Properties from the Kubernetes data controller
- Upload
Service UploadPrincipal Service Principal Response Service principal for uploading billing, metrics and logs.
- Upload
Watermark UploadWatermark Response Properties on upload watermark. Mostly timestamp for each upload data type
- provisioning
State String - basic
Login BasicInformation Login Information Response Username and password for basic login authentication.
- k8s
Raw Object The raw kubernetes information
- last
Uploaded StringDate Last uploaded date from Kubernetes cluster. Defaults to current date time
- log
Analytics LogWorkspace Config Analytics Workspace Config Response Log analytics workspace id and primary key
- on
Premise OnProperty Premise Property Response Properties from the Kubernetes data controller
- upload
Service UploadPrincipal Service Principal Response Service principal for uploading billing, metrics and logs.
- upload
Watermark UploadWatermark Response Properties on upload watermark. Mostly timestamp for each upload data type
- provisioning
State string - basic
Login BasicInformation Login Information Response Username and password for basic login authentication.
- k8s
Raw any The raw kubernetes information
- last
Uploaded stringDate Last uploaded date from Kubernetes cluster. Defaults to current date time
- log
Analytics LogWorkspace Config Analytics Workspace Config Response Log analytics workspace id and primary key
- on
Premise OnProperty Premise Property Response Properties from the Kubernetes data controller
- upload
Service UploadPrincipal Service Principal Response Service principal for uploading billing, metrics and logs.
- upload
Watermark UploadWatermark Response Properties on upload watermark. Mostly timestamp for each upload data type
- provisioning_
state str - basic_
login_ Basicinformation Login Information Response Username and password for basic login authentication.
- k8s_
raw Any The raw kubernetes information
- last_
uploaded_ strdate Last uploaded date from Kubernetes cluster. Defaults to current date time
- log_
analytics_ Logworkspace_ config Analytics Workspace Config Response Log analytics workspace id and primary key
- on_
premise_ Onproperty Premise Property Response Properties from the Kubernetes data controller
- upload_
service_ Uploadprincipal Service Principal Response Service principal for uploading billing, metrics and logs.
- upload_
watermark UploadWatermark Response Properties on upload watermark. Mostly timestamp for each upload data type
- provisioning
State String - basic
Login Property MapInformation Username and password for basic login authentication.
- k8s
Raw Any The raw kubernetes information
- last
Uploaded StringDate Last uploaded date from Kubernetes cluster. Defaults to current date time
- log
Analytics Property MapWorkspace Config Log analytics workspace id and primary key
- on
Premise Property MapProperty Properties from the Kubernetes data controller
- upload
Service Property MapPrincipal Service principal for uploading billing, metrics and logs.
- upload
Watermark Property Map Properties on upload watermark. Mostly timestamp for each upload data type
ExtendedLocation
- Name string
The name of the extended location.
- Type
string | Pulumi.
Azure Native. Azure Arc Data. Extended Location Types The type of the extended location.
- Name string
The name of the extended location.
- Type
string | Extended
Location Types The type of the extended location.
- name String
The name of the extended location.
- type
String | Extended
Location Types The type of the extended location.
- name string
The name of the extended location.
- type
string | Extended
Location Types The type of the extended location.
- name str
The name of the extended location.
- type
str | Extended
Location Types The type of the extended location.
- name String
The name of the extended location.
- type
String | "Custom
Location" The type of the extended location.
ExtendedLocationResponse
ExtendedLocationTypes
- Custom
Location - CustomLocation
- Extended
Location Types Custom Location - CustomLocation
- Custom
Location - CustomLocation
- Custom
Location - CustomLocation
- CUSTOM_LOCATION
- CustomLocation
- "Custom
Location" - CustomLocation
LogAnalyticsWorkspaceConfig
- Primary
Key string Primary key of the workspace
- Workspace
Id string Azure Log Analytics workspace ID
- Primary
Key string Primary key of the workspace
- Workspace
Id string Azure Log Analytics workspace ID
- primary
Key String Primary key of the workspace
- workspace
Id String Azure Log Analytics workspace ID
- primary
Key string Primary key of the workspace
- workspace
Id string Azure Log Analytics workspace ID
- primary_
key str Primary key of the workspace
- workspace_
id str Azure Log Analytics workspace ID
- primary
Key String Primary key of the workspace
- workspace
Id String Azure Log Analytics workspace ID
LogAnalyticsWorkspaceConfigResponse
- Workspace
Id string Azure Log Analytics workspace ID
- Workspace
Id string Azure Log Analytics workspace ID
- workspace
Id String Azure Log Analytics workspace ID
- workspace
Id string Azure Log Analytics workspace ID
- workspace_
id str Azure Log Analytics workspace ID
- workspace
Id String Azure Log Analytics workspace ID
OnPremiseProperty
- Id string
A globally unique ID identifying the associated Kubernetes cluster
- Public
Signing stringKey Certificate that contains the Kubernetes cluster public key used to verify signing
- Signing
Certificate stringThumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
- Id string
A globally unique ID identifying the associated Kubernetes cluster
- Public
Signing stringKey Certificate that contains the Kubernetes cluster public key used to verify signing
- Signing
Certificate stringThumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
- id String
A globally unique ID identifying the associated Kubernetes cluster
- public
Signing StringKey Certificate that contains the Kubernetes cluster public key used to verify signing
- signing
Certificate StringThumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
- id string
A globally unique ID identifying the associated Kubernetes cluster
- public
Signing stringKey Certificate that contains the Kubernetes cluster public key used to verify signing
- signing
Certificate stringThumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
- id str
A globally unique ID identifying the associated Kubernetes cluster
- public_
signing_ strkey Certificate that contains the Kubernetes cluster public key used to verify signing
- signing_
certificate_ strthumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
- id String
A globally unique ID identifying the associated Kubernetes cluster
- public
Signing StringKey Certificate that contains the Kubernetes cluster public key used to verify signing
- signing
Certificate StringThumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
OnPremisePropertyResponse
- Id string
A globally unique ID identifying the associated Kubernetes cluster
- Public
Signing stringKey Certificate that contains the Kubernetes cluster public key used to verify signing
- Signing
Certificate stringThumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
- Id string
A globally unique ID identifying the associated Kubernetes cluster
- Public
Signing stringKey Certificate that contains the Kubernetes cluster public key used to verify signing
- Signing
Certificate stringThumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
- id String
A globally unique ID identifying the associated Kubernetes cluster
- public
Signing StringKey Certificate that contains the Kubernetes cluster public key used to verify signing
- signing
Certificate StringThumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
- id string
A globally unique ID identifying the associated Kubernetes cluster
- public
Signing stringKey Certificate that contains the Kubernetes cluster public key used to verify signing
- signing
Certificate stringThumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
- id str
A globally unique ID identifying the associated Kubernetes cluster
- public_
signing_ strkey Certificate that contains the Kubernetes cluster public key used to verify signing
- signing_
certificate_ strthumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
- id String
A globally unique ID identifying the associated Kubernetes cluster
- public
Signing StringKey Certificate that contains the Kubernetes cluster public key used to verify signing
- signing
Certificate StringThumbprint Unique thumbprint returned to customer to verify the certificate being uploaded
SystemDataResponse
- Created
At string The timestamp of resource creation (UTC)
- Created
By string An identifier for 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 An identifier for 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 An identifier for 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 An identifier for 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 An identifier for 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 An identifier for 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 An identifier for 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 An identifier for 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 An identifier for 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 An identifier for 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 An identifier for 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 An identifier for the identity that last modified the resource
- last
Modified StringBy Type The type of identity that last modified the resource
UploadServicePrincipal
- string
Authority for the service principal. Example: https://login.microsoftonline.com/
- Client
Id string Client ID of the service principal for uploading data.
- Client
Secret string Secret of the service principal
- Tenant
Id string Tenant ID of the service principal.
- string
Authority for the service principal. Example: https://login.microsoftonline.com/
- Client
Id string Client ID of the service principal for uploading data.
- Client
Secret string Secret of the service principal
- Tenant
Id string Tenant ID of the service principal.
- String
Authority for the service principal. Example: https://login.microsoftonline.com/
- client
Id String Client ID of the service principal for uploading data.
- client
Secret String Secret of the service principal
- tenant
Id String Tenant ID of the service principal.
- string
Authority for the service principal. Example: https://login.microsoftonline.com/
- client
Id string Client ID of the service principal for uploading data.
- client
Secret string Secret of the service principal
- tenant
Id string Tenant ID of the service principal.
- str
Authority for the service principal. Example: https://login.microsoftonline.com/
- client_
id str Client ID of the service principal for uploading data.
- client_
secret str Secret of the service principal
- tenant_
id str Tenant ID of the service principal.
- String
Authority for the service principal. Example: https://login.microsoftonline.com/
- client
Id String Client ID of the service principal for uploading data.
- client
Secret String Secret of the service principal
- tenant
Id String Tenant ID of the service principal.
UploadServicePrincipalResponse
UploadWatermark
UploadWatermarkResponse
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azurearcdata:DataController testdataController /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/testrg/providers/Microsoft.AzureArcData/dataControllers/testdataController
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0