Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.cloudsearch/v1.SearchApplication
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a search application. Note: This API requires an admin account to execute.
Create SearchApplication Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SearchApplication(name: string, args?: SearchApplicationArgs, opts?: CustomResourceOptions);@overload
def SearchApplication(resource_name: str,
                      args: Optional[SearchApplicationArgs] = None,
                      opts: Optional[ResourceOptions] = None)
@overload
def SearchApplication(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      data_source_restrictions: Optional[Sequence[DataSourceRestrictionArgs]] = None,
                      default_facet_options: Optional[Sequence[FacetOptionsArgs]] = None,
                      default_sort_options: Optional[SortOptionsArgs] = None,
                      display_name: Optional[str] = None,
                      enable_audit_log: Optional[bool] = None,
                      name: Optional[str] = None,
                      query_interpretation_config: Optional[QueryInterpretationConfigArgs] = None,
                      return_result_thumbnail_urls: Optional[bool] = None,
                      scoring_config: Optional[ScoringConfigArgs] = None,
                      source_config: Optional[Sequence[SourceConfigArgs]] = None)func NewSearchApplication(ctx *Context, name string, args *SearchApplicationArgs, opts ...ResourceOption) (*SearchApplication, error)public SearchApplication(string name, SearchApplicationArgs? args = null, CustomResourceOptions? opts = null)
