Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.servicefabric.kotlin
import com.pulumi.azure.servicefabric.ClusterArgs.builder
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterAzureActiveDirectoryArgs
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterAzureActiveDirectoryArgsBuilder
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterCertificateArgs
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterCertificateArgsBuilder
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterCertificateCommonNamesArgs
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterCertificateCommonNamesArgsBuilder
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterClientCertificateCommonNameArgs
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterClientCertificateCommonNameArgsBuilder
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterClientCertificateThumbprintArgs
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterClientCertificateThumbprintArgsBuilder
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterDiagnosticsConfigArgs
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterDiagnosticsConfigArgsBuilder
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterFabricSettingArgs
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterFabricSettingArgsBuilder
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterNodeTypeArgs
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterNodeTypeArgsBuilder
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterReverseProxyCertificateArgs
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterReverseProxyCertificateArgsBuilder
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterReverseProxyCertificateCommonNamesArgs
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterReverseProxyCertificateCommonNamesArgsBuilder
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterUpgradePolicyArgs
import com.pulumi.azure.servicefabric.kotlin.inputs.ClusterUpgradePolicyArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* Manages a Service Fabric Cluster.
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as azure from "@pulumi/azure";
* const example = new azure.core.ResourceGroup("example", {
* name: "example-resources",
* location: "West Europe",
* });
* const exampleCluster = new azure.servicefabric.Cluster("example", {
* name: "example-servicefabric",
* resourceGroupName: example.name,
* location: example.location,
* reliabilityLevel: "Bronze",
* upgradeMode: "Manual",
* clusterCodeVersion: "7.1.456.959",
* vmImage: "Windows",
* managementEndpoint: "https://example:80",
* nodeTypes: [{
* name: "first",
* instanceCount: 3,
* isPrimary: true,
* clientEndpointPort: 2020,
* httpEndpointPort: 80,
* }],
* });
* ```
* ```python
* import pulumi
* import pulumi_azure as azure
* example = azure.core.ResourceGroup("example",
* name="example-resources",
* location="West Europe")
* example_cluster = azure.servicefabric.Cluster("example",
* name="example-servicefabric",
* resource_group_name=example.name,
* location=example.location,
* reliability_level="Bronze",
* upgrade_mode="Manual",
* cluster_code_version="7.1.456.959",
* vm_image="Windows",
* management_endpoint="https://example:80",
* node_types=[azure.servicefabric.ClusterNodeTypeArgs(
* name="first",
* instance_count=3,
* is_primary=True,
* client_endpoint_port=2020,
* http_endpoint_port=80,
* )])
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Azure = Pulumi.Azure;
* return await Deployment.RunAsync(() =>
* {
* var example = new Azure.Core.ResourceGroup("example", new()
* {
* Name = "example-resources",
* Location = "West Europe",
* });
* var exampleCluster = new Azure.ServiceFabric.Cluster("example", new()
* {
* Name = "example-servicefabric",
* ResourceGroupName = example.Name,
* Location = example.Location,
* ReliabilityLevel = "Bronze",
* UpgradeMode = "Manual",
* ClusterCodeVersion = "7.1.456.959",
* VmImage = "Windows",
* ManagementEndpoint = "https://example:80",
* NodeTypes = new[]
* {
* new Azure.ServiceFabric.Inputs.ClusterNodeTypeArgs
* {
* Name = "first",
* InstanceCount = 3,
* IsPrimary = true,
* ClientEndpointPort = 2020,
* HttpEndpointPort = 80,
* },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
* "github.com/pulumi/pulumi-azure/sdk/v5/go/azure/servicefabric"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
* Name: pulumi.String("example-resources"),
* Location: pulumi.String("West Europe"),
* })
* if err != nil {
* return err
* }
* _, err = servicefabric.NewCluster(ctx, "example", &servicefabric.ClusterArgs{
* Name: pulumi.String("example-servicefabric"),
* ResourceGroupName: example.Name,
* Location: example.Location,
* ReliabilityLevel: pulumi.String("Bronze"),
* UpgradeMode: pulumi.String("Manual"),
* ClusterCodeVersion: pulumi.String("7.1.456.959"),
* VmImage: pulumi.String("Windows"),
* ManagementEndpoint: pulumi.String("https://example:80"),
* NodeTypes: servicefabric.ClusterNodeTypeArray{
* &servicefabric.ClusterNodeTypeArgs{
* Name: pulumi.String("first"),
* InstanceCount: pulumi.Int(3),
* IsPrimary: pulumi.Bool(true),
* ClientEndpointPort: pulumi.Int(2020),
* HttpEndpointPort: pulumi.Int(80),
* },
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azure.core.ResourceGroup;
* import com.pulumi.azure.core.ResourceGroupArgs;
* import com.pulumi.azure.servicefabric.Cluster;
* import com.pulumi.azure.servicefabric.ClusterArgs;
* import com.pulumi.azure.servicefabric.inputs.ClusterNodeTypeArgs;
* 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
* .name("example-resources")
* .location("West Europe")
* .build());
* var exampleCluster = new Cluster("exampleCluster", ClusterArgs.builder()
* .name("example-servicefabric")
* .resourceGroupName(example.name())
* .location(example.location())
* .reliabilityLevel("Bronze")
* .upgradeMode("Manual")
* .clusterCodeVersion("7.1.456.959")
* .vmImage("Windows")
* .managementEndpoint("https://example:80")
* .nodeTypes(ClusterNodeTypeArgs.builder()
* .name("first")
* .instanceCount(3)
* .isPrimary(true)
* .clientEndpointPort(2020)
* .httpEndpointPort(80)
* .build())
* .build());
* }
* }
* ```
* ```yaml
* resources:
* example:
* type: azure:core:ResourceGroup
* properties:
* name: example-resources
* location: West Europe
* exampleCluster:
* type: azure:servicefabric:Cluster
* name: example
* properties:
* name: example-servicefabric
* resourceGroupName: ${example.name}
* location: ${example.location}
* reliabilityLevel: Bronze
* upgradeMode: Manual
* clusterCodeVersion: 7.1.456.959
* vmImage: Windows
* managementEndpoint: https://example:80
* nodeTypes:
* - name: first
* instanceCount: 3
* isPrimary: true
* clientEndpointPort: 2020
* httpEndpointPort: 80
* ```
*
* ## Import
* Service Fabric Clusters can be imported using the `resource id`, e.g.
* ```sh
* $ pulumi import azure:servicefabric/cluster:Cluster cluster1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.ServiceFabric/clusters/cluster1
* ```
* @property addOnFeatures A List of one or more features which should be enabled, such as `DnsService`.
* @property azureActiveDirectory An `azure_active_directory` block as defined below.
* @property certificate A `certificate` block as defined below. Conflicts with `certificate_common_names`.
* @property certificateCommonNames A `certificate_common_names` block as defined below. Conflicts with `certificate`.
* @property clientCertificateCommonNames A `client_certificate_common_name` block as defined below.
* > **NOTE:** If Client Certificates are enabled then at a Certificate must be configured on the cluster.
* @property clientCertificateThumbprints One or more `client_certificate_thumbprint` blocks as defined below.
* @property clusterCodeVersion Required if Upgrade Mode set to `Manual`, Specifies the Version of the Cluster Code of the cluster.
* @property diagnosticsConfig A `diagnostics_config` block as defined below.
* @property fabricSettings One or more `fabric_settings` blocks as defined below.
* @property location Specifies the Azure Region where the Service Fabric Cluster should exist. Changing this forces a new resource to be created.
* @property managementEndpoint Specifies the Management Endpoint of the cluster such as `http://example.com`. Changing this forces a new resource to be created.
* @property name The name of the Service Fabric Cluster. Changing this forces a new resource to be created.
* @property nodeTypes One or more `node_type` blocks as defined below.
* @property reliabilityLevel Specifies the Reliability Level of the Cluster. Possible values include `None`, `Bronze`, `Silver`, `Gold` and `Platinum`.
* > **NOTE:** The Reliability Level of the Cluster depends on the number of nodes in the Cluster: `Platinum` requires at least 9 VM's, `Gold` requires at least 7 VM's, `Silver` requires at least 5 VM's, `Bronze` requires at least 3 VM's.
* @property resourceGroupName The name of the Resource Group in which the Service Fabric Cluster exists. Changing this forces a new resource to be created.
* @property reverseProxyCertificate A `reverse_proxy_certificate` block as defined below. Conflicts with `reverse_proxy_certificate_common_names`.
* @property reverseProxyCertificateCommonNames A `reverse_proxy_certificate_common_names` block as defined below. Conflicts with `reverse_proxy_certificate`.
* @property serviceFabricZonalUpgradeMode Specifies the logical grouping of VMs in upgrade domains. Possible values are `Hierarchical` or `Parallel`.
* @property tags A mapping of tags to assign to the resource.
* @property upgradeMode Specifies the Upgrade Mode of the cluster. Possible values are `Automatic` or `Manual`.
* @property upgradePolicy A `upgrade_policy` block as defined below.
* @property vmImage Specifies the Image expected for the Service Fabric Cluster, such as `Windows`. Changing this forces a new resource to be created.
* @property vmssZonalUpgradeMode Specifies the upgrade mode for the virtual machine scale set updates that happen in all availability zones at once. Possible values are `Hierarchical` or `Parallel`.
*/
public data class ClusterArgs(
public val addOnFeatures: Output>? = null,
public val azureActiveDirectory: Output? = null,
public val certificate: Output? = null,
public val certificateCommonNames: Output? = null,
public val clientCertificateCommonNames: Output>? =
null,
public val clientCertificateThumbprints: Output>? =
null,
public val clusterCodeVersion: Output? = null,
public val diagnosticsConfig: Output? = null,
public val fabricSettings: Output>? = null,
public val location: Output? = null,
public val managementEndpoint: Output? = null,
public val name: Output? = null,
public val nodeTypes: Output>? = null,
public val reliabilityLevel: Output? = null,
public val resourceGroupName: Output? = null,
public val reverseProxyCertificate: Output? = null,
public val reverseProxyCertificateCommonNames:
Output? = null,
public val serviceFabricZonalUpgradeMode: Output? = null,
public val tags: Output