Show / Hide Table of Contents

Class ServiceState

Inheritance
System.Object
InputArgs
ResourceArgs
ServiceState
Inherited Members
ResourceArgs.Empty
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.Search
Assembly: Pulumi.Azure.dll
Syntax
public sealed class ServiceState : ResourceArgs

Constructors

View Source

ServiceState()

Declaration
public ServiceState()

Properties

View Source

Location

The Azure Region where the Search Service should exist. Changing this forces a new Search Service to be created.

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

Name

The Name which should be used for this Search Service. Changing this forces a new Search Service to be created.

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

PartitionCount

The number of partitions which should be created.

Declaration
public Input<int> PartitionCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

PrimaryKey

The Primary Key used for Search Service Administration.

Declaration
public Input<string> PrimaryKey { get; set; }
Property Value
Type Description
Input<System.String>
View Source

QueryKeys

A query_keys block as defined below.

Declaration
public InputList<ServiceQueryKeyGetArgs> QueryKeys { get; set; }
Property Value
Type Description
InputList<ServiceQueryKeyGetArgs>
View Source

ReplicaCount

The number of replica's which should be created.

Declaration
public Input<int> ReplicaCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

ResourceGroupName

The name of the Resource Group where the Search Service should exist. Changing this forces a new Search Service to be created.

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

SecondaryKey

The Secondary Key used for Search Service Administration.

Declaration
public Input<string> SecondaryKey { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Sku

The SKU which should be used for this Search Service. Possible values are basic, free, standard, standard2 and standard3 Changing this forces a new Search Service to be created.

Declaration
public Input<string> Sku { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A mapping of tags which should be assigned to the Search Service.

Declaration
public InputMap<string> Tags { get; set; }
Property Value
Type Description
InputMap<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.