public SearchApplication(String name, SearchApplicationArgs args)
public SearchApplication(String name, SearchApplicationArgs args, CustomResourceOptions options)
type: google-native:cloudsearch/v1:SearchApplication
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 SearchApplicationArgs
- 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 SearchApplicationArgs
- 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 SearchApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SearchApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SearchApplicationArgs
- 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 searchApplicationResource = new GoogleNative.CloudSearch.V1.SearchApplication("searchApplicationResource", new()
{
    DataSourceRestrictions = new[]
    {
        new GoogleNative.CloudSearch.V1.Inputs.DataSourceRestrictionArgs
        {
            FilterOptions = new[]
            {
                new GoogleNative.CloudSearch.V1.Inputs.FilterOptionsArgs
                {
                    Filter = new GoogleNative.CloudSearch.V1.Inputs.FilterArgs
                    {
                        CompositeFilter = new GoogleNative.CloudSearch.V1.Inputs.CompositeFilterArgs
                        {
                            LogicOperator = GoogleNative.CloudSearch.V1.CompositeFilterLogicOperator.And,
                            SubFilters = new[]
                            {
                                filter,
                            },
                        },
                        ValueFilter = new GoogleNative.CloudSearch.V1.Inputs.ValueFilterArgs
                        {
                            OperatorName = "string",
                            Value = new GoogleNative.CloudSearch.V1.Inputs.ValueArgs
                            {
                                BooleanValue = false,
                                DateValue = new GoogleNative.CloudSearch.V1.Inputs.DateArgs
                                {
                                    Day = 0,
                                    Month = 0,
                                    Year = 0,
                                },
                                DoubleValue = 0,
                                IntegerValue = "string",
                                StringValue = "string",
                                TimestampValue = "string",
                            },
                        },
                    },
                    ObjectType = "string",
                },
            },
            Source = new GoogleNative.CloudSearch.V1.Inputs.SourceArgs
            {
                Name = "string",
                PredefinedSource = GoogleNative.CloudSearch.V1.SourcePredefinedSource.None,
            },
        },
    },
    DefaultFacetOptions = new[]
    {
        new GoogleNative.CloudSearch.V1.Inputs.FacetOptionsArgs
        {
            IntegerFacetingOptions = new GoogleNative.CloudSearch.V1.Inputs.IntegerFacetingOptionsArgs
            {
                IntegerBuckets = new[]
                {
                    "string",
                },
            },
            NumFacetBuckets = 0,
            ObjectType = "string",
            OperatorName = "string",
            SourceName = "string",
        },
    },
    DefaultSortOptions = new GoogleNative.CloudSearch.V1.Inputs.SortOptionsArgs
    {
        OperatorName = "string",
        SortOrder = GoogleNative.CloudSearch.V1.SortOptionsSortOrder.Ascending,
    },
    DisplayName = "string",
    EnableAuditLog = false,
    Name = "string",
    QueryInterpretationConfig = new GoogleNative.CloudSearch.V1.Inputs.QueryInterpretationConfigArgs
    {
        ForceDisableSupplementalResults = false,
        ForceVerbatimMode = false,
    },
    ReturnResultThumbnailUrls = false,
    ScoringConfig = new GoogleNative.CloudSearch.V1.Inputs.ScoringConfigArgs
    {
        DisableFreshness = false,
        DisablePersonalization = false,
    },
    SourceConfig = new[]
    {
        new GoogleNative.CloudSearch.V1.Inputs.SourceConfigArgs
        {
            CrowdingConfig = new GoogleNative.CloudSearch.V1.Inputs.SourceCrowdingConfigArgs
            {
                NumResults = 0,
                NumSuggestions = 0,
            },
            ScoringConfig = new GoogleNative.CloudSearch.V1.Inputs.SourceScoringConfigArgs
            {
                SourceImportance = GoogleNative.CloudSearch.V1.SourceScoringConfigSourceImportance.Default,
            },
            Source = new GoogleNative.CloudSearch.V1.Inputs.SourceArgs
            {
                Name = "string",
                PredefinedSource = GoogleNative.CloudSearch.V1.SourcePredefinedSource.None,
            },
        },
    },
});
example, err := cloudsearch.NewSearchApplication(ctx, "searchApplicationResource", &cloudsearch.SearchApplicationArgs{
	DataSourceRestrictions: cloudsearch.DataSourceRestrictionArray{
		&cloudsearch.DataSourceRestrictionArgs{
			FilterOptions: cloudsearch.FilterOptionsArray{
				&cloudsearch.FilterOptionsArgs{
					Filter: &cloudsearch.FilterArgs{
						CompositeFilter: &cloudsearch.CompositeFilterArgs{
							LogicOperator: cloudsearch.CompositeFilterLogicOperatorAnd,
							SubFilters: cloudsearch.FilterArray{
								filter,
							},
						},
						ValueFilter: &cloudsearch.ValueFilterArgs{
							OperatorName: pulumi.String("string"),
							Value: &cloudsearch.ValueArgs{
								BooleanValue: pulumi.Bool(false),
								DateValue: &cloudsearch.DateArgs{
									Day:   pulumi.Int(0),
									Month: pulumi.Int(0),
									Year:  pulumi.Int(0),
								},
								DoubleValue:    pulumi.Float64(0),
								IntegerValue:   pulumi.String("string"),
								StringValue:    pulumi.String("string"),
								TimestampValue: pulumi.String("string"),
							},
						},
					},
					ObjectType: pulumi.String("string"),
				},
			},
			Source: &cloudsearch.SourceArgs{
				Name:             pulumi.String("string"),
				PredefinedSource: cloudsearch.SourcePredefinedSourceNone,
			},
		},
	},
	DefaultFacetOptions: cloudsearch.FacetOptionsArray{
		&cloudsearch.FacetOptionsArgs{
			IntegerFacetingOptions: &cloudsearch.IntegerFacetingOptionsArgs{
				IntegerBuckets: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
			NumFacetBuckets: pulumi.Int(0),
			ObjectType:      pulumi.String("string"),
			OperatorName:    pulumi.String("string"),
			SourceName:      pulumi.String("string"),
		},
	},
	DefaultSortOptions: &cloudsearch.SortOptionsArgs{
		OperatorName: pulumi.String("string"),
		SortOrder:    cloudsearch.SortOptionsSortOrderAscending,
	},
	DisplayName:    pulumi.String("string"),
	EnableAuditLog: pulumi.Bool(false),
	Name:           pulumi.String("string"),
	QueryInterpretationConfig: &cloudsearch.QueryInterpretationConfigArgs{
		ForceDisableSupplementalResults: pulumi.Bool(false),
		ForceVerbatimMode:               pulumi.Bool(false),
	},
	ReturnResultThumbnailUrls: pulumi.Bool(false),
	ScoringConfig: &cloudsearch.ScoringConfigArgs{
		DisableFreshness:       pulumi.Bool(false),
		DisablePersonalization: pulumi.Bool(false),
	},
	SourceConfig: cloudsearch.SourceConfigArray{
		&cloudsearch.SourceConfigArgs{
			CrowdingConfig: &cloudsearch.SourceCrowdingConfigArgs{
				NumResults:     pulumi.Int(0),
				NumSuggestions: pulumi.Int(0),
			},
			ScoringConfig: &cloudsearch.SourceScoringConfigArgs{
				SourceImportance: cloudsearch.SourceScoringConfigSourceImportanceDefault,
			},
			Source: &cloudsearch.SourceArgs{
				Name:             pulumi.String("string"),
				PredefinedSource: cloudsearch.SourcePredefinedSourceNone,
			},
		},
	},
})
var searchApplicationResource = new SearchApplication("searchApplicationResource", SearchApplicationArgs.builder()
    .dataSourceRestrictions(DataSourceRestrictionArgs.builder()
        .filterOptions(FilterOptionsArgs.builder()
            .filter(FilterArgs.builder()
                .compositeFilter(CompositeFilterArgs.builder()
                    .logicOperator("AND")
                    .subFilters(filter)
                    .build())
                .valueFilter(ValueFilterArgs.builder()
                    .operatorName("string")
                    .value(ValueArgs.builder()
                        .booleanValue(false)
                        .dateValue(DateArgs.builder()
                            .day(0)
                            .month(0)
                            .year(0)
                            .build())
                        .doubleValue(0)
                        .integerValue("string")
                        .stringValue("string")
                        .timestampValue("string")
                        .build())
                    .build())
                .build())
            .objectType("string")
            .build())
        .source(SourceArgs.builder()
            .name("string")
            .predefinedSource("NONE")
            .build())
        .build())
    .defaultFacetOptions(FacetOptionsArgs.builder()
        .integerFacetingOptions(IntegerFacetingOptionsArgs.builder()
            .integerBuckets("string")
            .build())
        .numFacetBuckets(0)
        .objectType("string")
        .operatorName("string")
        .sourceName("string")
        .build())
    .defaultSortOptions(SortOptionsArgs.builder()
        .operatorName("string")
        .sortOrder("ASCENDING")
        .build())
    .displayName("string")
    .enableAuditLog(false)
    .name("string")
    .queryInterpretationConfig(QueryInterpretationConfigArgs.builder()
        .forceDisableSupplementalResults(false)
        .forceVerbatimMode(false)
        .build())
    .returnResultThumbnailUrls(false)
    .scoringConfig(ScoringConfigArgs.builder()
        .disableFreshness(false)
        .disablePersonalization(false)
        .build())
    .sourceConfig(SourceConfigArgs.builder()
        .crowdingConfig(SourceCrowdingConfigArgs.builder()
            .numResults(0)
            .numSuggestions(0)
            .build())
        .scoringConfig(SourceScoringConfigArgs.builder()
            .sourceImportance("DEFAULT")
            .build())
        .source(SourceArgs.builder()
            .name("string")
            .predefinedSource("NONE")
            .build())
        .build())
    .build());
search_application_resource = google_native.cloudsearch.v1.SearchApplication("searchApplicationResource",
    data_source_restrictions=[{
        "filter_options": [{
            "filter": {
                "composite_filter": {
                    "logic_operator": google_native.cloudsearch.v1.CompositeFilterLogicOperator.AND_,
                    "sub_filters": [filter],
                },
                "value_filter": {
                    "operator_name": "string",
                    "value": {
                        "boolean_value": False,
                        "date_value": {
                            "day": 0,
                            "month": 0,
                            "year": 0,
                        },
                        "double_value": 0,
                        "integer_value": "string",
                        "string_value": "string",
                        "timestamp_value": "string",
                    },
                },
            },
            "object_type": "string",
        }],
        "source": {
            "name": "string",
            "predefined_source": google_native.cloudsearch.v1.SourcePredefinedSource.NONE,
        },
    }],
    default_facet_options=[{
        "integer_faceting_options": {
            "integer_buckets": ["string"],
        },
        "num_facet_buckets": 0,
        "object_type": "string",
        "operator_name": "string",
        "source_name": "string",
    }],
    default_sort_options={
        "operator_name": "string",
        "sort_order": google_native.cloudsearch.v1.SortOptionsSortOrder.ASCENDING,
    },
    display_name="string",
    enable_audit_log=False,
    name="string",
    query_interpretation_config={
        "force_disable_supplemental_results": False,
        "force_verbatim_mode": False,
    },
    return_result_thumbnail_urls=False,
    scoring_config={
        "disable_freshness": False,
        "disable_personalization": False,
    },
    source_config=[{
        "crowding_config": {
            "num_results": 0,
            "num_suggestions": 0,
        },
        "scoring_config": {
            "source_importance": google_native.cloudsearch.v1.SourceScoringConfigSourceImportance.DEFAULT,
        },
        "source": {
            "name": "string",
            "predefined_source": google_native.cloudsearch.v1.SourcePredefinedSource.NONE,
        },
    }])
const searchApplicationResource = new google_native.cloudsearch.v1.SearchApplication("searchApplicationResource", {
    dataSourceRestrictions: [{
        filterOptions: [{
            filter: {
                compositeFilter: {
                    logicOperator: google_native.cloudsearch.v1.CompositeFilterLogicOperator.And,
                    subFilters: [filter],
                },
                valueFilter: {
                    operatorName: "string",
                    value: {
                        booleanValue: false,
                        dateValue: {
                            day: 0,
                            month: 0,
                            year: 0,
                        },
                        doubleValue: 0,
                        integerValue: "string",
                        stringValue: "string",
                        timestampValue: "string",
                    },
                },
            },
            objectType: "string",
        }],
        source: {
            name: "string",
            predefinedSource: google_native.cloudsearch.v1.SourcePredefinedSource.None,
        },
    }],
    defaultFacetOptions: [{
        integerFacetingOptions: {
            integerBuckets: ["string"],
        },
        numFacetBuckets: 0,
        objectType: "string",
        operatorName: "string",
        sourceName: "string",
    }],
    defaultSortOptions: {
        operatorName: "string",
        sortOrder: google_native.cloudsearch.v1.SortOptionsSortOrder.Ascending,
    },
    displayName: "string",
    enableAuditLog: false,
    name: "string",
    queryInterpretationConfig: {
        forceDisableSupplementalResults: false,
        forceVerbatimMode: false,
    },
    returnResultThumbnailUrls: false,
    scoringConfig: {
        disableFreshness: false,
        disablePersonalization: false,
    },
    sourceConfig: [{
        crowdingConfig: {
            numResults: 0,
            numSuggestions: 0,
        },
        scoringConfig: {
            sourceImportance: google_native.cloudsearch.v1.SourceScoringConfigSourceImportance.Default,
        },
        source: {
            name: "string",
            predefinedSource: google_native.cloudsearch.v1.SourcePredefinedSource.None,
        },
    }],
});
type: google-native:cloudsearch/v1:SearchApplication
properties:
    dataSourceRestrictions:
        - filterOptions:
            - filter:
                compositeFilter:
                    logicOperator: AND
                    subFilters:
                        - ${filter}
                valueFilter:
                    operatorName: string
                    value:
                        booleanValue: false
                        dateValue:
                            day: 0
                            month: 0
                            year: 0
                        doubleValue: 0
                        integerValue: string
                        stringValue: string
                        timestampValue: string
              objectType: string
          source:
            name: string
            predefinedSource: NONE
    defaultFacetOptions:
        - integerFacetingOptions:
            integerBuckets:
                - string
          numFacetBuckets: 0
          objectType: string
          operatorName: string
          sourceName: string
    defaultSortOptions:
        operatorName: string
        sortOrder: ASCENDING
    displayName: string
    enableAuditLog: false
    name: string
    queryInterpretationConfig:
        forceDisableSupplementalResults: false
        forceVerbatimMode: false
    returnResultThumbnailUrls: false
    scoringConfig:
        disableFreshness: false
        disablePersonalization: false
    sourceConfig:
        - crowdingConfig:
            numResults: 0
            numSuggestions: 0
          scoringConfig:
            sourceImportance: DEFAULT
          source:
            name: string
            predefinedSource: NONE
SearchApplication Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SearchApplication resource accepts the following input properties:
- DataSource List<Pulumi.Restrictions Google Native. Cloud Search. V1. Inputs. Data Source Restriction> 
- Retrictions applied to the configurations. The maximum number of elements is 10.
- DefaultFacet List<Pulumi.Options Google Native. Cloud Search. V1. Inputs. Facet Options> 
- The default fields for returning facet results. The sources specified here also have been included in data_source_restrictions above.
- DefaultSort Pulumi.Options Google Native. Cloud Search. V1. Inputs. Sort Options 
- The default options for sorting the search results
- DisplayName string
- Display name of the Search Application. The maximum length is 300 characters.
- EnableAudit boolLog 
- Indicates whether audit logging is on/off for requests made for the search application in query APIs.
- Name string
- The name of the Search Application. Format: searchapplications/{application_id}.
- QueryInterpretation Pulumi.Config Google Native. Cloud Search. V1. Inputs. Query Interpretation Config 
- The default options for query interpretation
- ReturnResult boolThumbnail Urls 
- With each result we should return the URI for its thumbnail (when applicable)
- ScoringConfig Pulumi.Google Native. Cloud Search. V1. Inputs. Scoring Config 
- Configuration for ranking results.
- SourceConfig List<Pulumi.Google Native. Cloud Search. V1. Inputs. Source Config> 
- Configuration for a sources specified in data_source_restrictions.
- DataSource []DataRestrictions Source Restriction Args 
- Retrictions applied to the configurations. The maximum number of elements is 10.
- DefaultFacet []FacetOptions Options Args 
- The default fields for returning facet results. The sources specified here also have been included in data_source_restrictions above.
- DefaultSort SortOptions Options Args 
- The default options for sorting the search results
- DisplayName string
- Display name of the Search Application. The maximum length is 300 characters.
- EnableAudit boolLog 
- Indicates whether audit logging is on/off for requests made for the search application in query APIs.
- Name string
- The name of the Search Application. Format: searchapplications/{application_id}.
- QueryInterpretation QueryConfig Interpretation Config Args 
- The default options for query interpretation
- ReturnResult boolThumbnail Urls 
- With each result we should return the URI for its thumbnail (when applicable)
- ScoringConfig ScoringConfig Args 
- Configuration for ranking results.
- SourceConfig []SourceConfig Args 
- Configuration for a sources specified in data_source_restrictions.
- dataSource List<DataRestrictions Source Restriction> 
- Retrictions applied to the configurations. The maximum number of elements is 10.
- defaultFacet List<FacetOptions Options> 
- The default fields for returning facet results. The sources specified here also have been included in data_source_restrictions above.
- defaultSort SortOptions Options 
- The default options for sorting the search results
- displayName String
- Display name of the Search Application. The maximum length is 300 characters.
- enableAudit BooleanLog 
- Indicates whether audit logging is on/off for requests made for the search application in query APIs.
- name String
- The name of the Search Application. Format: searchapplications/{application_id}.
- queryInterpretation QueryConfig Interpretation Config 
- The default options for query interpretation
- returnResult BooleanThumbnail Urls 
- With each result we should return the URI for its thumbnail (when applicable)
- scoringConfig ScoringConfig 
- Configuration for ranking results.
- sourceConfig List<SourceConfig> 
- Configuration for a sources specified in data_source_restrictions.
- dataSource DataRestrictions Source Restriction[] 
- Retrictions applied to the configurations. The maximum number of elements is 10.
- defaultFacet FacetOptions Options[] 
- The default fields for returning facet results. The sources specified here also have been included in data_source_restrictions above.
- defaultSort SortOptions Options 
- The default options for sorting the search results
- displayName string
- Display name of the Search Application. The maximum length is 300 characters.
- enableAudit booleanLog 
- Indicates whether audit logging is on/off for requests made for the search application in query APIs.
- name string
- The name of the Search Application. Format: searchapplications/{application_id}.
- queryInterpretation QueryConfig Interpretation Config 
- The default options for query interpretation
- returnResult booleanThumbnail Urls 
- With each result we should return the URI for its thumbnail (when applicable)
- scoringConfig ScoringConfig 
- Configuration for ranking results.
- sourceConfig SourceConfig[] 
- Configuration for a sources specified in data_source_restrictions.
- data_source_ Sequence[Datarestrictions Source Restriction Args] 
- Retrictions applied to the configurations. The maximum number of elements is 10.
- default_facet_ Sequence[Facetoptions Options Args] 
- The default fields for returning facet results. The sources specified here also have been included in data_source_restrictions above.
- default_sort_ Sortoptions Options Args 
- The default options for sorting the search results
- display_name str
- Display name of the Search Application. The maximum length is 300 characters.
- enable_audit_ boollog 
- Indicates whether audit logging is on/off for requests made for the search application in query APIs.
- name str
- The name of the Search Application. Format: searchapplications/{application_id}.
- query_interpretation_ Queryconfig Interpretation Config Args 
- The default options for query interpretation
- return_result_ boolthumbnail_ urls 
- With each result we should return the URI for its thumbnail (when applicable)
- scoring_config ScoringConfig Args 
- Configuration for ranking results.
- source_config Sequence[SourceConfig Args] 
- Configuration for a sources specified in data_source_restrictions.
- dataSource List<Property Map>Restrictions 
- Retrictions applied to the configurations. The maximum number of elements is 10.
- defaultFacet List<Property Map>Options 
- The default fields for returning facet results. The sources specified here also have been included in data_source_restrictions above.
- defaultSort Property MapOptions 
- The default options for sorting the search results
- displayName String
- Display name of the Search Application. The maximum length is 300 characters.
- enableAudit BooleanLog 
- Indicates whether audit logging is on/off for requests made for the search application in query APIs.
- name String
- The name of the Search Application. Format: searchapplications/{application_id}.
- queryInterpretation Property MapConfig 
- The default options for query interpretation
- returnResult BooleanThumbnail Urls 
- With each result we should return the URI for its thumbnail (when applicable)
- scoringConfig Property Map
- Configuration for ranking results.
- sourceConfig List<Property Map>
- Configuration for a sources specified in data_source_restrictions.
Outputs
All input properties are implicitly available as output properties. Additionally, the SearchApplication resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- OperationIds List<string>
- IDs of the Long Running Operations (LROs) currently running for this schema. Output only field.
- Id string
- The provider-assigned unique ID for this managed resource.
- OperationIds []string
- IDs of the Long Running Operations (LROs) currently running for this schema. Output only field.
- id String
- The provider-assigned unique ID for this managed resource.
- operationIds List<String>
- IDs of the Long Running Operations (LROs) currently running for this schema. Output only field.
- id string
- The provider-assigned unique ID for this managed resource.
- operationIds string[]
- IDs of the Long Running Operations (LROs) currently running for this schema. Output only field.
- id str
- The provider-assigned unique ID for this managed resource.
- operation_ids Sequence[str]
- IDs of the Long Running Operations (LROs) currently running for this schema. Output only field.
- id String
- The provider-assigned unique ID for this managed resource.
- operationIds List<String>
- IDs of the Long Running Operations (LROs) currently running for this schema. Output only field.
Supporting Types
CompositeFilter, CompositeFilterArgs    
- LogicOperator Pulumi.Google Native. Cloud Search. V1. Composite Filter Logic Operator 
- The logic operator of the sub filter.
- SubFilters List<Pulumi.Google Native. Cloud Search. V1. Inputs. Filter> 
- Sub filters.
- LogicOperator CompositeFilter Logic Operator 
- The logic operator of the sub filter.
- SubFilters []Filter
- Sub filters.
- logicOperator CompositeFilter Logic Operator 
- The logic operator of the sub filter.
- subFilters List<Filter>
- Sub filters.
- logicOperator CompositeFilter Logic Operator 
- The logic operator of the sub filter.
- subFilters Filter[]
- Sub filters.
- logic_operator CompositeFilter Logic Operator 
- The logic operator of the sub filter.
- sub_filters Sequence[Filter]
- Sub filters.
- logicOperator "AND" | "OR" | "NOT"
- The logic operator of the sub filter.
- subFilters List<Property Map>
- Sub filters.
CompositeFilterLogicOperator, CompositeFilterLogicOperatorArgs        
- And
- ANDLogical operators, which can only be applied to sub filters.
- Or
- OR
- Not
- NOTNOT can only be applied on a single sub filter.
- CompositeFilter Logic Operator And 
- ANDLogical operators, which can only be applied to sub filters.
- CompositeFilter Logic Operator Or 
- OR
- CompositeFilter Logic Operator Not 
- NOTNOT can only be applied on a single sub filter.
- And
- ANDLogical operators, which can only be applied to sub filters.
- Or
- OR
- Not
- NOTNOT can only be applied on a single sub filter.
- And
- ANDLogical operators, which can only be applied to sub filters.
- Or
- OR
- Not
- NOTNOT can only be applied on a single sub filter.
- AND_
- ANDLogical operators, which can only be applied to sub filters.
- OR_
- OR
- NOT_
- NOTNOT can only be applied on a single sub filter.
- "AND"
- ANDLogical operators, which can only be applied to sub filters.
- "OR"
- OR
- "NOT"
- NOTNOT can only be applied on a single sub filter.
CompositeFilterResponse, CompositeFilterResponseArgs      
- LogicOperator string
- The logic operator of the sub filter.
- SubFilters List<Pulumi.Google Native. Cloud Search. V1. Inputs. Filter Response> 
- Sub filters.
- LogicOperator string
- The logic operator of the sub filter.
- SubFilters []FilterResponse 
- Sub filters.
- logicOperator String
- The logic operator of the sub filter.
- subFilters List<FilterResponse> 
- Sub filters.
- logicOperator string
- The logic operator of the sub filter.
- subFilters FilterResponse[] 
- Sub filters.
- logic_operator str
- The logic operator of the sub filter.
- sub_filters Sequence[FilterResponse] 
- Sub filters.
- logicOperator String
- The logic operator of the sub filter.
- subFilters List<Property Map>
- Sub filters.
DataSourceRestriction, DataSourceRestrictionArgs      
- FilterOptions List<Pulumi.Google Native. Cloud Search. V1. Inputs. Filter Options> 
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- Source
Pulumi.Google Native. Cloud Search. V1. Inputs. Source 
- The source of restriction.
- FilterOptions []FilterOptions 
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- Source Source
- The source of restriction.
- filterOptions List<FilterOptions> 
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- source Source
- The source of restriction.
- filterOptions FilterOptions[] 
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- source Source
- The source of restriction.
- filter_options Sequence[FilterOptions] 
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- source Source
- The source of restriction.
- filterOptions List<Property Map>
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- source Property Map
- The source of restriction.
DataSourceRestrictionResponse, DataSourceRestrictionResponseArgs        
- FilterOptions List<Pulumi.Google Native. Cloud Search. V1. Inputs. Filter Options Response> 
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- Source
Pulumi.Google Native. Cloud Search. V1. Inputs. Source Response 
- The source of restriction.
- FilterOptions []FilterOptions Response 
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- Source
SourceResponse 
- The source of restriction.
- filterOptions List<FilterOptions Response> 
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- source
SourceResponse 
- The source of restriction.
- filterOptions FilterOptions Response[] 
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- source
SourceResponse 
- The source of restriction.
- filter_options Sequence[FilterOptions Response] 
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- source
SourceResponse 
- The source of restriction.
- filterOptions List<Property Map>
- Filter options restricting the results. If multiple filters are present, they are grouped by object type before joining. Filters with the same object type are joined conjunctively, then the resulting expressions are joined disjunctively. The maximum number of elements is 20. NOTE: Suggest API supports only few filters at the moment: "objecttype", "type" and "mimetype". For now, schema specific filters cannot be used to filter suggestions.
- source Property Map
- The source of restriction.
Date, DateArgs  
DateResponse, DateResponseArgs    
FacetOptions, FacetOptionsArgs    
- IntegerFaceting Pulumi.Options Google Native. Cloud Search. V1. Inputs. Integer Faceting Options 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- NumFacet intBuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- ObjectType string
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- OperatorName string
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- SourceName string
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
- IntegerFaceting IntegerOptions Faceting Options 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- NumFacet intBuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- ObjectType string
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- OperatorName string
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- SourceName string
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
- integerFaceting IntegerOptions Faceting Options 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- numFacet IntegerBuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- objectType String
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- operatorName String
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- sourceName String
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
- integerFaceting IntegerOptions Faceting Options 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- numFacet numberBuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- objectType string
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- operatorName string
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- sourceName string
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
- integer_faceting_ Integeroptions Faceting Options 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- num_facet_ intbuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- object_type str
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- operator_name str
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- source_name str
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
- integerFaceting Property MapOptions 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- numFacet NumberBuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- objectType String
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- operatorName String
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- sourceName String
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
FacetOptionsResponse, FacetOptionsResponseArgs      
- IntegerFaceting Pulumi.Options Google Native. Cloud Search. V1. Inputs. Integer Faceting Options Response 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- NumFacet intBuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- ObjectType string
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- OperatorName string
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- SourceName string
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
- IntegerFaceting IntegerOptions Faceting Options Response 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- NumFacet intBuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- ObjectType string
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- OperatorName string
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- SourceName string
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
- integerFaceting IntegerOptions Faceting Options Response 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- numFacet IntegerBuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- objectType String
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- operatorName String
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- sourceName String
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
- integerFaceting IntegerOptions Faceting Options Response 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- numFacet numberBuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- objectType string
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- operatorName string
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- sourceName string
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
- integer_faceting_ Integeroptions Faceting Options Response 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- num_facet_ intbuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- object_type str
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- operator_name str
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- source_name str
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
- integerFaceting Property MapOptions 
- If set, describes integer faceting options for the given integer property. The corresponding integer property in the schema should be marked isFacetable. The number of buckets returned would be minimum of this and num_facet_buckets.
- numFacet NumberBuckets 
- Maximum number of facet buckets that should be returned for this facet. Defaults to 10. Maximum value is 100.
- objectType String
- If object_type is set, only those objects of that type will be used to compute facets. If empty, then all objects will be used to compute facets.
- operatorName String
- The name of the operator chosen for faceting. @see cloudsearch.SchemaPropertyOptions
- sourceName String
- Source name to facet on. Format: datasources/{source_id} If empty, all data sources will be used.
Filter, FilterArgs  
FilterOptions, FilterOptionsArgs    
- Filter
Pulumi.Google Native. Cloud Search. V1. Inputs. Filter 
- Generic filter to restrict the search, such as lang:en,site:xyz.
- ObjectType string
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
- Filter Filter
- Generic filter to restrict the search, such as lang:en,site:xyz.
- ObjectType string
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
- filter Filter
- Generic filter to restrict the search, such as lang:en,site:xyz.
- objectType String
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
- filter Filter
- Generic filter to restrict the search, such as lang:en,site:xyz.
- objectType string
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
- filter Filter
- Generic filter to restrict the search, such as lang:en,site:xyz.
- object_type str
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
- filter Property Map
- Generic filter to restrict the search, such as lang:en,site:xyz.
- objectType String
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
FilterOptionsResponse, FilterOptionsResponseArgs      
- Filter
Pulumi.Google Native. Cloud Search. V1. Inputs. Filter Response 
- Generic filter to restrict the search, such as lang:en,site:xyz.
- ObjectType string
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
- Filter
FilterResponse 
- Generic filter to restrict the search, such as lang:en,site:xyz.
- ObjectType string
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
- filter
FilterResponse 
- Generic filter to restrict the search, such as lang:en,site:xyz.
- objectType String
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
- filter
FilterResponse 
- Generic filter to restrict the search, such as lang:en,site:xyz.
- objectType string
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
- filter
FilterResponse 
- Generic filter to restrict the search, such as lang:en,site:xyz.
- object_type str
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
- filter Property Map
- Generic filter to restrict the search, such as lang:en,site:xyz.
- objectType String
- If object_type is set, only objects of that type are returned. This should correspond to the name of the object that was registered within the definition of schema. The maximum length is 256 characters.
FilterResponse, FilterResponseArgs    
IntegerFacetingOptions, IntegerFacetingOptionsArgs      
- IntegerBuckets List<string>
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
- IntegerBuckets []string
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
- integerBuckets List<String>
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
- integerBuckets string[]
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
- integer_buckets Sequence[str]
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
- integerBuckets List<String>
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
IntegerFacetingOptionsResponse, IntegerFacetingOptionsResponseArgs        
- IntegerBuckets List<string>
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
- IntegerBuckets []string
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
- integerBuckets List<String>
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
- integerBuckets string[]
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
- integer_buckets Sequence[str]
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
- integerBuckets List<String>
- Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.
QueryInterpretationConfig, QueryInterpretationConfigArgs      
- ForceDisable boolSupplemental Results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- ForceVerbatim boolMode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
- ForceDisable boolSupplemental Results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- ForceVerbatim boolMode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
- forceDisable BooleanSupplemental Results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- forceVerbatim BooleanMode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
- forceDisable booleanSupplemental Results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- forceVerbatim booleanMode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
- force_disable_ boolsupplemental_ results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- force_verbatim_ boolmode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
- forceDisable BooleanSupplemental Results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- forceVerbatim BooleanMode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
QueryInterpretationConfigResponse, QueryInterpretationConfigResponseArgs        
- ForceDisable boolSupplemental Results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- ForceVerbatim boolMode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
- ForceDisable boolSupplemental Results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- ForceVerbatim boolMode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
- forceDisable BooleanSupplemental Results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- forceVerbatim BooleanMode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
- forceDisable booleanSupplemental Results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- forceVerbatim booleanMode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
- force_disable_ boolsupplemental_ results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- force_verbatim_ boolmode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
- forceDisable BooleanSupplemental Results 
- Set this flag to disable supplemental results retrieval, setting a flag here will not retrieve supplemental results for queries associated with a given search application. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for supplemental results.
- forceVerbatim BooleanMode 
- Enable this flag to turn off all internal optimizations like natural language (NL) interpretation of queries, supplemental results retrieval, and usage of synonyms including custom ones. If this flag is set to True, it will take precedence over the option set at Query level. For the default value of False, query level flag will set the correct interpretation for verbatim mode.
ScoringConfig, ScoringConfigArgs    
- DisableFreshness bool
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- DisablePersonalization bool
- Whether to personalize the results. By default, personal signals will be used to boost results.
- DisableFreshness bool
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- DisablePersonalization bool
- Whether to personalize the results. By default, personal signals will be used to boost results.
- disableFreshness Boolean
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- disablePersonalization Boolean
- Whether to personalize the results. By default, personal signals will be used to boost results.
- disableFreshness boolean
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- disablePersonalization boolean
- Whether to personalize the results. By default, personal signals will be used to boost results.
- disable_freshness bool
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- disable_personalization bool
- Whether to personalize the results. By default, personal signals will be used to boost results.
- disableFreshness Boolean
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- disablePersonalization Boolean
- Whether to personalize the results. By default, personal signals will be used to boost results.
ScoringConfigResponse, ScoringConfigResponseArgs      
- DisableFreshness bool
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- DisablePersonalization bool
- Whether to personalize the results. By default, personal signals will be used to boost results.
- DisableFreshness bool
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- DisablePersonalization bool
- Whether to personalize the results. By default, personal signals will be used to boost results.
- disableFreshness Boolean
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- disablePersonalization Boolean
- Whether to personalize the results. By default, personal signals will be used to boost results.
- disableFreshness boolean
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- disablePersonalization boolean
- Whether to personalize the results. By default, personal signals will be used to boost results.
- disable_freshness bool
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- disable_personalization bool
- Whether to personalize the results. By default, personal signals will be used to boost results.
- disableFreshness Boolean
- Whether to use freshness as a ranking signal. By default, freshness is used as a ranking signal. Note that this setting is not available in the Admin UI.
- disablePersonalization Boolean
- Whether to personalize the results. By default, personal signals will be used to boost results.
SortOptions, SortOptionsArgs    
- OperatorName string
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- SortOrder Pulumi.Google Native. Cloud Search. V1. Sort Options Sort Order 
- Ascending is the default sort order
- OperatorName string
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- SortOrder SortOptions Sort Order 
- Ascending is the default sort order
- operatorName String
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- sortOrder SortOptions Sort Order 
- Ascending is the default sort order
- operatorName string
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- sortOrder SortOptions Sort Order 
- Ascending is the default sort order
- operator_name str
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- sort_order SortOptions Sort Order 
- Ascending is the default sort order
- operatorName String
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- sortOrder "ASCENDING" | "DESCENDING"
- Ascending is the default sort order
SortOptionsResponse, SortOptionsResponseArgs      
- OperatorName string
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- SortOrder string
- Ascending is the default sort order
- OperatorName string
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- SortOrder string
- Ascending is the default sort order
- operatorName String
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- sortOrder String
- Ascending is the default sort order
- operatorName string
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- sortOrder string
- Ascending is the default sort order
- operator_name str
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- sort_order str
- Ascending is the default sort order
- operatorName String
- The name of the operator corresponding to the field to sort on. The corresponding property must be marked as sortable.
- sortOrder String
- Ascending is the default sort order
SortOptionsSortOrder, SortOptionsSortOrderArgs        
- Ascending
- ASCENDING
- Descending
- DESCENDING
- SortOptions Sort Order Ascending 
- ASCENDING
- SortOptions Sort Order Descending 
- DESCENDING
- Ascending
- ASCENDING
- Descending
- DESCENDING
- Ascending
- ASCENDING
- Descending
- DESCENDING
- ASCENDING
- ASCENDING
- DESCENDING
- DESCENDING
- "ASCENDING"
- ASCENDING
- "DESCENDING"
- DESCENDING
Source, SourceArgs  
- Name string
- Source name for content indexed by the Indexing API.
- PredefinedSource Pulumi.Google Native. Cloud Search. V1. Source Predefined Source 
- Predefined content source for Google Apps.
- Name string
- Source name for content indexed by the Indexing API.
- PredefinedSource SourcePredefined Source 
- Predefined content source for Google Apps.
- name String
- Source name for content indexed by the Indexing API.
- predefinedSource SourcePredefined Source 
- Predefined content source for Google Apps.
- name string
- Source name for content indexed by the Indexing API.
- predefinedSource SourcePredefined Source 
- Predefined content source for Google Apps.
- name str
- Source name for content indexed by the Indexing API.
- predefined_source SourcePredefined Source 
- Predefined content source for Google Apps.
- name String
- Source name for content indexed by the Indexing API.
- predefinedSource "NONE" | "QUERY_HISTORY" | "PERSON" | "GOOGLE_DRIVE" | "GOOGLE_GMAIL" | "GOOGLE_SITES" | "GOOGLE_GROUPS" | "GOOGLE_CALENDAR" | "GOOGLE_KEEP"
- Predefined content source for Google Apps.
SourceConfig, SourceConfigArgs    
- CrowdingConfig Pulumi.Google Native. Cloud Search. V1. Inputs. Source Crowding Config 
- The crowding configuration for the source.
- ScoringConfig Pulumi.Google Native. Cloud Search. V1. Inputs. Source Scoring Config 
- The scoring configuration for the source.
- Source
Pulumi.Google Native. Cloud Search. V1. Inputs. Source 
- The source for which this configuration is to be used.
- CrowdingConfig SourceCrowding Config 
- The crowding configuration for the source.
- ScoringConfig SourceScoring Config 
- The scoring configuration for the source.
- Source Source
- The source for which this configuration is to be used.
- crowdingConfig SourceCrowding Config 
- The crowding configuration for the source.
- scoringConfig SourceScoring Config 
- The scoring configuration for the source.
- source Source
- The source for which this configuration is to be used.
- crowdingConfig SourceCrowding Config 
- The crowding configuration for the source.
- scoringConfig SourceScoring Config 
- The scoring configuration for the source.
- source Source
- The source for which this configuration is to be used.
- crowding_config SourceCrowding Config 
- The crowding configuration for the source.
- scoring_config SourceScoring Config 
- The scoring configuration for the source.
- source Source
- The source for which this configuration is to be used.
- crowdingConfig Property Map
- The crowding configuration for the source.
- scoringConfig Property Map
- The scoring configuration for the source.
- source Property Map
- The source for which this configuration is to be used.
SourceConfigResponse, SourceConfigResponseArgs      
- CrowdingConfig Pulumi.Google Native. Cloud Search. V1. Inputs. Source Crowding Config Response 
- The crowding configuration for the source.
- ScoringConfig Pulumi.Google Native. Cloud Search. V1. Inputs. Source Scoring Config Response 
- The scoring configuration for the source.
- Source
Pulumi.Google Native. Cloud Search. V1. Inputs. Source Response 
- The source for which this configuration is to be used.
- CrowdingConfig SourceCrowding Config Response 
- The crowding configuration for the source.
- ScoringConfig SourceScoring Config Response 
- The scoring configuration for the source.
- Source
SourceResponse 
- The source for which this configuration is to be used.
- crowdingConfig SourceCrowding Config Response 
- The crowding configuration for the source.
- scoringConfig SourceScoring Config Response 
- The scoring configuration for the source.
- source
SourceResponse 
- The source for which this configuration is to be used.
- crowdingConfig SourceCrowding Config Response 
- The crowding configuration for the source.
- scoringConfig SourceScoring Config Response 
- The scoring configuration for the source.
- source
SourceResponse 
- The source for which this configuration is to be used.
- crowding_config SourceCrowding Config Response 
- The crowding configuration for the source.
- scoring_config SourceScoring Config Response 
- The scoring configuration for the source.
- source
SourceResponse 
- The source for which this configuration is to be used.
- crowdingConfig Property Map
- The crowding configuration for the source.
- scoringConfig Property Map
- The scoring configuration for the source.
- source Property Map
- The source for which this configuration is to be used.
SourceCrowdingConfig, SourceCrowdingConfigArgs      
- NumResults int
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- NumSuggestions int
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
- NumResults int
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- NumSuggestions int
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
- numResults Integer
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- numSuggestions Integer
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
- numResults number
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- numSuggestions number
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
- num_results int
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- num_suggestions int
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
- numResults Number
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- numSuggestions Number
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
SourceCrowdingConfigResponse, SourceCrowdingConfigResponseArgs        
- NumResults int
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- NumSuggestions int
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
- NumResults int
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- NumSuggestions int
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
- numResults Integer
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- numSuggestions Integer
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
- numResults number
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- numSuggestions number
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
- num_results int
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- num_suggestions int
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
- numResults Number
- Maximum number of results allowed from a datasource in a result page as long as results from other sources are not exhausted. Value specified must not be negative. A default value is used if this value is equal to 0. To disable crowding, set the value greater than 100.
- numSuggestions Number
- Maximum number of suggestions allowed from a source. No limits will be set on results if this value is less than or equal to 0.
SourcePredefinedSource, SourcePredefinedSourceArgs      
- None
- NONE
- QueryHistory 
- QUERY_HISTORYSuggests queries issued by the user in the past. Only valid when used with the suggest API. Ignored when used in the query API.
- Person
- PERSONSuggests people in the organization. Only valid when used with the suggest API. Results in an error when used in the query API.
- GoogleDrive 
- GOOGLE_DRIVE
- GoogleGmail 
- GOOGLE_GMAIL
- GoogleSites 
- GOOGLE_SITES
- GoogleGroups 
- GOOGLE_GROUPS
- GoogleCalendar 
- GOOGLE_CALENDAR
- GoogleKeep 
- GOOGLE_KEEP
- SourcePredefined Source None 
- NONE
- SourcePredefined Source Query History 
- QUERY_HISTORYSuggests queries issued by the user in the past. Only valid when used with the suggest API. Ignored when used in the query API.
- SourcePredefined Source Person 
- PERSONSuggests people in the organization. Only valid when used with the suggest API. Results in an error when used in the query API.
- SourcePredefined Source Google Drive 
- GOOGLE_DRIVE
- SourcePredefined Source Google Gmail 
- GOOGLE_GMAIL
- SourcePredefined Source Google Sites 
- GOOGLE_SITES
- SourcePredefined Source Google Groups 
- GOOGLE_GROUPS
- SourcePredefined Source Google Calendar 
- GOOGLE_CALENDAR
- SourcePredefined Source Google Keep 
- GOOGLE_KEEP
- None
- NONE
- QueryHistory 
- QUERY_HISTORYSuggests queries issued by the user in the past. Only valid when used with the suggest API. Ignored when used in the query API.
- Person
- PERSONSuggests people in the organization. Only valid when used with the suggest API. Results in an error when used in the query API.
- GoogleDrive 
- GOOGLE_DRIVE
- GoogleGmail 
- GOOGLE_GMAIL
- GoogleSites 
- GOOGLE_SITES
- GoogleGroups 
- GOOGLE_GROUPS
- GoogleCalendar 
- GOOGLE_CALENDAR
- GoogleKeep 
- GOOGLE_KEEP
- None
- NONE
- QueryHistory 
- QUERY_HISTORYSuggests queries issued by the user in the past. Only valid when used with the suggest API. Ignored when used in the query API.
- Person
- PERSONSuggests people in the organization. Only valid when used with the suggest API. Results in an error when used in the query API.
- GoogleDrive 
- GOOGLE_DRIVE
- GoogleGmail 
- GOOGLE_GMAIL
- GoogleSites 
- GOOGLE_SITES
- GoogleGroups 
- GOOGLE_GROUPS
- GoogleCalendar 
- GOOGLE_CALENDAR
- GoogleKeep 
- GOOGLE_KEEP
- NONE
- NONE
- QUERY_HISTORY
- QUERY_HISTORYSuggests queries issued by the user in the past. Only valid when used with the suggest API. Ignored when used in the query API.
- PERSON
- PERSONSuggests people in the organization. Only valid when used with the suggest API. Results in an error when used in the query API.
- GOOGLE_DRIVE
- GOOGLE_DRIVE
- GOOGLE_GMAIL
- GOOGLE_GMAIL
- GOOGLE_SITES
- GOOGLE_SITES
- GOOGLE_GROUPS
- GOOGLE_GROUPS
- GOOGLE_CALENDAR
- GOOGLE_CALENDAR
- GOOGLE_KEEP
- GOOGLE_KEEP
- "NONE"
- NONE
- "QUERY_HISTORY"
- QUERY_HISTORYSuggests queries issued by the user in the past. Only valid when used with the suggest API. Ignored when used in the query API.
- "PERSON"
- PERSONSuggests people in the organization. Only valid when used with the suggest API. Results in an error when used in the query API.
- "GOOGLE_DRIVE"
- GOOGLE_DRIVE
- "GOOGLE_GMAIL"
- GOOGLE_GMAIL
- "GOOGLE_SITES"
- GOOGLE_SITES
- "GOOGLE_GROUPS"
- GOOGLE_GROUPS
- "GOOGLE_CALENDAR"
- GOOGLE_CALENDAR
- "GOOGLE_KEEP"
- GOOGLE_KEEP
SourceResponse, SourceResponseArgs    
- Name string
- Source name for content indexed by the Indexing API.
- PredefinedSource string
- Predefined content source for Google Apps.
- Name string
- Source name for content indexed by the Indexing API.
- PredefinedSource string
- Predefined content source for Google Apps.
- name String
- Source name for content indexed by the Indexing API.
- predefinedSource String
- Predefined content source for Google Apps.
- name string
- Source name for content indexed by the Indexing API.
- predefinedSource string
- Predefined content source for Google Apps.
- name str
- Source name for content indexed by the Indexing API.
- predefined_source str
- Predefined content source for Google Apps.
- name String
- Source name for content indexed by the Indexing API.
- predefinedSource String
- Predefined content source for Google Apps.
SourceScoringConfig, SourceScoringConfigArgs      
- SourceImportance Pulumi.Google Native. Cloud Search. V1. Source Scoring Config Source Importance 
- Importance of the source.
- SourceImportance SourceScoring Config Source Importance 
- Importance of the source.
- sourceImportance SourceScoring Config Source Importance 
- Importance of the source.
- sourceImportance SourceScoring Config Source Importance 
- Importance of the source.
- source_importance SourceScoring Config Source Importance 
- Importance of the source.
- sourceImportance "DEFAULT" | "LOW" | "HIGH"
- Importance of the source.
SourceScoringConfigResponse, SourceScoringConfigResponseArgs        
- SourceImportance string
- Importance of the source.
- SourceImportance string
- Importance of the source.
- sourceImportance String
- Importance of the source.
- sourceImportance string
- Importance of the source.
- source_importance str
- Importance of the source.
- sourceImportance String
- Importance of the source.
SourceScoringConfigSourceImportance, SourceScoringConfigSourceImportanceArgs          
- Default
- DEFAULT
- Low
- LOW
- High
- HIGH
- SourceScoring Config Source Importance Default 
- DEFAULT
- SourceScoring Config Source Importance Low 
- LOW
- SourceScoring Config Source Importance High 
- HIGH
- Default
- DEFAULT
- Low
- LOW
- High
- HIGH
- Default
- DEFAULT
- Low
- LOW
- High
- HIGH
- DEFAULT
- DEFAULT
- LOW
- LOW
- HIGH
- HIGH
- "DEFAULT"
- DEFAULT
- "LOW"
- LOW
- "HIGH"
- HIGH
Value, ValueArgs  
- BooleanValue bool
- DateValue Pulumi.Google Native. Cloud Search. V1. Inputs. Date 
- DoubleValue double
- IntegerValue string
- StringValue string
- TimestampValue string
- BooleanValue bool
- DateValue Date
- DoubleValue float64
- IntegerValue string
- StringValue string
- TimestampValue string
- booleanValue Boolean
- dateValue Date
- doubleValue Double
- integerValue String
- stringValue String
- timestampValue String
- booleanValue boolean
- dateValue Date
- doubleValue number
- integerValue string
- stringValue string
- timestampValue string
- boolean_value bool
- date_value Date
- double_value float
- integer_value str
- string_value str
- timestamp_value str
- booleanValue Boolean
- dateValue Property Map
- doubleValue Number
- integerValue String
- stringValue String
- timestampValue String
ValueFilter, ValueFilterArgs    
- OperatorName string
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- Value
Pulumi.Google Native. Cloud Search. V1. Inputs. Value 
- The value to be compared with.
- OperatorName string
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- Value Value
- The value to be compared with.
- operatorName String
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- value Value
- The value to be compared with.
- operatorName string
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- value Value
- The value to be compared with.
- operator_name str
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- value Value
- The value to be compared with.
- operatorName String
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- value Property Map
- The value to be compared with.
ValueFilterResponse, ValueFilterResponseArgs      
- OperatorName string
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- Value
Pulumi.Google Native. Cloud Search. V1. Inputs. Value Response 
- The value to be compared with.
- OperatorName string
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- Value
ValueResponse 
- The value to be compared with.
- operatorName String
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- value
ValueResponse 
- The value to be compared with.
- operatorName string
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- value
ValueResponse 
- The value to be compared with.
- operator_name str
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- value
ValueResponse 
- The value to be compared with.
- operatorName String
- The operator_nameapplied to the query, such as price_greater_than. The filter can work against both types of filters defined in the schema for your data source: 1.operator_name, where the query filters results by the property that matches the value. 2.greater_than_operator_nameorless_than_operator_namein your schema. The query filters the results for the property values that are greater than or less than the supplied value in the query.
- value Property Map
- The value to be compared with.
ValueResponse, ValueResponseArgs    
- BooleanValue bool
- DateValue Pulumi.Google Native. Cloud Search. V1. Inputs. Date Response 
- DoubleValue double
- IntegerValue string
- StringValue string
- TimestampValue string
- BooleanValue bool
- DateValue DateResponse 
- DoubleValue float64
- IntegerValue string
- StringValue string
- TimestampValue string
- booleanValue Boolean
- dateValue DateResponse 
- doubleValue Double
- integerValue String
- stringValue String
- timestampValue String
- booleanValue boolean
- dateValue DateResponse 
- doubleValue number
- integerValue string
- stringValue string
- timestampValue string
- boolean_value bool
- date_value DateResponse 
- double_value float
- integer_value str
- string_value str
- timestamp_value str
- booleanValue Boolean
- dateValue Property Map
- doubleValue Number
- integerValue String
- stringValue String
- timestampValue String
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.