azure-native.migrate.ServerCollector
Explore with Pulumi AI
API Version: 2019-10-01.
Example Usage
ServerCollectors_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var serverCollector = new AzureNative.Migrate.ServerCollector("serverCollector", new()
{
ETag = "\"00000606-0000-0d00-0000-605999bf0000\"",
ProjectName = "app11141project",
Properties = new AzureNative.Migrate.Inputs.CollectorPropertiesArgs
{
AgentProperties = new AzureNative.Migrate.Inputs.CollectorAgentPropertiesArgs
{
SpnDetails = new AzureNative.Migrate.Inputs.CollectorBodyAgentSpnPropertiesArgs
{
ApplicationId = "ad9f701a-cc08-4421-b51f-b5762d58e9ba",
Audience = "https://72f988bf-86f1-41af-91ab-2d7cd011db47/app23df4authandaccessaadapp",
Authority = "https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
ObjectId = "b4975e42-9248-4a36-b99f-37eca377ea00",
TenantId = "72f988bf-86f1-41af-91ab-2d7cd011db47",
},
},
DiscoverySiteId = "/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/pajindTest/providers/Microsoft.OffAzure/ServerSites/app21141site",
},
ResourceGroupName = "pajindtest",
ServerCollectorName = "app23df4collector",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.migrate.ServerCollector;
import com.pulumi.azurenative.migrate.ServerCollectorArgs;
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 serverCollector = new ServerCollector("serverCollector", ServerCollectorArgs.builder()
.eTag("\"00000606-0000-0d00-0000-605999bf0000\"")
.projectName("app11141project")
.properties(Map.ofEntries(
Map.entry("agentProperties", Map.of("spnDetails", Map.ofEntries(
Map.entry("applicationId", "ad9f701a-cc08-4421-b51f-b5762d58e9ba"),
Map.entry("audience", "https://72f988bf-86f1-41af-91ab-2d7cd011db47/app23df4authandaccessaadapp"),
Map.entry("authority", "https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47"),
Map.entry("objectId", "b4975e42-9248-4a36-b99f-37eca377ea00"),
Map.entry("tenantId", "72f988bf-86f1-41af-91ab-2d7cd011db47")
))),
Map.entry("discoverySiteId", "/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/pajindTest/providers/Microsoft.OffAzure/ServerSites/app21141site")
))
.resourceGroupName("pajindtest")
.serverCollectorName("app23df4collector")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
server_collector = azure_native.migrate.ServerCollector("serverCollector",
e_tag="\"00000606-0000-0d00-0000-605999bf0000\"",
project_name="app11141project",
properties=azure_native.migrate.CollectorPropertiesResponseArgs(
agent_properties={
"spnDetails": azure_native.migrate.CollectorBodyAgentSpnPropertiesArgs(
application_id="ad9f701a-cc08-4421-b51f-b5762d58e9ba",
audience="https://72f988bf-86f1-41af-91ab-2d7cd011db47/app23df4authandaccessaadapp",
authority="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
object_id="b4975e42-9248-4a36-b99f-37eca377ea00",
tenant_id="72f988bf-86f1-41af-91ab-2d7cd011db47",
),
},
discovery_site_id="/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/pajindTest/providers/Microsoft.OffAzure/ServerSites/app21141site",
),
resource_group_name="pajindtest",
server_collector_name="app23df4collector")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const serverCollector = new azure_native.migrate.ServerCollector("serverCollector", {
eTag: "\"00000606-0000-0d00-0000-605999bf0000\"",
projectName: "app11141project",
properties: {
agentProperties: {
spnDetails: {
applicationId: "ad9f701a-cc08-4421-b51f-b5762d58e9ba",
audience: "https://72f988bf-86f1-41af-91ab-2d7cd011db47/app23df4authandaccessaadapp",
authority: "https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47",
objectId: "b4975e42-9248-4a36-b99f-37eca377ea00",
tenantId: "72f988bf-86f1-41af-91ab-2d7cd011db47",
},
},
discoverySiteId: "/subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/pajindTest/providers/Microsoft.OffAzure/ServerSites/app21141site",
},
resourceGroupName: "pajindtest",
serverCollectorName: "app23df4collector",
});
resources:
serverCollector:
type: azure-native:migrate:ServerCollector
properties:
eTag: '"00000606-0000-0d00-0000-605999bf0000"'
projectName: app11141project
properties:
agentProperties:
spnDetails:
applicationId: ad9f701a-cc08-4421-b51f-b5762d58e9ba
audience: https://72f988bf-86f1-41af-91ab-2d7cd011db47/app23df4authandaccessaadapp
authority: https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47
objectId: b4975e42-9248-4a36-b99f-37eca377ea00
tenantId: 72f988bf-86f1-41af-91ab-2d7cd011db47
discoverySiteId: /subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/pajindTest/providers/Microsoft.OffAzure/ServerSites/app21141site
resourceGroupName: pajindtest
serverCollectorName: app23df4collector
Create ServerCollector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServerCollector(name: string, args: ServerCollectorArgs, opts?: CustomResourceOptions);
@overload
def ServerCollector(resource_name: str,
args: ServerCollectorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServerCollector(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
e_tag: Optional[str] = None,
properties: Optional[CollectorPropertiesArgs] = None,
server_collector_name: Optional[str] = None)
func NewServerCollector(ctx *Context, name string, args ServerCollectorArgs, opts ...ResourceOption) (*ServerCollector, error)
public ServerCollector(string name, ServerCollectorArgs args, CustomResourceOptions? opts = null)
public ServerCollector(String name, ServerCollectorArgs args)
public ServerCollector(String name, ServerCollectorArgs args, CustomResourceOptions options)
type: azure-native:migrate:ServerCollector
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 ServerCollectorArgs
- 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 ServerCollectorArgs
- 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 ServerCollectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerCollectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerCollectorArgs
- 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 serverCollectorResource = new AzureNative.Migrate.ServerCollector("serverCollectorResource", new()
{
ProjectName = "string",
ResourceGroupName = "string",
ETag = "string",
Properties =
{
{ "agentProperties",
{
{ "spnDetails",
{
{ "applicationId", "string" },
{ "audience", "string" },
{ "authority", "string" },
{ "objectId", "string" },
{ "tenantId", "string" },
} },
} },
{ "discoverySiteId", "string" },
},
ServerCollectorName = "string",
});
example, err := migrate.NewServerCollector(ctx, "serverCollectorResource", &migrate.ServerCollectorArgs{
ProjectName: "string",
ResourceGroupName: "string",
ETag: "string",
Properties: map[string]interface{}{
"agentProperties": map[string]interface{}{
"spnDetails": map[string]interface{}{
"applicationId": "string",
"audience": "string",
"authority": "string",
"objectId": "string",
"tenantId": "string",
},
},
"discoverySiteId": "string",
},
ServerCollectorName: "string",
})
var serverCollectorResource = new ServerCollector("serverCollectorResource", ServerCollectorArgs.builder()
.projectName("string")
.resourceGroupName("string")
.eTag("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.serverCollectorName("string")
.build());
server_collector_resource = azure_native.migrate.ServerCollector("serverCollectorResource",
project_name=string,
resource_group_name=string,
e_tag=string,
properties={
agentProperties: {
spnDetails: {
applicationId: string,
audience: string,
authority: string,
objectId: string,
tenantId: string,
},
},
discoverySiteId: string,
},
server_collector_name=string)
const serverCollectorResource = new azure_native.migrate.ServerCollector("serverCollectorResource", {
projectName: "string",
resourceGroupName: "string",
eTag: "string",
properties: {
agentProperties: {
spnDetails: {
applicationId: "string",
audience: "string",
authority: "string",
objectId: "string",
tenantId: "string",
},
},
discoverySiteId: "string",
},
serverCollectorName: "string",
});
type: azure-native:migrate:ServerCollector
properties:
eTag: string
projectName: string
properties:
agentProperties:
spnDetails:
applicationId: string
audience: string
authority: string
objectId: string
tenantId: string
discoverySiteId: string
resourceGroupName: string
serverCollectorName: string
ServerCollector 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 ServerCollector resource accepts the following input properties:
- Project
Name string - Name of the Azure Migrate project.
- Resource
Group stringName - Name of the Azure Resource Group that project is part of.
- ETag string
- Properties
Pulumi.
Azure Native. Migrate. Inputs. Collector Properties - Server
Collector stringName - Unique name of a Server collector within a project.
- Project
Name string - Name of the Azure Migrate project.
- Resource
Group stringName - Name of the Azure Resource Group that project is part of.
- ETag string
- Properties
Collector
Properties Args - Server
Collector stringName - Unique name of a Server collector within a project.
- project
Name String - Name of the Azure Migrate project.
- resource
Group StringName - Name of the Azure Resource Group that project is part of.
- e
Tag String - properties
Collector
Properties - server
Collector StringName - Unique name of a Server collector within a project.
- project
Name string - Name of the Azure Migrate project.
- resource
Group stringName - Name of the Azure Resource Group that project is part of.
- e
Tag string - properties
Collector
Properties - server
Collector stringName - Unique name of a Server collector within a project.
- project_
name str - Name of the Azure Migrate project.
- resource_
group_ strname - Name of the Azure Resource Group that project is part of.
- e_
tag str - properties
Collector
Properties Args - server_
collector_ strname - Unique name of a Server collector within a project.
- project
Name String - Name of the Azure Migrate project.
- resource
Group StringName - Name of the Azure Resource Group that project is part of.
- e
Tag String - properties Property Map
- server
Collector StringName - Unique name of a Server collector within a project.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServerCollector resource produces the following output properties:
Supporting Types
CollectorAgentProperties, CollectorAgentPropertiesArgs
CollectorAgentPropertiesResponse, CollectorAgentPropertiesResponseArgs
- Id string
- Last
Heartbeat stringUtc - Version string
- Spn
Details CollectorBody Agent Spn Properties Response
- id String
- last
Heartbeat StringUtc - version String
- spn
Details CollectorBody Agent Spn Properties Response
- id string
- last
Heartbeat stringUtc - version string
- spn
Details CollectorBody Agent Spn Properties Response
- id String
- last
Heartbeat StringUtc - version String
- spn
Details Property Map
CollectorBodyAgentSpnProperties, CollectorBodyAgentSpnPropertiesArgs
- Application
Id string - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Audience string
- Intended audience for the service principal.
- string
- AAD Authority URL which was used to request the token for the service principal.
- Object
Id string - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Tenant
Id string - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Application
Id string - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Audience string
- Intended audience for the service principal.
- string
- AAD Authority URL which was used to request the token for the service principal.
- Object
Id string - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Tenant
Id string - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- application
Id String - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience String
- Intended audience for the service principal.
- String
- AAD Authority URL which was used to request the token for the service principal.
- object
Id String - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenant
Id String - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- application
Id string - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience string
- Intended audience for the service principal.
- string
- AAD Authority URL which was used to request the token for the service principal.
- object
Id string - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenant
Id string - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- application_
id str - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience str
- Intended audience for the service principal.
- str
- AAD Authority URL which was used to request the token for the service principal.
- object_
id str - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenant_
id str - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- application
Id String - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience String
- Intended audience for the service principal.
- String
- AAD Authority URL which was used to request the token for the service principal.
- object
Id String - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenant
Id String - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
CollectorBodyAgentSpnPropertiesResponse, CollectorBodyAgentSpnPropertiesResponseArgs
- Application
Id string - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Audience string
- Intended audience for the service principal.
- string
- AAD Authority URL which was used to request the token for the service principal.
- Object
Id string - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Tenant
Id string - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Application
Id string - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Audience string
- Intended audience for the service principal.
- string
- AAD Authority URL which was used to request the token for the service principal.
- Object
Id string - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Tenant
Id string - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- application
Id String - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience String
- Intended audience for the service principal.
- String
- AAD Authority URL which was used to request the token for the service principal.
- object
Id String - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenant
Id String - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- application
Id string - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience string
- Intended audience for the service principal.
- string
- AAD Authority URL which was used to request the token for the service principal.
- object
Id string - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenant
Id string - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- application_
id str - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience str
- Intended audience for the service principal.
- str
- AAD Authority URL which was used to request the token for the service principal.
- object_
id str - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenant_
id str - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- application
Id String - Application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience String
- Intended audience for the service principal.
- String
- AAD Authority URL which was used to request the token for the service principal.
- object
Id String - Object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenant
Id String - Tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
CollectorProperties, CollectorPropertiesArgs
- Agent
Properties Pulumi.Azure Native. Migrate. Inputs. Collector Agent Properties - Discovery
Site stringId - The ARM id of the discovery service site.
- Agent
Properties CollectorAgent Properties - Discovery
Site stringId - The ARM id of the discovery service site.
- agent
Properties CollectorAgent Properties - discovery
Site StringId - The ARM id of the discovery service site.
- agent
Properties CollectorAgent Properties - discovery
Site stringId - The ARM id of the discovery service site.
- agent_
properties CollectorAgent Properties - discovery_
site_ strid - The ARM id of the discovery service site.
- agent
Properties Property Map - discovery
Site StringId - The ARM id of the discovery service site.
CollectorPropertiesResponse, CollectorPropertiesResponseArgs
- Created
Timestamp string - Time when this collector was created. Date-Time represented in ISO-8601 format.
- Updated
Timestamp string - Time when this collector was updated. Date-Time represented in ISO-8601 format.
- Agent
Properties Pulumi.Azure Native. Migrate. Inputs. Collector Agent Properties Response - Discovery
Site stringId - The ARM id of the discovery service site.
- Created
Timestamp string - Time when this collector was created. Date-Time represented in ISO-8601 format.
- Updated
Timestamp string - Time when this collector was updated. Date-Time represented in ISO-8601 format.
- Agent
Properties CollectorAgent Properties Response - Discovery
Site stringId - The ARM id of the discovery service site.
- created
Timestamp String - Time when this collector was created. Date-Time represented in ISO-8601 format.
- updated
Timestamp String - Time when this collector was updated. Date-Time represented in ISO-8601 format.
- agent
Properties CollectorAgent Properties Response - discovery
Site StringId - The ARM id of the discovery service site.
- created
Timestamp string - Time when this collector was created. Date-Time represented in ISO-8601 format.
- updated
Timestamp string - Time when this collector was updated. Date-Time represented in ISO-8601 format.
- agent
Properties CollectorAgent Properties Response - discovery
Site stringId - The ARM id of the discovery service site.
- created_
timestamp str - Time when this collector was created. Date-Time represented in ISO-8601 format.
- updated_
timestamp str - Time when this collector was updated. Date-Time represented in ISO-8601 format.
- agent_
properties CollectorAgent Properties Response - discovery_
site_ strid - The ARM id of the discovery service site.
- created
Timestamp String - Time when this collector was created. Date-Time represented in ISO-8601 format.
- updated
Timestamp String - Time when this collector was updated. Date-Time represented in ISO-8601 format.
- agent
Properties Property Map - discovery
Site StringId - The ARM id of the discovery service site.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:migrate:ServerCollector app23df4collector /subscriptions/4bd2aa0f-2bd2-4d67-91a8-5a4533d58600/resourceGroups/pajindtest/providers/Microsoft.Migrate/assessmentprojects/app11141project/servercollectors/app23df4collector
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0