Show / Hide Table of Contents

Class Cluster

Manages a Service Fabric Cluster.

Inheritance
System.Object
Resource
CustomResource
Cluster
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.ServiceFabric
Assembly: Pulumi.Azure.dll
Syntax
public class Cluster : CustomResource

Constructors

View Source

Cluster(String, ClusterArgs, CustomResourceOptions)

Create a Cluster resource with the given unique name, arguments, and options.

Declaration
public Cluster(string name, ClusterArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

ClusterArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

AddOnFeatures

A List of one or more features which should be enabled, such as DnsService.

Declaration
public Output<ImmutableArray<string>> AddOnFeatures { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<System.String>>
View Source

AzureActiveDirectory

An azure_active_directory block as defined below.

Declaration
public Output<ClusterAzureActiveDirectory> AzureActiveDirectory { get; }
Property Value
Type Description
Output<ClusterAzureActiveDirectory>
View Source

Certificate

A certificate block as defined below. Conflicts with certificate_common_names.

Declaration
public Output<ClusterCertificate> Certificate { get; }
Property Value
Type Description
Output<ClusterCertificate>
View Source

CertificateCommonNames

A certificate_common_names block as defined below. Conflicts with certificate.

Declaration
public Output<ClusterCertificateCommonNames> CertificateCommonNames { get; }
Property Value
Type Description
Output<ClusterCertificateCommonNames>
View Source

ClientCertificateCommonNames

A client_certificate_common_name block as defined below.

Declaration
public Output<ImmutableArray<ClusterClientCertificateCommonName>> ClientCertificateCommonNames { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<ClusterClientCertificateCommonName>>
View Source

ClientCertificateThumbprints

One or two client_certificate_thumbprint blocks as defined below.

Declaration
public Output<ImmutableArray<ClusterClientCertificateThumbprint>> ClientCertificateThumbprints { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<ClusterClientCertificateThumbprint>>
View Source

ClusterCodeVersion

Required if Upgrade Mode set to Manual, Specifies the Version of the Cluster Code of the cluster.

Declaration
public Output<string> ClusterCodeVersion { get; }
Property Value
Type Description
Output<System.String>
View Source

ClusterEndpoint

The Cluster Endpoint for this Service Fabric Cluster.

Declaration
public Output<string> ClusterEndpoint { get; }
Property Value
Type Description
Output<System.String>
View Source

DiagnosticsConfig

A diagnostics_config block as defined below. Changing this forces a new resource to be created.

Declaration
public Output<ClusterDiagnosticsConfig> DiagnosticsConfig { get; }
Property Value
Type Description
Output<ClusterDiagnosticsConfig>
View Source

FabricSettings

One or more fabric_settings blocks as defined below.

Declaration
public Output<ImmutableArray<ClusterFabricSetting>> FabricSettings { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<ClusterFabricSetting>>
View Source

Location

Specifies the Azure Region where the Service Fabric Cluster should exist. Changing this forces a new resource to be created.

Declaration
public Output<string> Location { get; }
Property Value
Type Description
Output<System.String>
View Source

ManagementEndpoint

Specifies the Management Endpoint of the cluster such as http://example.com. Changing this forces a new resource to be created.

Declaration
public Output<string> ManagementEndpoint { get; }
Property Value
Type Description
Output<System.String>
View Source

Name

The name of the Service Fabric Cluster. Changing this forces a new resource to be created.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>
View Source

NodeTypes

One or more node_type blocks as defined below.

Declaration
public Output<ImmutableArray<ClusterNodeType>> NodeTypes { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<ClusterNodeType>>
View Source

ReliabilityLevel

Specifies the Reliability Level of the Cluster. Possible values include None, Bronze, Silver, Gold and Platinum.

Declaration
public Output<string> ReliabilityLevel { get; }
Property Value
Type Description
Output<System.String>
View Source

ResourceGroupName

The name of the Resource Group in which the Service Fabric Cluster exists. Changing this forces a new resource to be created.

Declaration
public Output<string> ResourceGroupName { get; }
Property Value
Type Description
Output<System.String>
View Source

ReverseProxyCertificate

A reverse_proxy_certificate block as defined below.

Declaration
public Output<ClusterReverseProxyCertificate> ReverseProxyCertificate { get; }
Property Value
Type Description
Output<ClusterReverseProxyCertificate>
View Source

Tags

A mapping of tags to assign to the resource.

Declaration
public Output<ImmutableDictionary<string, string>> Tags { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableDictionary<System.String, System.String>>
View Source

UpgradeMode

Specifies the Upgrade Mode of the cluster. Possible values are Automatic or Manual.

Declaration
public Output<string> UpgradeMode { get; }
Property Value
Type Description
Output<System.String>
View Source

VmImage

Specifies the Image expected for the Service Fabric Cluster, such as Windows. Changing this forces a new resource to be created.

Declaration
public Output<string> VmImage { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, ClusterState, CustomResourceOptions)

Get an existing Cluster resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static Cluster Get(string name, Input<string> id, ClusterState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

ClusterState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
Cluster
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.