oci.LogAnalytics.NamespaceLookup
Explore with Pulumi AI
This resource provides the Namespace Lookup resource in Oracle Cloud Infrastructure Log Analytics service.
Creates a lookup with the specified name, type and description. The csv file containing the lookup content is passed in as binary data in the request.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testNamespaceLookup = new oci.loganalytics.NamespaceLookup("test_namespace_lookup", {
lookupName: namespaceLookupLookupName,
namespace: namespaceLookupNamespace,
registerLookupFile: namespaceLookupRegisterLookupFile,
type: namespaceLookupType,
categories: [{
description: namespaceLookupCategoriesDescription,
displayName: namespaceLookupCategoriesDisplayName,
isSystem: namespaceLookupCategoriesIsSystem,
name: namespaceLookupCategoriesName,
type: namespaceLookupCategoriesType,
}],
charEncoding: namespaceLookupCharEncoding,
compartmentId: namespaceLookupCompartmentId,
defaultMatchValue: namespaceLookupDefaultMatchValue,
definedTags: {
"foo-namespace.bar-key": "value",
},
description: namespaceLookupDescription,
fields: [{
commonFieldName: namespaceLookupFieldsCommonFieldName,
defaultMatchValue: namespaceLookupFieldsDefaultMatchValue,
displayName: namespaceLookupFieldsDisplayName,
isCommonField: namespaceLookupFieldsIsCommonField,
matchOperator: namespaceLookupFieldsMatchOperator,
name: namespaceLookupFieldsName,
position: namespaceLookupFieldsPosition,
}],
freeformTags: {
"bar-key": "value",
},
isHidden: namespaceLookupIsHidden,
maxMatches: namespaceLookupMaxMatches,
});
import pulumi
import pulumi_oci as oci
test_namespace_lookup = oci.log_analytics.NamespaceLookup("test_namespace_lookup",
lookup_name=namespace_lookup_lookup_name,
namespace=namespace_lookup_namespace,
register_lookup_file=namespace_lookup_register_lookup_file,
type=namespace_lookup_type,
categories=[{
"description": namespace_lookup_categories_description,
"display_name": namespace_lookup_categories_display_name,
"is_system": namespace_lookup_categories_is_system,
"name": namespace_lookup_categories_name,
"type": namespace_lookup_categories_type,
}],
char_encoding=namespace_lookup_char_encoding,
compartment_id=namespace_lookup_compartment_id,
default_match_value=namespace_lookup_default_match_value,
defined_tags={
"foo-namespace.bar-key": "value",
},
description=namespace_lookup_description,
fields=[{
"common_field_name": namespace_lookup_fields_common_field_name,
"default_match_value": namespace_lookup_fields_default_match_value,
"display_name": namespace_lookup_fields_display_name,
"is_common_field": namespace_lookup_fields_is_common_field,
"match_operator": namespace_lookup_fields_match_operator,
"name": namespace_lookup_fields_name,
"position": namespace_lookup_fields_position,
}],
freeform_tags={
"bar-key": "value",
},
is_hidden=namespace_lookup_is_hidden,
max_matches=namespace_lookup_max_matches)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/loganalytics"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := loganalytics.NewNamespaceLookup(ctx, "test_namespace_lookup", &loganalytics.NamespaceLookupArgs{
LookupName: pulumi.Any(namespaceLookupLookupName),
Namespace: pulumi.Any(namespaceLookupNamespace),
RegisterLookupFile: pulumi.Any(namespaceLookupRegisterLookupFile),
Type: pulumi.Any(namespaceLookupType),
Categories: loganalytics.NamespaceLookupCategoryArray{
&loganalytics.NamespaceLookupCategoryArgs{
Description: pulumi.Any(namespaceLookupCategoriesDescription),
DisplayName: pulumi.Any(namespaceLookupCategoriesDisplayName),
IsSystem: pulumi.Any(namespaceLookupCategoriesIsSystem),
Name: pulumi.Any(namespaceLookupCategoriesName),
Type: pulumi.Any(namespaceLookupCategoriesType),
},
},
CharEncoding: pulumi.Any(namespaceLookupCharEncoding),
CompartmentId: pulumi.Any(namespaceLookupCompartmentId),
DefaultMatchValue: pulumi.Any(namespaceLookupDefaultMatchValue),
DefinedTags: pulumi.StringMap{
"foo-namespace.bar-key": pulumi.String("value"),
},
Description: pulumi.Any(namespaceLookupDescription),
Fields: loganalytics.NamespaceLookupFieldArray{
&loganalytics.NamespaceLookupFieldArgs{
CommonFieldName: pulumi.Any(namespaceLookupFieldsCommonFieldName),
DefaultMatchValue: pulumi.Any(namespaceLookupFieldsDefaultMatchValue),
DisplayName: pulumi.Any(namespaceLookupFieldsDisplayName),
IsCommonField: pulumi.Any(namespaceLookupFieldsIsCommonField),
MatchOperator: pulumi.Any(namespaceLookupFieldsMatchOperator),
Name: pulumi.Any(namespaceLookupFieldsName),
Position: pulumi.Any(namespaceLookupFieldsPosition),
},
},
FreeformTags: pulumi.StringMap{
"bar-key": pulumi.String("value"),
},
IsHidden: pulumi.Any(namespaceLookupIsHidden),
MaxMatches: pulumi.Any(namespaceLookupMaxMatches),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testNamespaceLookup = new Oci.LogAnalytics.NamespaceLookup("test_namespace_lookup", new()
{
LookupName = namespaceLookupLookupName,
Namespace = namespaceLookupNamespace,
RegisterLookupFile = namespaceLookupRegisterLookupFile,
Type = namespaceLookupType,
Categories = new[]
{
new Oci.LogAnalytics.Inputs.NamespaceLookupCategoryArgs
{
Description = namespaceLookupCategoriesDescription,
DisplayName = namespaceLookupCategoriesDisplayName,
IsSystem = namespaceLookupCategoriesIsSystem,
Name = namespaceLookupCategoriesName,
Type = namespaceLookupCategoriesType,
},
},
CharEncoding = namespaceLookupCharEncoding,
CompartmentId = namespaceLookupCompartmentId,
DefaultMatchValue = namespaceLookupDefaultMatchValue,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = namespaceLookupDescription,
Fields = new[]
{
new Oci.LogAnalytics.Inputs.NamespaceLookupFieldArgs
{
CommonFieldName = namespaceLookupFieldsCommonFieldName,
DefaultMatchValue = namespaceLookupFieldsDefaultMatchValue,
DisplayName = namespaceLookupFieldsDisplayName,
IsCommonField = namespaceLookupFieldsIsCommonField,
MatchOperator = namespaceLookupFieldsMatchOperator,
Name = namespaceLookupFieldsName,
Position = namespaceLookupFieldsPosition,
},
},
FreeformTags =
{
{ "bar-key", "value" },
},
IsHidden = namespaceLookupIsHidden,
MaxMatches = namespaceLookupMaxMatches,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.LogAnalytics.NamespaceLookup;
import com.pulumi.oci.LogAnalytics.NamespaceLookupArgs;
import com.pulumi.oci.LogAnalytics.inputs.NamespaceLookupCategoryArgs;
import com.pulumi.oci.LogAnalytics.inputs.NamespaceLookupFieldArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testNamespaceLookup = new NamespaceLookup("testNamespaceLookup", NamespaceLookupArgs.builder()
.lookupName(namespaceLookupLookupName)
.namespace(namespaceLookupNamespace)
.registerLookupFile(namespaceLookupRegisterLookupFile)
.type(namespaceLookupType)
.categories(NamespaceLookupCategoryArgs.builder()
.description(namespaceLookupCategoriesDescription)
.displayName(namespaceLookupCategoriesDisplayName)
.isSystem(namespaceLookupCategoriesIsSystem)
.name(namespaceLookupCategoriesName)
.type(namespaceLookupCategoriesType)
.build())
.charEncoding(namespaceLookupCharEncoding)
.compartmentId(namespaceLookupCompartmentId)
.defaultMatchValue(namespaceLookupDefaultMatchValue)
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(namespaceLookupDescription)
.fields(NamespaceLookupFieldArgs.builder()
.commonFieldName(namespaceLookupFieldsCommonFieldName)
.defaultMatchValue(namespaceLookupFieldsDefaultMatchValue)
.displayName(namespaceLookupFieldsDisplayName)
.isCommonField(namespaceLookupFieldsIsCommonField)
.matchOperator(namespaceLookupFieldsMatchOperator)
.name(namespaceLookupFieldsName)
.position(namespaceLookupFieldsPosition)
.build())
.freeformTags(Map.of("bar-key", "value"))
.isHidden(namespaceLookupIsHidden)
.maxMatches(namespaceLookupMaxMatches)
.build());
}
}
resources:
testNamespaceLookup:
type: oci:LogAnalytics:NamespaceLookup
name: test_namespace_lookup
properties:
lookupName: ${namespaceLookupLookupName}
namespace: ${namespaceLookupNamespace}
registerLookupFile: ${namespaceLookupRegisterLookupFile}
type: ${namespaceLookupType}
categories:
- description: ${namespaceLookupCategoriesDescription}
displayName: ${namespaceLookupCategoriesDisplayName}
isSystem: ${namespaceLookupCategoriesIsSystem}
name: ${namespaceLookupCategoriesName}
type: ${namespaceLookupCategoriesType}
charEncoding: ${namespaceLookupCharEncoding}
compartmentId: ${namespaceLookupCompartmentId}
defaultMatchValue: ${namespaceLookupDefaultMatchValue}
definedTags:
foo-namespace.bar-key: value
description: ${namespaceLookupDescription}
fields:
- commonFieldName: ${namespaceLookupFieldsCommonFieldName}
defaultMatchValue: ${namespaceLookupFieldsDefaultMatchValue}
displayName: ${namespaceLookupFieldsDisplayName}
isCommonField: ${namespaceLookupFieldsIsCommonField}
matchOperator: ${namespaceLookupFieldsMatchOperator}
name: ${namespaceLookupFieldsName}
position: ${namespaceLookupFieldsPosition}
freeformTags:
bar-key: value
isHidden: ${namespaceLookupIsHidden}
maxMatches: ${namespaceLookupMaxMatches}
Create NamespaceLookup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NamespaceLookup(name: string, args: NamespaceLookupArgs, opts?: CustomResourceOptions);
@overload
def NamespaceLookup(resource_name: str,
args: NamespaceLookupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NamespaceLookup(resource_name: str,
opts: Optional[ResourceOptions] = None,
lookup_name: Optional[str] = None,
type: Optional[str] = None,
register_lookup_file: Optional[str] = None,
namespace: Optional[str] = None,
default_match_value: Optional[str] = None,
description: Optional[str] = None,
fields: Optional[Sequence[NamespaceLookupFieldArgs]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_hidden: Optional[bool] = None,
defined_tags: Optional[Mapping[str, str]] = None,
max_matches: Optional[str] = None,
categories: Optional[Sequence[NamespaceLookupCategoryArgs]] = None,
compartment_id: Optional[str] = None,
char_encoding: Optional[str] = None)
func NewNamespaceLookup(ctx *Context, name string, args NamespaceLookupArgs, opts ...ResourceOption) (*NamespaceLookup, error)
public NamespaceLookup(string name, NamespaceLookupArgs args, CustomResourceOptions? opts = null)
public NamespaceLookup(String name, NamespaceLookupArgs args)
public NamespaceLookup(String name, NamespaceLookupArgs args, CustomResourceOptions options)
type: oci:LogAnalytics:NamespaceLookup
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 NamespaceLookupArgs
- 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 NamespaceLookupArgs
- 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 NamespaceLookupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NamespaceLookupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NamespaceLookupArgs
- 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 namespaceLookupResource = new Oci.LogAnalytics.NamespaceLookup("namespaceLookupResource", new()
{
LookupName = "string",
Type = "string",
RegisterLookupFile = "string",
Namespace = "string",
DefaultMatchValue = "string",
Description = "string",
Fields = new[]
{
new Oci.LogAnalytics.Inputs.NamespaceLookupFieldArgs
{
CommonFieldName = "string",
DefaultMatchValue = "string",
DisplayName = "string",
IsCommonField = false,
MatchOperator = "string",
Name = "string",
Position = "string",
},
},
FreeformTags =
{
{ "string", "string" },
},
IsHidden = false,
DefinedTags =
{
{ "string", "string" },
},
MaxMatches = "string",
Categories = new[]
{
new Oci.LogAnalytics.Inputs.NamespaceLookupCategoryArgs
{
Description = "string",
DisplayName = "string",
IsSystem = false,
Name = "string",
Type = "string",
},
},
CompartmentId = "string",
CharEncoding = "string",
});
example, err := loganalytics.NewNamespaceLookup(ctx, "namespaceLookupResource", &loganalytics.NamespaceLookupArgs{
LookupName: pulumi.String("string"),
Type: pulumi.String("string"),
RegisterLookupFile: pulumi.String("string"),
Namespace: pulumi.String("string"),
DefaultMatchValue: pulumi.String("string"),
Description: pulumi.String("string"),
Fields: loganalytics.NamespaceLookupFieldArray{
&loganalytics.NamespaceLookupFieldArgs{
CommonFieldName: pulumi.String("string"),
DefaultMatchValue: pulumi.String("string"),
DisplayName: pulumi.String("string"),
IsCommonField: pulumi.Bool(false),
MatchOperator: pulumi.String("string"),
Name: pulumi.String("string"),
Position: pulumi.String("string"),
},
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
IsHidden: pulumi.Bool(false),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
MaxMatches: pulumi.String("string"),
Categories: loganalytics.NamespaceLookupCategoryArray{
&loganalytics.NamespaceLookupCategoryArgs{
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
IsSystem: pulumi.Bool(false),
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
CompartmentId: pulumi.String("string"),
CharEncoding: pulumi.String("string"),
})
var namespaceLookupResource = new NamespaceLookup("namespaceLookupResource", NamespaceLookupArgs.builder()
.lookupName("string")
.type("string")
.registerLookupFile("string")
.namespace("string")
.defaultMatchValue("string")
.description("string")
.fields(NamespaceLookupFieldArgs.builder()
.commonFieldName("string")
.defaultMatchValue("string")
.displayName("string")
.isCommonField(false)
.matchOperator("string")
.name("string")
.position("string")
.build())
.freeformTags(Map.of("string", "string"))
.isHidden(false)
.definedTags(Map.of("string", "string"))
.maxMatches("string")
.categories(NamespaceLookupCategoryArgs.builder()
.description("string")
.displayName("string")
.isSystem(false)
.name("string")
.type("string")
.build())
.compartmentId("string")
.charEncoding("string")
.build());
namespace_lookup_resource = oci.log_analytics.NamespaceLookup("namespaceLookupResource",
lookup_name="string",
type="string",
register_lookup_file="string",
namespace="string",
default_match_value="string",
description="string",
fields=[{
"common_field_name": "string",
"default_match_value": "string",
"display_name": "string",
"is_common_field": False,
"match_operator": "string",
"name": "string",
"position": "string",
}],
freeform_tags={
"string": "string",
},
is_hidden=False,
defined_tags={
"string": "string",
},
max_matches="string",
categories=[{
"description": "string",
"display_name": "string",
"is_system": False,
"name": "string",
"type": "string",
}],
compartment_id="string",
char_encoding="string")
const namespaceLookupResource = new oci.loganalytics.NamespaceLookup("namespaceLookupResource", {
lookupName: "string",
type: "string",
registerLookupFile: "string",
namespace: "string",
defaultMatchValue: "string",
description: "string",
fields: [{
commonFieldName: "string",
defaultMatchValue: "string",
displayName: "string",
isCommonField: false,
matchOperator: "string",
name: "string",
position: "string",
}],
freeformTags: {
string: "string",
},
isHidden: false,
definedTags: {
string: "string",
},
maxMatches: "string",
categories: [{
description: "string",
displayName: "string",
isSystem: false,
name: "string",
type: "string",
}],
compartmentId: "string",
charEncoding: "string",
});
type: oci:LogAnalytics:NamespaceLookup
properties:
categories:
- description: string
displayName: string
isSystem: false
name: string
type: string
charEncoding: string
compartmentId: string
defaultMatchValue: string
definedTags:
string: string
description: string
fields:
- commonFieldName: string
defaultMatchValue: string
displayName: string
isCommonField: false
matchOperator: string
name: string
position: string
freeformTags:
string: string
isHidden: false
lookupName: string
maxMatches: string
namespace: string
registerLookupFile: string
type: string
NamespaceLookup 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 NamespaceLookup resource accepts the following input properties:
- Lookup
Name string - The name of the lookup to operate on.
- Namespace string
- The Logging Analytics namespace used for the request.
- Register
Lookup stringFile - Path to the file containing data for lookup creation.
- Type string
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Categories
List<Namespace
Lookup Category> - (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- Char
Encoding string - The character encoding of the uploaded file.
- Compartment
Id string - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- Default
Match stringValue - (Updatable) The default match value.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) The lookup description.
- Fields
List<Namespace
Lookup Field> - (Updatable) The lookup fields.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- bool
- A flag indicating whether or not the new lookup should be hidden.
- Max
Matches string - (Updatable) The maximum number of matches.
- Lookup
Name string - The name of the lookup to operate on.
- Namespace string
- The Logging Analytics namespace used for the request.
- Register
Lookup stringFile - Path to the file containing data for lookup creation.
- Type string
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Categories
[]Namespace
Lookup Category Args - (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- Char
Encoding string - The character encoding of the uploaded file.
- Compartment
Id string - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- Default
Match stringValue - (Updatable) The default match value.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) The lookup description.
- Fields
[]Namespace
Lookup Field Args - (Updatable) The lookup fields.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- bool
- A flag indicating whether or not the new lookup should be hidden.
- Max
Matches string - (Updatable) The maximum number of matches.
- lookup
Name String - The name of the lookup to operate on.
- namespace String
- The Logging Analytics namespace used for the request.
- register
Lookup StringFile - Path to the file containing data for lookup creation.
- type String
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- categories
List<Namespace
Lookup Category> - (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- char
Encoding String - The character encoding of the uploaded file.
- compartment
Id String - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- default
Match StringValue - (Updatable) The default match value.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) The lookup description.
- fields
List<Namespace
Lookup Field> - (Updatable) The lookup fields.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Boolean
- A flag indicating whether or not the new lookup should be hidden.
- max
Matches String - (Updatable) The maximum number of matches.
- lookup
Name string - The name of the lookup to operate on.
- namespace string
- The Logging Analytics namespace used for the request.
- register
Lookup stringFile - Path to the file containing data for lookup creation.
- type string
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- categories
Namespace
Lookup Category[] - (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- char
Encoding string - The character encoding of the uploaded file.
- compartment
Id string - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- default
Match stringValue - (Updatable) The default match value.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) The lookup description.
- fields
Namespace
Lookup Field[] - (Updatable) The lookup fields.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- boolean
- A flag indicating whether or not the new lookup should be hidden.
- max
Matches string - (Updatable) The maximum number of matches.
- lookup_
name str - The name of the lookup to operate on.
- namespace str
- The Logging Analytics namespace used for the request.
- register_
lookup_ strfile - Path to the file containing data for lookup creation.
- type str
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- categories
Sequence[Namespace
Lookup Category Args] - (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- char_
encoding str - The character encoding of the uploaded file.
- compartment_
id str - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- default_
match_ strvalue - (Updatable) The default match value.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) The lookup description.
- fields
Sequence[Namespace
Lookup Field Args] - (Updatable) The lookup fields.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- bool
- A flag indicating whether or not the new lookup should be hidden.
- max_
matches str - (Updatable) The maximum number of matches.
- lookup
Name String - The name of the lookup to operate on.
- namespace String
- The Logging Analytics namespace used for the request.
- register
Lookup StringFile - Path to the file containing data for lookup creation.
- type String
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- categories List<Property Map>
- (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- char
Encoding String - The character encoding of the uploaded file.
- compartment
Id String - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- default
Match StringValue - (Updatable) The default match value.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) The lookup description.
- fields List<Property Map>
- (Updatable) The lookup fields.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Boolean
- A flag indicating whether or not the new lookup should be hidden.
- max
Matches String - (Updatable) The maximum number of matches.
Outputs
All input properties are implicitly available as output properties. Additionally, the NamespaceLookup resource produces the following output properties:
- Active
Edit stringVersion - The active edit version.
- Canonical
Link string - The canonical link.
- Edit
Version string - The edit version.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Built stringIn - A flag indicating if the lookup is custom (user-defined) or built in.
- Lookup
Display stringName - The lookup display name.
- Lookup
Id string - The lookup OCID.
- Lookup
Reference string - The lookup reference as an integer.
- Lookup
Reference stringString - The lookup reference as a string.
- Referring
Sources List<NamespaceLookup Referring Source> - AutoLookups
- Status
Summaries List<NamespaceLookup Status Summary> - StatusSummary
- Time
Updated string - The last updated date.
- Active
Edit stringVersion - The active edit version.
- Canonical
Link string - The canonical link.
- Edit
Version string - The edit version.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Built stringIn - A flag indicating if the lookup is custom (user-defined) or built in.
- Lookup
Display stringName - The lookup display name.
- Lookup
Id string - The lookup OCID.
- Lookup
Reference string - The lookup reference as an integer.
- Lookup
Reference stringString - The lookup reference as a string.
- Referring
Sources []NamespaceLookup Referring Source - AutoLookups
- Status
Summaries []NamespaceLookup Status Summary - StatusSummary
- Time
Updated string - The last updated date.
- active
Edit StringVersion - The active edit version.
- canonical
Link String - The canonical link.
- edit
Version String - The edit version.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Built StringIn - A flag indicating if the lookup is custom (user-defined) or built in.
- lookup
Display StringName - The lookup display name.
- lookup
Id String - The lookup OCID.
- lookup
Reference String - The lookup reference as an integer.
- lookup
Reference StringString - The lookup reference as a string.
- referring
Sources List<NamespaceLookup Referring Source> - AutoLookups
- status
Summaries List<NamespaceLookup Status Summary> - StatusSummary
- time
Updated String - The last updated date.
- active
Edit stringVersion - The active edit version.
- canonical
Link string - The canonical link.
- edit
Version string - The edit version.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Built stringIn - A flag indicating if the lookup is custom (user-defined) or built in.
- lookup
Display stringName - The lookup display name.
- lookup
Id string - The lookup OCID.
- lookup
Reference string - The lookup reference as an integer.
- lookup
Reference stringString - The lookup reference as a string.
- referring
Sources NamespaceLookup Referring Source[] - AutoLookups
- status
Summaries NamespaceLookup Status Summary[] - StatusSummary
- time
Updated string - The last updated date.
- active_
edit_ strversion - The active edit version.
- canonical_
link str - The canonical link.
- edit_
version str - The edit version.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
built_ strin - A flag indicating if the lookup is custom (user-defined) or built in.
- lookup_
display_ strname - The lookup display name.
- lookup_
id str - The lookup OCID.
- lookup_
reference str - The lookup reference as an integer.
- lookup_
reference_ strstring - The lookup reference as a string.
- referring_
sources Sequence[NamespaceLookup Referring Source] - AutoLookups
- status_
summaries Sequence[NamespaceLookup Status Summary] - StatusSummary
- time_
updated str - The last updated date.
- active
Edit StringVersion - The active edit version.
- canonical
Link String - The canonical link.
- edit
Version String - The edit version.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Built StringIn - A flag indicating if the lookup is custom (user-defined) or built in.
- lookup
Display StringName - The lookup display name.
- lookup
Id String - The lookup OCID.
- lookup
Reference String - The lookup reference as an integer.
- lookup
Reference StringString - The lookup reference as a string.
- referring
Sources List<Property Map> - AutoLookups
- status
Summaries List<Property Map> - StatusSummary
- time
Updated String - The last updated date.
Look up Existing NamespaceLookup Resource
Get an existing NamespaceLookup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NamespaceLookupState, opts?: CustomResourceOptions): NamespaceLookup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
active_edit_version: Optional[str] = None,
canonical_link: Optional[str] = None,
categories: Optional[Sequence[NamespaceLookupCategoryArgs]] = None,
char_encoding: Optional[str] = None,
compartment_id: Optional[str] = None,
default_match_value: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
edit_version: Optional[str] = None,
fields: Optional[Sequence[NamespaceLookupFieldArgs]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_built_in: Optional[str] = None,
is_hidden: Optional[bool] = None,
lookup_display_name: Optional[str] = None,
lookup_id: Optional[str] = None,
lookup_name: Optional[str] = None,
lookup_reference: Optional[str] = None,
lookup_reference_string: Optional[str] = None,
max_matches: Optional[str] = None,
namespace: Optional[str] = None,
referring_sources: Optional[Sequence[NamespaceLookupReferringSourceArgs]] = None,
register_lookup_file: Optional[str] = None,
status_summaries: Optional[Sequence[NamespaceLookupStatusSummaryArgs]] = None,
time_updated: Optional[str] = None,
type: Optional[str] = None) -> NamespaceLookup
func GetNamespaceLookup(ctx *Context, name string, id IDInput, state *NamespaceLookupState, opts ...ResourceOption) (*NamespaceLookup, error)
public static NamespaceLookup Get(string name, Input<string> id, NamespaceLookupState? state, CustomResourceOptions? opts = null)
public static NamespaceLookup get(String name, Output<String> id, NamespaceLookupState state, CustomResourceOptions options)
resources: _: type: oci:LogAnalytics:NamespaceLookup get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Active
Edit stringVersion - The active edit version.
- Canonical
Link string - The canonical link.
- Categories
List<Namespace
Lookup Category> - (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- Char
Encoding string - The character encoding of the uploaded file.
- Compartment
Id string - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- Default
Match stringValue - (Updatable) The default match value.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) The lookup description.
- Edit
Version string - The edit version.
- Fields
List<Namespace
Lookup Field> - (Updatable) The lookup fields.
- Dictionary<string, string>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Is
Built stringIn - A flag indicating if the lookup is custom (user-defined) or built in.
- bool
- A flag indicating whether or not the new lookup should be hidden.
- Lookup
Display stringName - The lookup display name.
- Lookup
Id string - The lookup OCID.
- Lookup
Name string - The name of the lookup to operate on.
- Lookup
Reference string - The lookup reference as an integer.
- Lookup
Reference stringString - The lookup reference as a string.
- Max
Matches string - (Updatable) The maximum number of matches.
- Namespace string
- The Logging Analytics namespace used for the request.
- Referring
Sources List<NamespaceLookup Referring Source> - AutoLookups
- Register
Lookup stringFile - Path to the file containing data for lookup creation.
- Status
Summaries List<NamespaceLookup Status Summary> - StatusSummary
- Time
Updated string - The last updated date.
- Type string
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Active
Edit stringVersion - The active edit version.
- Canonical
Link string - The canonical link.
- Categories
[]Namespace
Lookup Category Args - (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- Char
Encoding string - The character encoding of the uploaded file.
- Compartment
Id string - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- Default
Match stringValue - (Updatable) The default match value.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) The lookup description.
- Edit
Version string - The edit version.
- Fields
[]Namespace
Lookup Field Args - (Updatable) The lookup fields.
- map[string]string
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Is
Built stringIn - A flag indicating if the lookup is custom (user-defined) or built in.
- bool
- A flag indicating whether or not the new lookup should be hidden.
- Lookup
Display stringName - The lookup display name.
- Lookup
Id string - The lookup OCID.
- Lookup
Name string - The name of the lookup to operate on.
- Lookup
Reference string - The lookup reference as an integer.
- Lookup
Reference stringString - The lookup reference as a string.
- Max
Matches string - (Updatable) The maximum number of matches.
- Namespace string
- The Logging Analytics namespace used for the request.
- Referring
Sources []NamespaceLookup Referring Source Args - AutoLookups
- Register
Lookup stringFile - Path to the file containing data for lookup creation.
- Status
Summaries []NamespaceLookup Status Summary Args - StatusSummary
- Time
Updated string - The last updated date.
- Type string
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- active
Edit StringVersion - The active edit version.
- canonical
Link String - The canonical link.
- categories
List<Namespace
Lookup Category> - (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- char
Encoding String - The character encoding of the uploaded file.
- compartment
Id String - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- default
Match StringValue - (Updatable) The default match value.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) The lookup description.
- edit
Version String - The edit version.
- fields
List<Namespace
Lookup Field> - (Updatable) The lookup fields.
- Map<String,String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is
Built StringIn - A flag indicating if the lookup is custom (user-defined) or built in.
- Boolean
- A flag indicating whether or not the new lookup should be hidden.
- lookup
Display StringName - The lookup display name.
- lookup
Id String - The lookup OCID.
- lookup
Name String - The name of the lookup to operate on.
- lookup
Reference String - The lookup reference as an integer.
- lookup
Reference StringString - The lookup reference as a string.
- max
Matches String - (Updatable) The maximum number of matches.
- namespace String
- The Logging Analytics namespace used for the request.
- referring
Sources List<NamespaceLookup Referring Source> - AutoLookups
- register
Lookup StringFile - Path to the file containing data for lookup creation.
- status
Summaries List<NamespaceLookup Status Summary> - StatusSummary
- time
Updated String - The last updated date.
- type String
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- active
Edit stringVersion - The active edit version.
- canonical
Link string - The canonical link.
- categories
Namespace
Lookup Category[] - (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- char
Encoding string - The character encoding of the uploaded file.
- compartment
Id string - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- default
Match stringValue - (Updatable) The default match value.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) The lookup description.
- edit
Version string - The edit version.
- fields
Namespace
Lookup Field[] - (Updatable) The lookup fields.
- {[key: string]: string}
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is
Built stringIn - A flag indicating if the lookup is custom (user-defined) or built in.
- boolean
- A flag indicating whether or not the new lookup should be hidden.
- lookup
Display stringName - The lookup display name.
- lookup
Id string - The lookup OCID.
- lookup
Name string - The name of the lookup to operate on.
- lookup
Reference string - The lookup reference as an integer.
- lookup
Reference stringString - The lookup reference as a string.
- max
Matches string - (Updatable) The maximum number of matches.
- namespace string
- The Logging Analytics namespace used for the request.
- referring
Sources NamespaceLookup Referring Source[] - AutoLookups
- register
Lookup stringFile - Path to the file containing data for lookup creation.
- status
Summaries NamespaceLookup Status Summary[] - StatusSummary
- time
Updated string - The last updated date.
- type string
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- active_
edit_ strversion - The active edit version.
- canonical_
link str - The canonical link.
- categories
Sequence[Namespace
Lookup Category Args] - (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- char_
encoding str - The character encoding of the uploaded file.
- compartment_
id str - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- default_
match_ strvalue - (Updatable) The default match value.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) The lookup description.
- edit_
version str - The edit version.
- fields
Sequence[Namespace
Lookup Field Args] - (Updatable) The lookup fields.
- Mapping[str, str]
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is_
built_ strin - A flag indicating if the lookup is custom (user-defined) or built in.
- bool
- A flag indicating whether or not the new lookup should be hidden.
- lookup_
display_ strname - The lookup display name.
- lookup_
id str - The lookup OCID.
- lookup_
name str - The name of the lookup to operate on.
- lookup_
reference str - The lookup reference as an integer.
- lookup_
reference_ strstring - The lookup reference as a string.
- max_
matches str - (Updatable) The maximum number of matches.
- namespace str
- The Logging Analytics namespace used for the request.
- referring_
sources Sequence[NamespaceLookup Referring Source Args] - AutoLookups
- register_
lookup_ strfile - Path to the file containing data for lookup creation.
- status_
summaries Sequence[NamespaceLookup Status Summary Args] - StatusSummary
- time_
updated str - The last updated date.
- type str
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- active
Edit StringVersion - The active edit version.
- canonical
Link String - The canonical link.
- categories List<Property Map>
- (Updatable) An array of categories to assign to the lookup. Specifying the name attribute for each category would suffice. Oracle-defined category assignments cannot be removed.
- char
Encoding String - The character encoding of the uploaded file.
- compartment
Id String - (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
- default
Match StringValue - (Updatable) The default match value.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) The lookup description.
- edit
Version String - The edit version.
- fields List<Property Map>
- (Updatable) The lookup fields.
- Map<String>
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- is
Built StringIn - A flag indicating if the lookup is custom (user-defined) or built in.
- Boolean
- A flag indicating whether or not the new lookup should be hidden.
- lookup
Display StringName - The lookup display name.
- lookup
Id String - The lookup OCID.
- lookup
Name String - The name of the lookup to operate on.
- lookup
Reference String - The lookup reference as an integer.
- lookup
Reference StringString - The lookup reference as a string.
- max
Matches String - (Updatable) The maximum number of matches.
- namespace String
- The Logging Analytics namespace used for the request.
- referring
Sources List<Property Map> - AutoLookups
- register
Lookup StringFile - Path to the file containing data for lookup creation.
- status
Summaries List<Property Map> - StatusSummary
- time
Updated String - The last updated date.
- type String
The lookup type. Valid values are Lookup, Dictionary or Module.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Supporting Types
NamespaceLookupCategory, NamespaceLookupCategoryArgs
- Description string
- (Updatable) The category description.
- Display
Name string - (Updatable) The category display name.
- Is
System bool - (Updatable) The system flag. A value of false denotes a user-created category. A value of true denotes an Oracle-defined category.
- Name string
- (Updatable) The unique name that identifies the category.
- Type string
- (Updatable) The category type. Values include "PRODUCT", "TIER", "VENDOR" and "GENERIC".
- Description string
- (Updatable) The category description.
- Display
Name string - (Updatable) The category display name.
- Is
System bool - (Updatable) The system flag. A value of false denotes a user-created category. A value of true denotes an Oracle-defined category.
- Name string
- (Updatable) The unique name that identifies the category.
- Type string
- (Updatable) The category type. Values include "PRODUCT", "TIER", "VENDOR" and "GENERIC".
- description String
- (Updatable) The category description.
- display
Name String - (Updatable) The category display name.
- is
System Boolean - (Updatable) The system flag. A value of false denotes a user-created category. A value of true denotes an Oracle-defined category.
- name String
- (Updatable) The unique name that identifies the category.
- type String
- (Updatable) The category type. Values include "PRODUCT", "TIER", "VENDOR" and "GENERIC".
- description string
- (Updatable) The category description.
- display
Name string - (Updatable) The category display name.
- is
System boolean - (Updatable) The system flag. A value of false denotes a user-created category. A value of true denotes an Oracle-defined category.
- name string
- (Updatable) The unique name that identifies the category.
- type string
- (Updatable) The category type. Values include "PRODUCT", "TIER", "VENDOR" and "GENERIC".
- description str
- (Updatable) The category description.
- display_
name str - (Updatable) The category display name.
- is_
system bool - (Updatable) The system flag. A value of false denotes a user-created category. A value of true denotes an Oracle-defined category.
- name str
- (Updatable) The unique name that identifies the category.
- type str
- (Updatable) The category type. Values include "PRODUCT", "TIER", "VENDOR" and "GENERIC".
- description String
- (Updatable) The category description.
- display
Name String - (Updatable) The category display name.
- is
System Boolean - (Updatable) The system flag. A value of false denotes a user-created category. A value of true denotes an Oracle-defined category.
- name String
- (Updatable) The unique name that identifies the category.
- type String
- (Updatable) The category type. Values include "PRODUCT", "TIER", "VENDOR" and "GENERIC".
NamespaceLookupField, NamespaceLookupFieldArgs
- Common
Field stringName - (Updatable) The common field name.
- Default
Match stringValue - (Updatable) The default match value.
- Display
Name string - (Updatable) The display name.
- Is
Common boolField - (Updatable) A flag indicating whether or not the field is a common field.
- Match
Operator string - (Updatable) The match operator.
- Name string
- (Updatable) The field name.
- Position string
- (Updatable) The position.
- Common
Field stringName - (Updatable) The common field name.
- Default
Match stringValue - (Updatable) The default match value.
- Display
Name string - (Updatable) The display name.
- Is
Common boolField - (Updatable) A flag indicating whether or not the field is a common field.
- Match
Operator string - (Updatable) The match operator.
- Name string
- (Updatable) The field name.
- Position string
- (Updatable) The position.
- common
Field StringName - (Updatable) The common field name.
- default
Match StringValue - (Updatable) The default match value.
- display
Name String - (Updatable) The display name.
- is
Common BooleanField - (Updatable) A flag indicating whether or not the field is a common field.
- match
Operator String - (Updatable) The match operator.
- name String
- (Updatable) The field name.
- position String
- (Updatable) The position.
- common
Field stringName - (Updatable) The common field name.
- default
Match stringValue - (Updatable) The default match value.
- display
Name string - (Updatable) The display name.
- is
Common booleanField - (Updatable) A flag indicating whether or not the field is a common field.
- match
Operator string - (Updatable) The match operator.
- name string
- (Updatable) The field name.
- position string
- (Updatable) The position.
- common_
field_ strname - (Updatable) The common field name.
- default_
match_ strvalue - (Updatable) The default match value.
- display_
name str - (Updatable) The display name.
- is_
common_ boolfield - (Updatable) A flag indicating whether or not the field is a common field.
- match_
operator str - (Updatable) The match operator.
- name str
- (Updatable) The field name.
- position str
- (Updatable) The position.
- common
Field StringName - (Updatable) The common field name.
- default
Match StringValue - (Updatable) The default match value.
- display
Name String - (Updatable) The display name.
- is
Common BooleanField - (Updatable) A flag indicating whether or not the field is a common field.
- match
Operator String - (Updatable) The match operator.
- name String
- (Updatable) The field name.
- position String
- (Updatable) The position.
NamespaceLookupReferringSource, NamespaceLookupReferringSourceArgs
- Canonical
Link string - The canonical link.
- Total
Count string - The total count.
- Canonical
Link string - The canonical link.
- Total
Count string - The total count.
- canonical
Link String - The canonical link.
- total
Count String - The total count.
- canonical
Link string - The canonical link.
- total
Count string - The total count.
- canonical_
link str - The canonical link.
- total_
count str - The total count.
- canonical
Link String - The canonical link.
- total
Count String - The total count.
NamespaceLookupStatusSummary, NamespaceLookupStatusSummaryArgs
- Chunks
Processed string - The number of chunks processed.
- Failure
Details string - The failure details, if any.
- Filename string
- The filename.
- Status string
- The status.
- Total
Chunks string - The total number of chunks.
- Chunks
Processed string - The number of chunks processed.
- Failure
Details string - The failure details, if any.
- Filename string
- The filename.
- Status string
- The status.
- Total
Chunks string - The total number of chunks.
- chunks
Processed String - The number of chunks processed.
- failure
Details String - The failure details, if any.
- filename String
- The filename.
- status String
- The status.
- total
Chunks String - The total number of chunks.
- chunks
Processed string - The number of chunks processed.
- failure
Details string - The failure details, if any.
- filename string
- The filename.
- status string
- The status.
- total
Chunks string - The total number of chunks.
- chunks_
processed str - The number of chunks processed.
- failure_
details str - The failure details, if any.
- filename str
- The filename.
- status str
- The status.
- total_
chunks str - The total number of chunks.
- chunks
Processed String - The number of chunks processed.
- failure
Details String - The failure details, if any.
- filename String
- The filename.
- status String
- The status.
- total
Chunks String - The total number of chunks.
Import
NamespaceLookups can be imported using the id
, e.g.
$ pulumi import oci:LogAnalytics/namespaceLookup:NamespaceLookup test_namespace_lookup "namespaces/{namespaceName}/lookups/{lookupName}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.