azure-native.hdinsight.Application
Explore with Pulumi AI
The HDInsight cluster application API Version: 2018-06-01-preview.
Example Usage
Create Application
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var application = new AzureNative.HDInsight.Application("application", new()
{
ApplicationName = "hue",
ClusterName = "cluster1",
Properties = new AzureNative.HDInsight.Inputs.ApplicationPropertiesArgs
{
ApplicationType = "CustomApplication",
ComputeProfile = new AzureNative.HDInsight.Inputs.ComputeProfileArgs
{
Roles = new[]
{
new AzureNative.HDInsight.Inputs.RoleArgs
{
HardwareProfile = new AzureNative.HDInsight.Inputs.HardwareProfileArgs
{
VmSize = "Standard_D12_v2",
},
Name = "edgenode",
TargetInstanceCount = 1,
},
},
},
Errors = new[] {},
HttpsEndpoints = new[]
{
new AzureNative.HDInsight.Inputs.ApplicationGetHttpsEndpointArgs
{
AccessModes = new[]
{
"WebPage",
},
DestinationPort = 20000,
SubDomainSuffix = "dss",
},
},
InstallScriptActions = new[]
{
new AzureNative.HDInsight.Inputs.RuntimeScriptActionArgs
{
Name = "app-install-app1",
Parameters = "-version latest -port 20000",
Roles = new[]
{
"edgenode",
},
Uri = "https://.../install.sh",
},
},
UninstallScriptActions = new[] {},
},
ResourceGroupName = "rg1",
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.hdinsight.Application;
import com.pulumi.azurenative.hdinsight.ApplicationArgs;
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 application = new Application("application", ApplicationArgs.builder()
.applicationName("hue")
.clusterName("cluster1")
.properties(Map.ofEntries(
Map.entry("applicationType", "CustomApplication"),
Map.entry("computeProfile", Map.of("roles", Map.ofEntries(
Map.entry("hardwareProfile", Map.of("vmSize", "Standard_D12_v2")),
Map.entry("name", "edgenode"),
Map.entry("targetInstanceCount", 1)
))),
Map.entry("errors", ),
Map.entry("httpsEndpoints", Map.ofEntries(
Map.entry("accessModes", "WebPage"),
Map.entry("destinationPort", 20000),
Map.entry("subDomainSuffix", "dss")
)),
Map.entry("installScriptActions", Map.ofEntries(
Map.entry("name", "app-install-app1"),
Map.entry("parameters", "-version latest -port 20000"),
Map.entry("roles", "edgenode"),
Map.entry("uri", "https://.../install.sh")
)),
Map.entry("uninstallScriptActions", )
))
.resourceGroupName("rg1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
application = azure_native.hdinsight.Application("application",
application_name="hue",
cluster_name="cluster1",
properties=azure_native.hdinsight.ApplicationPropertiesResponseArgs(
application_type="CustomApplication",
compute_profile={
"roles": [{
"hardwareProfile": azure_native.hdinsight.HardwareProfileArgs(
vm_size="Standard_D12_v2",
),
"name": "edgenode",
"targetInstanceCount": 1,
}],
},
errors=[],
https_endpoints=[azure_native.hdinsight.ApplicationGetHttpsEndpointArgs(
access_modes=["WebPage"],
destination_port=20000,
sub_domain_suffix="dss",
)],
install_script_actions=[azure_native.hdinsight.RuntimeScriptActionArgs(
name="app-install-app1",
parameters="-version latest -port 20000",
roles=["edgenode"],
uri="https://.../install.sh",
)],
uninstall_script_actions=[],
),
resource_group_name="rg1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const application = new azure_native.hdinsight.Application("application", {
applicationName: "hue",
clusterName: "cluster1",
properties: {
applicationType: "CustomApplication",
computeProfile: {
roles: [{
hardwareProfile: {
vmSize: "Standard_D12_v2",
},
name: "edgenode",
targetInstanceCount: 1,
}],
},
errors: [],
httpsEndpoints: [{
accessModes: ["WebPage"],
destinationPort: 20000,
subDomainSuffix: "dss",
}],
installScriptActions: [{
name: "app-install-app1",
parameters: "-version latest -port 20000",
roles: ["edgenode"],
uri: "https://.../install.sh",
}],
uninstallScriptActions: [],
},
resourceGroupName: "rg1",
});
resources:
application:
type: azure-native:hdinsight:Application
properties:
applicationName: hue
clusterName: cluster1
properties:
applicationType: CustomApplication
computeProfile:
roles:
- hardwareProfile:
vmSize: Standard_D12_v2
name: edgenode
targetInstanceCount: 1
errors: []
httpsEndpoints:
- accessModes:
- WebPage
destinationPort: 20000
subDomainSuffix: dss
installScriptActions:
- name: app-install-app1
parameters: -version latest -port 20000
roles:
- edgenode
uri: https://.../install.sh
uninstallScriptActions: []
resourceGroupName: rg1
Create Application Resource
new Application(name: string, args: ApplicationArgs, opts?: CustomResourceOptions);
@overload
def Application(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_name: Optional[str] = None,
cluster_name: Optional[str] = None,
properties: Optional[ApplicationPropertiesArgs] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def Application(resource_name: str,
args: ApplicationArgs,
opts: Optional[ResourceOptions] = None)
func NewApplication(ctx *Context, name string, args ApplicationArgs, opts ...ResourceOption) (*Application, error)
public Application(string name, ApplicationArgs args, CustomResourceOptions? opts = null)
public Application(String name, ApplicationArgs args)
public Application(String name, ApplicationArgs args, CustomResourceOptions options)
type: azure-native:hdinsight:Application
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationArgs
- 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 ApplicationArgs
- 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 ApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApplicationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Application 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 Application resource accepts the following input properties:
- Cluster
Name string The name of the cluster.
- Resource
Group stringName The name of the resource group.
- Application
Name string The constant value for the application name.
- Properties
Pulumi.
Azure Native. HDInsight. Inputs. Application Properties Args The properties of the application.
- Dictionary<string, string>
The tags for the application.
- Cluster
Name string The name of the cluster.
- Resource
Group stringName The name of the resource group.
- Application
Name string The constant value for the application name.
- Properties
Application
Properties Args The properties of the application.
- map[string]string
The tags for the application.
- cluster
Name String The name of the cluster.
- resource
Group StringName The name of the resource group.
- application
Name String The constant value for the application name.
- properties
Application
Properties Args The properties of the application.
- Map<String,String>
The tags for the application.
- cluster
Name string The name of the cluster.
- resource
Group stringName The name of the resource group.
- application
Name string The constant value for the application name.
- properties
Application
Properties Args The properties of the application.
- {[key: string]: string}
The tags for the application.
- cluster_
name str The name of the cluster.
- resource_
group_ strname The name of the resource group.
- application_
name str The constant value for the application name.
- properties
Application
Properties Args The properties of the application.
- Mapping[str, str]
The tags for the application.
- cluster
Name String The name of the cluster.
- resource
Group StringName The name of the resource group.
- application
Name String The constant value for the application name.
- properties Property Map
The properties of the application.
- Map<String>
The tags for the application.
Outputs
All input properties are implicitly available as output properties. Additionally, the Application resource produces the following output properties:
Supporting Types
ApplicationGetEndpoint
- Destination
Port int The destination port to connect to.
- Location string
The location of the endpoint.
- Private
IPAddress string The private ip address of the endpoint.
- Public
Port int The public port to connect to.
- Destination
Port int The destination port to connect to.
- Location string
The location of the endpoint.
- Private
IPAddress string The private ip address of the endpoint.
- Public
Port int The public port to connect to.
- destination
Port Integer The destination port to connect to.
- location String
The location of the endpoint.
- private
IPAddress String The private ip address of the endpoint.
- public
Port Integer The public port to connect to.
- destination
Port number The destination port to connect to.
- location string
The location of the endpoint.
- private
IPAddress string The private ip address of the endpoint.
- public
Port number The public port to connect to.
- destination_
port int The destination port to connect to.
- location str
The location of the endpoint.
- private_
ip_ straddress The private ip address of the endpoint.
- public_
port int The public port to connect to.
- destination
Port Number The destination port to connect to.
- location String
The location of the endpoint.
- private
IPAddress String The private ip address of the endpoint.
- public
Port Number The public port to connect to.
ApplicationGetEndpointResponse
- Destination
Port int The destination port to connect to.
- Location string
The location of the endpoint.
- Private
IPAddress string The private ip address of the endpoint.
- Public
Port int The public port to connect to.
- Destination
Port int The destination port to connect to.
- Location string
The location of the endpoint.
- Private
IPAddress string The private ip address of the endpoint.
- Public
Port int The public port to connect to.
- destination
Port Integer The destination port to connect to.
- location String
The location of the endpoint.
- private
IPAddress String The private ip address of the endpoint.
- public
Port Integer The public port to connect to.
- destination
Port number The destination port to connect to.
- location string
The location of the endpoint.
- private
IPAddress string The private ip address of the endpoint.
- public
Port number The public port to connect to.
- destination_
port int The destination port to connect to.
- location str
The location of the endpoint.
- private_
ip_ straddress The private ip address of the endpoint.
- public_
port int The public port to connect to.
- destination
Port Number The destination port to connect to.
- location String
The location of the endpoint.
- private
IPAddress String The private ip address of the endpoint.
- public
Port Number The public port to connect to.
ApplicationGetHttpsEndpoint
- Access
Modes List<string> The list of access modes for the application.
- Destination
Port int The destination port to connect to.
- Disable
Gateway boolAuth The value indicates whether to disable GatewayAuth.
- Private
IPAddress string The private ip address of the endpoint.
- Sub
Domain stringSuffix The subdomain suffix of the application.
- Access
Modes []string The list of access modes for the application.
- Destination
Port int The destination port to connect to.
- Disable
Gateway boolAuth The value indicates whether to disable GatewayAuth.
- Private
IPAddress string The private ip address of the endpoint.
- Sub
Domain stringSuffix The subdomain suffix of the application.
- access
Modes List<String> The list of access modes for the application.
- destination
Port Integer The destination port to connect to.
- disable
Gateway BooleanAuth The value indicates whether to disable GatewayAuth.
- private
IPAddress String The private ip address of the endpoint.
- sub
Domain StringSuffix The subdomain suffix of the application.
- access
Modes string[] The list of access modes for the application.
- destination
Port number The destination port to connect to.
- disable
Gateway booleanAuth The value indicates whether to disable GatewayAuth.
- private
IPAddress string The private ip address of the endpoint.
- sub
Domain stringSuffix The subdomain suffix of the application.
- access_
modes Sequence[str] The list of access modes for the application.
- destination_
port int The destination port to connect to.
- disable_
gateway_ boolauth The value indicates whether to disable GatewayAuth.
- private_
ip_ straddress The private ip address of the endpoint.
- sub_
domain_ strsuffix The subdomain suffix of the application.
- access
Modes List<String> The list of access modes for the application.
- destination
Port Number The destination port to connect to.
- disable
Gateway BooleanAuth The value indicates whether to disable GatewayAuth.
- private
IPAddress String The private ip address of the endpoint.
- sub
Domain StringSuffix The subdomain suffix of the application.
ApplicationGetHttpsEndpointResponse
- Location string
The location of the endpoint.
- Public
Port int The public port to connect to.
- Access
Modes List<string> The list of access modes for the application.
- Destination
Port int The destination port to connect to.
- Disable
Gateway boolAuth The value indicates whether to disable GatewayAuth.
- Private
IPAddress string The private ip address of the endpoint.
- Sub
Domain stringSuffix The subdomain suffix of the application.
- Location string
The location of the endpoint.
- Public
Port int The public port to connect to.
- Access
Modes []string The list of access modes for the application.
- Destination
Port int The destination port to connect to.
- Disable
Gateway boolAuth The value indicates whether to disable GatewayAuth.
- Private
IPAddress string The private ip address of the endpoint.
- Sub
Domain stringSuffix The subdomain suffix of the application.
- location String
The location of the endpoint.
- public
Port Integer The public port to connect to.
- access
Modes List<String> The list of access modes for the application.
- destination
Port Integer The destination port to connect to.
- disable
Gateway BooleanAuth The value indicates whether to disable GatewayAuth.
- private
IPAddress String The private ip address of the endpoint.
- sub
Domain StringSuffix The subdomain suffix of the application.
- location string
The location of the endpoint.
- public
Port number The public port to connect to.
- access
Modes string[] The list of access modes for the application.
- destination
Port number The destination port to connect to.
- disable
Gateway booleanAuth The value indicates whether to disable GatewayAuth.
- private
IPAddress string The private ip address of the endpoint.
- sub
Domain stringSuffix The subdomain suffix of the application.
- location str
The location of the endpoint.
- public_
port int The public port to connect to.
- access_
modes Sequence[str] The list of access modes for the application.
- destination_
port int The destination port to connect to.
- disable_
gateway_ boolauth The value indicates whether to disable GatewayAuth.
- private_
ip_ straddress The private ip address of the endpoint.
- sub_
domain_ strsuffix The subdomain suffix of the application.
- location String
The location of the endpoint.
- public
Port Number The public port to connect to.
- access
Modes List<String> The list of access modes for the application.
- destination
Port Number The destination port to connect to.
- disable
Gateway BooleanAuth The value indicates whether to disable GatewayAuth.
- private
IPAddress String The private ip address of the endpoint.
- sub
Domain StringSuffix The subdomain suffix of the application.
ApplicationProperties
- Application
Type string The application type.
- Compute
Profile Pulumi.Azure Native. HDInsight. Inputs. Compute Profile The list of roles in the cluster.
- Errors
List<Pulumi.
Azure Native. HDInsight. Inputs. Errors> The list of errors.
- Https
Endpoints List<Pulumi.Azure Native. HDInsight. Inputs. Application Get Https Endpoint> The list of application HTTPS endpoints.
- Install
Script List<Pulumi.Actions Azure Native. HDInsight. Inputs. Runtime Script Action> The list of install script actions.
- Ssh
Endpoints List<Pulumi.Azure Native. HDInsight. Inputs. Application Get Endpoint> The list of application SSH endpoints.
- Uninstall
Script List<Pulumi.Actions Azure Native. HDInsight. Inputs. Runtime Script Action> The list of uninstall script actions.
- Application
Type string The application type.
- Compute
Profile ComputeProfile The list of roles in the cluster.
- Errors []Errors
The list of errors.
- Https
Endpoints []ApplicationGet Https Endpoint The list of application HTTPS endpoints.
- Install
Script []RuntimeActions Script Action The list of install script actions.
- Ssh
Endpoints []ApplicationGet Endpoint The list of application SSH endpoints.
- Uninstall
Script []RuntimeActions Script Action The list of uninstall script actions.
- application
Type String The application type.
- compute
Profile ComputeProfile The list of roles in the cluster.
- errors List<Errors>
The list of errors.
- https
Endpoints List<ApplicationGet Https Endpoint> The list of application HTTPS endpoints.
- install
Script List<RuntimeActions Script Action> The list of install script actions.
- ssh
Endpoints List<ApplicationGet Endpoint> The list of application SSH endpoints.
- uninstall
Script List<RuntimeActions Script Action> The list of uninstall script actions.
- application
Type string The application type.
- compute
Profile ComputeProfile The list of roles in the cluster.
- errors Errors[]
The list of errors.
- https
Endpoints ApplicationGet Https Endpoint[] The list of application HTTPS endpoints.
- install
Script RuntimeActions Script Action[] The list of install script actions.
- ssh
Endpoints ApplicationGet Endpoint[] The list of application SSH endpoints.
- uninstall
Script RuntimeActions Script Action[] The list of uninstall script actions.
- application_
type str The application type.
- compute_
profile ComputeProfile The list of roles in the cluster.
- errors Sequence[Errors]
The list of errors.
- https_
endpoints Sequence[ApplicationGet Https Endpoint] The list of application HTTPS endpoints.
- install_
script_ Sequence[Runtimeactions Script Action] The list of install script actions.
- ssh_
endpoints Sequence[ApplicationGet Endpoint] The list of application SSH endpoints.
- uninstall_
script_ Sequence[Runtimeactions Script Action] The list of uninstall script actions.
- application
Type String The application type.
- compute
Profile Property Map The list of roles in the cluster.
- errors List<Property Map>
The list of errors.
- https
Endpoints List<Property Map> The list of application HTTPS endpoints.
- install
Script List<Property Map>Actions The list of install script actions.
- ssh
Endpoints List<Property Map> The list of application SSH endpoints.
- uninstall
Script List<Property Map>Actions The list of uninstall script actions.
ApplicationPropertiesResponse
- Application
State string The application state.
- Created
Date string The application create date time.
- Marketplace
Identifier string The marketplace identifier.
- Provisioning
State string The provisioning state of the application.
- Application
Type string The application type.
- Compute
Profile Pulumi.Azure Native. HDInsight. Inputs. Compute Profile Response The list of roles in the cluster.
- Errors
List<Pulumi.
Azure Native. HDInsight. Inputs. Errors Response> The list of errors.
- Https
Endpoints List<Pulumi.Azure Native. HDInsight. Inputs. Application Get Https Endpoint Response> The list of application HTTPS endpoints.
- Install
Script List<Pulumi.Actions Azure Native. HDInsight. Inputs. Runtime Script Action Response> The list of install script actions.
- Ssh
Endpoints List<Pulumi.Azure Native. HDInsight. Inputs. Application Get Endpoint Response> The list of application SSH endpoints.
- Uninstall
Script List<Pulumi.Actions Azure Native. HDInsight. Inputs. Runtime Script Action Response> The list of uninstall script actions.
- Application
State string The application state.
- Created
Date string The application create date time.
- Marketplace
Identifier string The marketplace identifier.
- Provisioning
State string The provisioning state of the application.
- Application
Type string The application type.
- Compute
Profile ComputeProfile Response The list of roles in the cluster.
- Errors
[]Errors
Response The list of errors.
- Https
Endpoints []ApplicationGet Https Endpoint Response The list of application HTTPS endpoints.
- Install
Script []RuntimeActions Script Action Response The list of install script actions.
- Ssh
Endpoints []ApplicationGet Endpoint Response The list of application SSH endpoints.
- Uninstall
Script []RuntimeActions Script Action Response The list of uninstall script actions.
- application
State String The application state.
- created
Date String The application create date time.
- marketplace
Identifier String The marketplace identifier.
- provisioning
State String The provisioning state of the application.
- application
Type String The application type.
- compute
Profile ComputeProfile Response The list of roles in the cluster.
- errors
List<Errors
Response> The list of errors.
- https
Endpoints List<ApplicationGet Https Endpoint Response> The list of application HTTPS endpoints.
- install
Script List<RuntimeActions Script Action Response> The list of install script actions.
- ssh
Endpoints List<ApplicationGet Endpoint Response> The list of application SSH endpoints.
- uninstall
Script List<RuntimeActions Script Action Response> The list of uninstall script actions.
- application
State string The application state.
- created
Date string The application create date time.
- marketplace
Identifier string The marketplace identifier.
- provisioning
State string The provisioning state of the application.
- application
Type string The application type.
- compute
Profile ComputeProfile Response The list of roles in the cluster.
- errors
Errors
Response[] The list of errors.
- https
Endpoints ApplicationGet Https Endpoint Response[] The list of application HTTPS endpoints.
- install
Script RuntimeActions Script Action Response[] The list of install script actions.
- ssh
Endpoints ApplicationGet Endpoint Response[] The list of application SSH endpoints.
- uninstall
Script RuntimeActions Script Action Response[] The list of uninstall script actions.
- application_
state str The application state.
- created_
date str The application create date time.
- marketplace_
identifier str The marketplace identifier.
- provisioning_
state str The provisioning state of the application.
- application_
type str The application type.
- compute_
profile ComputeProfile Response The list of roles in the cluster.
- errors
Sequence[Errors
Response] The list of errors.
- https_
endpoints Sequence[ApplicationGet Https Endpoint Response] The list of application HTTPS endpoints.
- install_
script_ Sequence[Runtimeactions Script Action Response] The list of install script actions.
- ssh_
endpoints Sequence[ApplicationGet Endpoint Response] The list of application SSH endpoints.
- uninstall_
script_ Sequence[Runtimeactions Script Action Response] The list of uninstall script actions.
- application
State String The application state.
- created
Date String The application create date time.
- marketplace
Identifier String The marketplace identifier.
- provisioning
State String The provisioning state of the application.
- application
Type String The application type.
- compute
Profile Property Map The list of roles in the cluster.
- errors List<Property Map>
The list of errors.
- https
Endpoints List<Property Map> The list of application HTTPS endpoints.
- install
Script List<Property Map>Actions The list of install script actions.
- ssh
Endpoints List<Property Map> The list of application SSH endpoints.
- uninstall
Script List<Property Map>Actions The list of uninstall script actions.
Autoscale
- Capacity
Pulumi.
Azure Native. HDInsight. Inputs. Autoscale Capacity Parameters for load-based autoscale
- Recurrence
Pulumi.
Azure Native. HDInsight. Inputs. Autoscale Recurrence Parameters for schedule-based autoscale
- Capacity
Autoscale
Capacity Parameters for load-based autoscale
- Recurrence
Autoscale
Recurrence Parameters for schedule-based autoscale
- capacity
Autoscale
Capacity Parameters for load-based autoscale
- recurrence
Autoscale
Recurrence Parameters for schedule-based autoscale
- capacity
Autoscale
Capacity Parameters for load-based autoscale
- recurrence
Autoscale
Recurrence Parameters for schedule-based autoscale
- capacity
Autoscale
Capacity Parameters for load-based autoscale
- recurrence
Autoscale
Recurrence Parameters for schedule-based autoscale
- capacity Property Map
Parameters for load-based autoscale
- recurrence Property Map
Parameters for schedule-based autoscale
AutoscaleCapacity
- Max
Instance intCount The maximum instance count of the cluster
- Min
Instance intCount The minimum instance count of the cluster
- Max
Instance intCount The maximum instance count of the cluster
- Min
Instance intCount The minimum instance count of the cluster
- max
Instance IntegerCount The maximum instance count of the cluster
- min
Instance IntegerCount The minimum instance count of the cluster
- max
Instance numberCount The maximum instance count of the cluster
- min
Instance numberCount The minimum instance count of the cluster
- max_
instance_ intcount The maximum instance count of the cluster
- min_
instance_ intcount The minimum instance count of the cluster
- max
Instance NumberCount The maximum instance count of the cluster
- min
Instance NumberCount The minimum instance count of the cluster
AutoscaleCapacityResponse
- Max
Instance intCount The maximum instance count of the cluster
- Min
Instance intCount The minimum instance count of the cluster
- Max
Instance intCount The maximum instance count of the cluster
- Min
Instance intCount The minimum instance count of the cluster
- max
Instance IntegerCount The maximum instance count of the cluster
- min
Instance IntegerCount The minimum instance count of the cluster
- max
Instance numberCount The maximum instance count of the cluster
- min
Instance numberCount The minimum instance count of the cluster
- max_
instance_ intcount The maximum instance count of the cluster
- min_
instance_ intcount The minimum instance count of the cluster
- max
Instance NumberCount The maximum instance count of the cluster
- min
Instance NumberCount The minimum instance count of the cluster
AutoscaleRecurrence
- Schedule
List<Pulumi.
Azure Native. HDInsight. Inputs. Autoscale Schedule> Array of schedule-based autoscale rules
- Time
Zone string The time zone for the autoscale schedule times
- Schedule
[]Autoscale
Schedule Array of schedule-based autoscale rules
- Time
Zone string The time zone for the autoscale schedule times
- schedule
List<Autoscale
Schedule> Array of schedule-based autoscale rules
- time
Zone String The time zone for the autoscale schedule times
- schedule
Autoscale
Schedule[] Array of schedule-based autoscale rules
- time
Zone string The time zone for the autoscale schedule times
- schedule
Sequence[Autoscale
Schedule] Array of schedule-based autoscale rules
- time_
zone str The time zone for the autoscale schedule times
- schedule List<Property Map>
Array of schedule-based autoscale rules
- time
Zone String The time zone for the autoscale schedule times
AutoscaleRecurrenceResponse
- Schedule
List<Pulumi.
Azure Native. HDInsight. Inputs. Autoscale Schedule Response> Array of schedule-based autoscale rules
- Time
Zone string The time zone for the autoscale schedule times
- Schedule
[]Autoscale
Schedule Response Array of schedule-based autoscale rules
- Time
Zone string The time zone for the autoscale schedule times
- schedule
List<Autoscale
Schedule Response> Array of schedule-based autoscale rules
- time
Zone String The time zone for the autoscale schedule times
- schedule
Autoscale
Schedule Response[] Array of schedule-based autoscale rules
- time
Zone string The time zone for the autoscale schedule times
- schedule
Sequence[Autoscale
Schedule Response] Array of schedule-based autoscale rules
- time_
zone str The time zone for the autoscale schedule times
- schedule List<Property Map>
Array of schedule-based autoscale rules
- time
Zone String The time zone for the autoscale schedule times
AutoscaleResponse
- Capacity
Pulumi.
Azure Native. HDInsight. Inputs. Autoscale Capacity Response Parameters for load-based autoscale
- Recurrence
Pulumi.
Azure Native. HDInsight. Inputs. Autoscale Recurrence Response Parameters for schedule-based autoscale
- Capacity
Autoscale
Capacity Response Parameters for load-based autoscale
- Recurrence
Autoscale
Recurrence Response Parameters for schedule-based autoscale
- capacity
Autoscale
Capacity Response Parameters for load-based autoscale
- recurrence
Autoscale
Recurrence Response Parameters for schedule-based autoscale
- capacity
Autoscale
Capacity Response Parameters for load-based autoscale
- recurrence
Autoscale
Recurrence Response Parameters for schedule-based autoscale
- capacity
Autoscale
Capacity Response Parameters for load-based autoscale
- recurrence
Autoscale
Recurrence Response Parameters for schedule-based autoscale
- capacity Property Map
Parameters for load-based autoscale
- recurrence Property Map
Parameters for schedule-based autoscale
AutoscaleSchedule
- Days
List<Pulumi.
Azure Native. HDInsight. Days Of Week> Days of the week for a schedule-based autoscale rule
- Time
And Pulumi.Capacity Azure Native. HDInsight. Inputs. Autoscale Time And Capacity Time and capacity for a schedule-based autoscale rule
- Days
[]Days
Of Week Days of the week for a schedule-based autoscale rule
- Time
And AutoscaleCapacity Time And Capacity Time and capacity for a schedule-based autoscale rule
- days
List<Days
Of Week> Days of the week for a schedule-based autoscale rule
- time
And AutoscaleCapacity Time And Capacity Time and capacity for a schedule-based autoscale rule
- days
Days
Of Week[] Days of the week for a schedule-based autoscale rule
- time
And AutoscaleCapacity Time And Capacity Time and capacity for a schedule-based autoscale rule
- days
Sequence[Days
Of Week] Days of the week for a schedule-based autoscale rule
- time_
and_ Autoscalecapacity Time And Capacity Time and capacity for a schedule-based autoscale rule
- days List<"Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday">
Days of the week for a schedule-based autoscale rule
- time
And Property MapCapacity Time and capacity for a schedule-based autoscale rule
AutoscaleScheduleResponse
- Days List<string>
Days of the week for a schedule-based autoscale rule
- Time
And Pulumi.Capacity Azure Native. HDInsight. Inputs. Autoscale Time And Capacity Response Time and capacity for a schedule-based autoscale rule
- Days []string
Days of the week for a schedule-based autoscale rule
- Time
And AutoscaleCapacity Time And Capacity Response Time and capacity for a schedule-based autoscale rule
- days List<String>
Days of the week for a schedule-based autoscale rule
- time
And AutoscaleCapacity Time And Capacity Response Time and capacity for a schedule-based autoscale rule
- days string[]
Days of the week for a schedule-based autoscale rule
- time
And AutoscaleCapacity Time And Capacity Response Time and capacity for a schedule-based autoscale rule
- days Sequence[str]
Days of the week for a schedule-based autoscale rule
- time_
and_ Autoscalecapacity Time And Capacity Response Time and capacity for a schedule-based autoscale rule
- days List<String>
Days of the week for a schedule-based autoscale rule
- time
And Property MapCapacity Time and capacity for a schedule-based autoscale rule
AutoscaleTimeAndCapacity
- Max
Instance intCount The maximum instance count of the cluster
- Min
Instance intCount The minimum instance count of the cluster
- Time string
24-hour time in the form xx:xx
- Max
Instance intCount The maximum instance count of the cluster
- Min
Instance intCount The minimum instance count of the cluster
- Time string
24-hour time in the form xx:xx
- max
Instance IntegerCount The maximum instance count of the cluster
- min
Instance IntegerCount The minimum instance count of the cluster
- time String
24-hour time in the form xx:xx
- max
Instance numberCount The maximum instance count of the cluster
- min
Instance numberCount The minimum instance count of the cluster
- time string
24-hour time in the form xx:xx
- max_
instance_ intcount The maximum instance count of the cluster
- min_
instance_ intcount The minimum instance count of the cluster
- time str
24-hour time in the form xx:xx
- max
Instance NumberCount The maximum instance count of the cluster
- min
Instance NumberCount The minimum instance count of the cluster
- time String
24-hour time in the form xx:xx
AutoscaleTimeAndCapacityResponse
- Max
Instance intCount The maximum instance count of the cluster
- Min
Instance intCount The minimum instance count of the cluster
- Time string
24-hour time in the form xx:xx
- Max
Instance intCount The maximum instance count of the cluster
- Min
Instance intCount The minimum instance count of the cluster
- Time string
24-hour time in the form xx:xx
- max
Instance IntegerCount The maximum instance count of the cluster
- min
Instance IntegerCount The minimum instance count of the cluster
- time String
24-hour time in the form xx:xx
- max
Instance numberCount The maximum instance count of the cluster
- min
Instance numberCount The minimum instance count of the cluster
- time string
24-hour time in the form xx:xx
- max_
instance_ intcount The maximum instance count of the cluster
- min_
instance_ intcount The minimum instance count of the cluster
- time str
24-hour time in the form xx:xx
- max
Instance NumberCount The maximum instance count of the cluster
- min
Instance NumberCount The minimum instance count of the cluster
- time String
24-hour time in the form xx:xx
ComputeProfile
- Roles
List<Pulumi.
Azure Native. HDInsight. Inputs. Role> The list of roles in the cluster.
- roles List<Role>
The list of roles in the cluster.
- roles Sequence[Role]
The list of roles in the cluster.
- roles List<Property Map>
The list of roles in the cluster.
ComputeProfileResponse
- Roles
List<Pulumi.
Azure Native. HDInsight. Inputs. Role Response> The list of roles in the cluster.
- Roles
[]Role
Response The list of roles in the cluster.
- roles
List<Role
Response> The list of roles in the cluster.
- roles
Role
Response[] The list of roles in the cluster.
- roles
Sequence[Role
Response] The list of roles in the cluster.
- roles List<Property Map>
The list of roles in the cluster.
DataDisksGroups
- Disks
Per intNode The number of disks per node.
- Disks
Per intNode The number of disks per node.
- disks
Per IntegerNode The number of disks per node.
- disks
Per numberNode The number of disks per node.
- disks_
per_ intnode The number of disks per node.
- disks
Per NumberNode The number of disks per node.
DataDisksGroupsResponse
- Disk
Size intGB ReadOnly. The DiskSize in GB. Do not set this value.
- Storage
Account stringType ReadOnly. The storage account type. Do not set this value.
- Disks
Per intNode The number of disks per node.
- Disk
Size intGB ReadOnly. The DiskSize in GB. Do not set this value.
- Storage
Account stringType ReadOnly. The storage account type. Do not set this value.
- Disks
Per intNode The number of disks per node.
- disk
Size IntegerGB ReadOnly. The DiskSize in GB. Do not set this value.
- storage
Account StringType ReadOnly. The storage account type. Do not set this value.
- disks
Per IntegerNode The number of disks per node.
- disk
Size numberGB ReadOnly. The DiskSize in GB. Do not set this value.
- storage
Account stringType ReadOnly. The storage account type. Do not set this value.
- disks
Per numberNode The number of disks per node.
- disk_
size_ intgb ReadOnly. The DiskSize in GB. Do not set this value.
- storage_
account_ strtype ReadOnly. The storage account type. Do not set this value.
- disks_
per_ intnode The number of disks per node.
- disk
Size NumberGB ReadOnly. The DiskSize in GB. Do not set this value.
- storage
Account StringType ReadOnly. The storage account type. Do not set this value.
- disks
Per NumberNode The number of disks per node.
DaysOfWeek
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- Sunday
- Sunday
- Days
Of Week Monday - Monday
- Days
Of Week Tuesday - Tuesday
- Days
Of Week Wednesday - Wednesday
- Days
Of Week Thursday - Thursday
- Days
Of Week Friday - Friday
- Days
Of Week Saturday - Saturday
- Days
Of Week Sunday - Sunday
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- Sunday
- Sunday
- Monday
- Monday
- Tuesday
- Tuesday
- Wednesday
- Wednesday
- Thursday
- Thursday
- Friday
- Friday
- Saturday
- Saturday
- Sunday
- Sunday
- MONDAY
- Monday
- TUESDAY
- Tuesday
- WEDNESDAY
- Wednesday
- THURSDAY
- Thursday
- FRIDAY
- Friday
- SATURDAY
- Saturday
- SUNDAY
- Sunday
- "Monday"
- Monday
- "Tuesday"
- Tuesday
- "Wednesday"
- Wednesday
- "Thursday"
- Thursday
- "Friday"
- Friday
- "Saturday"
- Saturday
- "Sunday"
- Sunday
Errors
ErrorsResponse
HardwareProfile
- Vm
Size string The size of the VM
- Vm
Size string The size of the VM
- vm
Size String The size of the VM
- vm
Size string The size of the VM
- vm_
size str The size of the VM
- vm
Size String The size of the VM
HardwareProfileResponse
- Vm
Size string The size of the VM
- Vm
Size string The size of the VM
- vm
Size String The size of the VM
- vm
Size string The size of the VM
- vm_
size str The size of the VM
- vm
Size String The size of the VM
LinuxOperatingSystemProfile
- Password string
The password.
- Ssh
Profile Pulumi.Azure Native. HDInsight. Inputs. Ssh Profile The SSH profile.
- Username string
The username.
- Password string
The password.
- Ssh
Profile SshProfile The SSH profile.
- Username string
The username.
- password String
The password.
- ssh
Profile SshProfile The SSH profile.
- username String
The username.
- password string
The password.
- ssh
Profile SshProfile The SSH profile.
- username string
The username.
- password str
The password.
- ssh_
profile SshProfile The SSH profile.
- username str
The username.
- password String
The password.
- ssh
Profile Property Map The SSH profile.
- username String
The username.
LinuxOperatingSystemProfileResponse
- Password string
The password.
- Ssh
Profile Pulumi.Azure Native. HDInsight. Inputs. Ssh Profile Response The SSH profile.
- Username string
The username.
- Password string
The password.
- Ssh
Profile SshProfile Response The SSH profile.
- Username string
The username.
- password String
The password.
- ssh
Profile SshProfile Response The SSH profile.
- username String
The username.
- password string
The password.
- ssh
Profile SshProfile Response The SSH profile.
- username string
The username.
- password str
The password.
- ssh_
profile SshProfile Response The SSH profile.
- username str
The username.
- password String
The password.
- ssh
Profile Property Map The SSH profile.
- username String
The username.
OsProfile
- Linux
Operating LinuxSystem Profile Operating System Profile The Linux OS profile.
- linux
Operating LinuxSystem Profile Operating System Profile The Linux OS profile.
- linux
Operating LinuxSystem Profile Operating System Profile The Linux OS profile.
- linux_
operating_ Linuxsystem_ profile Operating System Profile The Linux OS profile.
- linux
Operating Property MapSystem Profile The Linux OS profile.
OsProfileResponse
- Linux
Operating LinuxSystem Profile Operating System Profile Response The Linux OS profile.
- linux
Operating LinuxSystem Profile Operating System Profile Response The Linux OS profile.
- linux
Operating LinuxSystem Profile Operating System Profile Response The Linux OS profile.
- linux_
operating_ Linuxsystem_ profile Operating System Profile Response The Linux OS profile.
- linux
Operating Property MapSystem Profile The Linux OS profile.
Role
- Autoscale
Configuration Pulumi.Azure Native. HDInsight. Inputs. Autoscale The autoscale configurations.
- Data
Disks List<Pulumi.Groups Azure Native. HDInsight. Inputs. Data Disks Groups> The data disks groups for the role.
- Encrypt
Data boolDisks Indicates whether encrypt the data disks.
- Hardware
Profile Pulumi.Azure Native. HDInsight. Inputs. Hardware Profile The hardware profile.
- Min
Instance intCount The minimum instance count of the cluster.
- Name string
The name of the role.
- Os
Profile Pulumi.Azure Native. HDInsight. Inputs. Os Profile The operating system profile.
- Script
Actions List<Pulumi.Azure Native. HDInsight. Inputs. Script Action> The list of script actions on the role.
- Target
Instance intCount The instance count of the cluster.
- VMGroup
Name string The name of the virtual machine group.
- Virtual
Network Pulumi.Profile Azure Native. HDInsight. Inputs. Virtual Network Profile The virtual network profile.
- Autoscale
Configuration Autoscale The autoscale configurations.
- Data
Disks []DataGroups Disks Groups The data disks groups for the role.
- Encrypt
Data boolDisks Indicates whether encrypt the data disks.
- Hardware
Profile HardwareProfile The hardware profile.
- Min
Instance intCount The minimum instance count of the cluster.
- Name string
The name of the role.
- Os
Profile OsProfile The operating system profile.
- Script
Actions []ScriptAction The list of script actions on the role.
- Target
Instance intCount The instance count of the cluster.
- VMGroup
Name string The name of the virtual machine group.
- Virtual
Network VirtualProfile Network Profile The virtual network profile.
- autoscale
Configuration Autoscale The autoscale configurations.
- data
Disks List<DataGroups Disks Groups> The data disks groups for the role.
- encrypt
Data BooleanDisks Indicates whether encrypt the data disks.
- hardware
Profile HardwareProfile The hardware profile.
- min
Instance IntegerCount The minimum instance count of the cluster.
- name String
The name of the role.
- os
Profile OsProfile The operating system profile.
- script
Actions List<ScriptAction> The list of script actions on the role.
- target
Instance IntegerCount The instance count of the cluster.
- v
MGroup StringName The name of the virtual machine group.
- virtual
Network VirtualProfile Network Profile The virtual network profile.
- autoscale
Configuration Autoscale The autoscale configurations.
- data
Disks DataGroups Disks Groups[] The data disks groups for the role.
- encrypt
Data booleanDisks Indicates whether encrypt the data disks.
- hardware
Profile HardwareProfile The hardware profile.
- min
Instance numberCount The minimum instance count of the cluster.
- name string
The name of the role.
- os
Profile OsProfile The operating system profile.
- script
Actions ScriptAction[] The list of script actions on the role.
- target
Instance numberCount The instance count of the cluster.
- v
MGroup stringName The name of the virtual machine group.
- virtual
Network VirtualProfile Network Profile The virtual network profile.
- autoscale_
configuration Autoscale The autoscale configurations.
- data_
disks_ Sequence[Datagroups Disks Groups] The data disks groups for the role.
- encrypt_
data_ booldisks Indicates whether encrypt the data disks.
- hardware_
profile HardwareProfile The hardware profile.
- min_
instance_ intcount The minimum instance count of the cluster.
- name str
The name of the role.
- os_
profile OsProfile The operating system profile.
- script_
actions Sequence[ScriptAction] The list of script actions on the role.
- target_
instance_ intcount The instance count of the cluster.
- v_
m_ strgroup_ name The name of the virtual machine group.
- virtual_
network_ Virtualprofile Network Profile The virtual network profile.
- autoscale
Configuration Property Map The autoscale configurations.
- data
Disks List<Property Map>Groups The data disks groups for the role.
- encrypt
Data BooleanDisks Indicates whether encrypt the data disks.
- hardware
Profile Property Map The hardware profile.
- min
Instance NumberCount The minimum instance count of the cluster.
- name String
The name of the role.
- os
Profile Property Map The operating system profile.
- script
Actions List<Property Map> The list of script actions on the role.
- target
Instance NumberCount The instance count of the cluster.
- v
MGroup StringName The name of the virtual machine group.
- virtual
Network Property MapProfile The virtual network profile.
RoleResponse
- Autoscale
Configuration Pulumi.Azure Native. HDInsight. Inputs. Autoscale Response The autoscale configurations.
- Data
Disks List<Pulumi.Groups Azure Native. HDInsight. Inputs. Data Disks Groups Response> The data disks groups for the role.
- Encrypt
Data boolDisks Indicates whether encrypt the data disks.
- Hardware
Profile Pulumi.Azure Native. HDInsight. Inputs. Hardware Profile Response The hardware profile.
- Min
Instance intCount The minimum instance count of the cluster.
- Name string
The name of the role.
- Os
Profile Pulumi.Azure Native. HDInsight. Inputs. Os Profile Response The operating system profile.
- Script
Actions List<Pulumi.Azure Native. HDInsight. Inputs. Script Action Response> The list of script actions on the role.
- Target
Instance intCount The instance count of the cluster.
- VMGroup
Name string The name of the virtual machine group.
- Virtual
Network Pulumi.Profile Azure Native. HDInsight. Inputs. Virtual Network Profile Response The virtual network profile.
- Autoscale
Configuration AutoscaleResponse The autoscale configurations.
- Data
Disks []DataGroups Disks Groups Response The data disks groups for the role.
- Encrypt
Data boolDisks Indicates whether encrypt the data disks.
- Hardware
Profile HardwareProfile Response The hardware profile.
- Min
Instance intCount The minimum instance count of the cluster.
- Name string
The name of the role.
- Os
Profile OsProfile Response The operating system profile.
- Script
Actions []ScriptAction Response The list of script actions on the role.
- Target
Instance intCount The instance count of the cluster.
- VMGroup
Name string The name of the virtual machine group.
- Virtual
Network VirtualProfile Network Profile Response The virtual network profile.
- autoscale
Configuration AutoscaleResponse The autoscale configurations.
- data
Disks List<DataGroups Disks Groups Response> The data disks groups for the role.
- encrypt
Data BooleanDisks Indicates whether encrypt the data disks.
- hardware
Profile HardwareProfile Response The hardware profile.
- min
Instance IntegerCount The minimum instance count of the cluster.
- name String
The name of the role.
- os
Profile OsProfile Response The operating system profile.
- script
Actions List<ScriptAction Response> The list of script actions on the role.
- target
Instance IntegerCount The instance count of the cluster.
- v
MGroup StringName The name of the virtual machine group.
- virtual
Network VirtualProfile Network Profile Response The virtual network profile.
- autoscale
Configuration AutoscaleResponse The autoscale configurations.
- data
Disks DataGroups Disks Groups Response[] The data disks groups for the role.
- encrypt
Data booleanDisks Indicates whether encrypt the data disks.
- hardware
Profile HardwareProfile Response The hardware profile.
- min
Instance numberCount The minimum instance count of the cluster.
- name string
The name of the role.
- os
Profile OsProfile Response The operating system profile.
- script
Actions ScriptAction Response[] The list of script actions on the role.
- target
Instance numberCount The instance count of the cluster.
- v
MGroup stringName The name of the virtual machine group.
- virtual
Network VirtualProfile Network Profile Response The virtual network profile.
- autoscale_
configuration AutoscaleResponse The autoscale configurations.
- data_
disks_ Sequence[Datagroups Disks Groups Response] The data disks groups for the role.
- encrypt_
data_ booldisks Indicates whether encrypt the data disks.
- hardware_
profile HardwareProfile Response The hardware profile.
- min_
instance_ intcount The minimum instance count of the cluster.
- name str
The name of the role.
- os_
profile OsProfile Response The operating system profile.
- script_
actions Sequence[ScriptAction Response] The list of script actions on the role.
- target_
instance_ intcount The instance count of the cluster.
- v_
m_ strgroup_ name The name of the virtual machine group.
- virtual_
network_ Virtualprofile Network Profile Response The virtual network profile.
- autoscale
Configuration Property Map The autoscale configurations.
- data
Disks List<Property Map>Groups The data disks groups for the role.
- encrypt
Data BooleanDisks Indicates whether encrypt the data disks.
- hardware
Profile Property Map The hardware profile.
- min
Instance NumberCount The minimum instance count of the cluster.
- name String
The name of the role.
- os
Profile Property Map The operating system profile.
- script
Actions List<Property Map> The list of script actions on the role.
- target
Instance NumberCount The instance count of the cluster.
- v
MGroup StringName The name of the virtual machine group.
- virtual
Network Property MapProfile The virtual network profile.
RuntimeScriptAction
- Name string
The name of the script action.
- Roles List<string>
The list of roles where script will be executed.
- Uri string
The URI to the script.
- Parameters string
The parameters for the script
- Name string
The name of the script action.
- Roles []string
The list of roles where script will be executed.
- Uri string
The URI to the script.
- Parameters string
The parameters for the script
- name String
The name of the script action.
- roles List<String>
The list of roles where script will be executed.
- uri String
The URI to the script.
- parameters String
The parameters for the script
- name string
The name of the script action.
- roles string[]
The list of roles where script will be executed.
- uri string
The URI to the script.
- parameters string
The parameters for the script
- name str
The name of the script action.
- roles Sequence[str]
The list of roles where script will be executed.
- uri str
The URI to the script.
- parameters str
The parameters for the script
- name String
The name of the script action.
- roles List<String>
The list of roles where script will be executed.
- uri String
The URI to the script.
- parameters String
The parameters for the script
RuntimeScriptActionResponse
- Application
Name string The application name of the script action, if any.
- Name string
The name of the script action.
- Roles List<string>
The list of roles where script will be executed.
- Uri string
The URI to the script.
- Parameters string
The parameters for the script
- Application
Name string The application name of the script action, if any.
- Name string
The name of the script action.
- Roles []string
The list of roles where script will be executed.
- Uri string
The URI to the script.
- Parameters string
The parameters for the script
- application
Name String The application name of the script action, if any.
- name String
The name of the script action.
- roles List<String>
The list of roles where script will be executed.
- uri String
The URI to the script.
- parameters String
The parameters for the script
- application
Name string The application name of the script action, if any.
- name string
The name of the script action.
- roles string[]
The list of roles where script will be executed.
- uri string
The URI to the script.
- parameters string
The parameters for the script
- application_
name str The application name of the script action, if any.
- name str
The name of the script action.
- roles Sequence[str]
The list of roles where script will be executed.
- uri str
The URI to the script.
- parameters str
The parameters for the script
- application
Name String The application name of the script action, if any.
- name String
The name of the script action.
- roles List<String>
The list of roles where script will be executed.
- uri String
The URI to the script.
- parameters String
The parameters for the script
ScriptAction
- Name string
The name of the script action.
- Parameters string
The parameters for the script provided.
- Uri string
The URI to the script.
- Name string
The name of the script action.
- Parameters string
The parameters for the script provided.
- Uri string
The URI to the script.
- name String
The name of the script action.
- parameters String
The parameters for the script provided.
- uri String
The URI to the script.
- name string
The name of the script action.
- parameters string
The parameters for the script provided.
- uri string
The URI to the script.
- name str
The name of the script action.
- parameters str
The parameters for the script provided.
- uri str
The URI to the script.
- name String
The name of the script action.
- parameters String
The parameters for the script provided.
- uri String
The URI to the script.
ScriptActionResponse
- Name string
The name of the script action.
- Parameters string
The parameters for the script provided.
- Uri string
The URI to the script.
- Name string
The name of the script action.
- Parameters string
The parameters for the script provided.
- Uri string
The URI to the script.
- name String
The name of the script action.
- parameters String
The parameters for the script provided.
- uri String
The URI to the script.
- name string
The name of the script action.
- parameters string
The parameters for the script provided.
- uri string
The URI to the script.
- name str
The name of the script action.
- parameters str
The parameters for the script provided.
- uri str
The URI to the script.
- name String
The name of the script action.
- parameters String
The parameters for the script provided.
- uri String
The URI to the script.
SshProfile
- Public
Keys List<Pulumi.Azure Native. HDInsight. Inputs. Ssh Public Key> The list of SSH public keys.
- Public
Keys []SshPublic Key The list of SSH public keys.
- public
Keys List<SshPublic Key> The list of SSH public keys.
- public
Keys SshPublic Key[] The list of SSH public keys.
- public_
keys Sequence[SshPublic Key] The list of SSH public keys.
- public
Keys List<Property Map> The list of SSH public keys.
SshProfileResponse
- Public
Keys List<Pulumi.Azure Native. HDInsight. Inputs. Ssh Public Key Response> The list of SSH public keys.
- Public
Keys []SshPublic Key Response The list of SSH public keys.
- public
Keys List<SshPublic Key Response> The list of SSH public keys.
- public
Keys SshPublic Key Response[] The list of SSH public keys.
- public_
keys Sequence[SshPublic Key Response] The list of SSH public keys.
- public
Keys List<Property Map> The list of SSH public keys.
SshPublicKey
- Certificate
Data string The certificate for SSH.
- Certificate
Data string The certificate for SSH.
- certificate
Data String The certificate for SSH.
- certificate
Data string The certificate for SSH.
- certificate_
data str The certificate for SSH.
- certificate
Data String The certificate for SSH.
SshPublicKeyResponse
- Certificate
Data string The certificate for SSH.
- Certificate
Data string The certificate for SSH.
- certificate
Data String The certificate for SSH.
- certificate
Data string The certificate for SSH.
- certificate_
data str The certificate for SSH.
- certificate
Data String The certificate for SSH.
VirtualNetworkProfile
VirtualNetworkProfileResponse
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:hdinsight:Application hue /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.HDInsight/clusters/cluster1/applications/hue
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0