1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. LogAnalytics
  5. NamespaceLookupsAppendDataManagement
Oracle Cloud Infrastructure v3.0.0 published on Thursday, Jun 5, 2025 by Pulumi

oci.LogAnalytics.NamespaceLookupsAppendDataManagement

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.0.0 published on Thursday, Jun 5, 2025 by Pulumi

    This resource provides the Namespace Lookups Append Data Management resource in Oracle Cloud Infrastructure Log Analytics service.

    Appends data to the lookup content. The csv file containing the content to be appended is passed in as binary data in the request.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    resources:
      testNamespaceLookupsAppendDataManagement:
        type: oci:LogAnalytics:NamespaceLookupsAppendDataManagement
        name: test_namespace_lookups_append_data_management
        properties:
          appendLookupFileBody: ${namespaceLookupsAppendDataManagementAppendLookupFileBody}
          lookupName: ${namespaceLookupsAppendDataManagementLookupName}
          namespace: ${namespaceLookupsAppendDataManagementNamespace}
          charEncoding: ${namespaceLookupsAppendDataManagementCharEncoding}
          expect: ${namespaceLookupsAppendDataManagementExpect}
          isForce: ${namespaceLookupsAppendDataManagementIsForce}
    

    Create NamespaceLookupsAppendDataManagement Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NamespaceLookupsAppendDataManagement(name: string, args: NamespaceLookupsAppendDataManagementArgs, opts?: CustomResourceOptions);
    @overload
    def NamespaceLookupsAppendDataManagement(resource_name: str,
                                             args: NamespaceLookupsAppendDataManagementArgs,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def NamespaceLookupsAppendDataManagement(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             append_lookup_file: Optional[str] = None,
                                             lookup_name: Optional[str] = None,
                                             namespace: Optional[str] = None,
                                             char_encoding: Optional[str] = None,
                                             expect: Optional[str] = None,
                                             is_force: Optional[bool] = None)
    func NewNamespaceLookupsAppendDataManagement(ctx *Context, name string, args NamespaceLookupsAppendDataManagementArgs, opts ...ResourceOption) (*NamespaceLookupsAppendDataManagement, error)
    public NamespaceLookupsAppendDataManagement(string name, NamespaceLookupsAppendDataManagementArgs args, CustomResourceOptions? opts = null)
    public NamespaceLookupsAppendDataManagement(String name, NamespaceLookupsAppendDataManagementArgs args)
    public NamespaceLookupsAppendDataManagement(String name, NamespaceLookupsAppendDataManagementArgs args, CustomResourceOptions options)
    
    type: oci:LogAnalytics:NamespaceLookupsAppendDataManagement
    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 NamespaceLookupsAppendDataManagementArgs
    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 NamespaceLookupsAppendDataManagementArgs
    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 NamespaceLookupsAppendDataManagementArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NamespaceLookupsAppendDataManagementArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NamespaceLookupsAppendDataManagementArgs
    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 namespaceLookupsAppendDataManagementResource = new Oci.LogAnalytics.NamespaceLookupsAppendDataManagement("namespaceLookupsAppendDataManagementResource", new()
    {
        AppendLookupFile = "string",
        LookupName = "string",
        Namespace = "string",
        CharEncoding = "string",
        Expect = "string",
        IsForce = false,
    });
    
    example, err := loganalytics.NewNamespaceLookupsAppendDataManagement(ctx, "namespaceLookupsAppendDataManagementResource", &loganalytics.NamespaceLookupsAppendDataManagementArgs{
    	AppendLookupFile: pulumi.String("string"),
    	LookupName:       pulumi.String("string"),
    	Namespace:        pulumi.String("string"),
    	CharEncoding:     pulumi.String("string"),
    	Expect:           pulumi.String("string"),
    	IsForce:          pulumi.Bool(false),
    })
    
    var namespaceLookupsAppendDataManagementResource = new NamespaceLookupsAppendDataManagement("namespaceLookupsAppendDataManagementResource", NamespaceLookupsAppendDataManagementArgs.builder()
        .appendLookupFile("string")
        .lookupName("string")
        .namespace("string")
        .charEncoding("string")
        .expect("string")
        .isForce(false)
        .build());
    
    namespace_lookups_append_data_management_resource = oci.log_analytics.NamespaceLookupsAppendDataManagement("namespaceLookupsAppendDataManagementResource",
        append_lookup_file="string",
        lookup_name="string",
        namespace="string",
        char_encoding="string",
        expect="string",
        is_force=False)
    
    const namespaceLookupsAppendDataManagementResource = new oci.loganalytics.NamespaceLookupsAppendDataManagement("namespaceLookupsAppendDataManagementResource", {
        appendLookupFile: "string",
        lookupName: "string",
        namespace: "string",
        charEncoding: "string",
        expect: "string",
        isForce: false,
    });
    
    type: oci:LogAnalytics:NamespaceLookupsAppendDataManagement
    properties:
        appendLookupFile: string
        charEncoding: string
        expect: string
        isForce: false
        lookupName: string
        namespace: string
    

    NamespaceLookupsAppendDataManagement 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 NamespaceLookupsAppendDataManagement resource accepts the following input properties:

    AppendLookupFile string
    LookupName string
    The name of the lookup to operate on.
    Namespace string

    The Logging Analytics namespace used for the request.

    ** 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

    CharEncoding string
    The character encoding of the uploaded file.
    Expect string
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    IsForce bool
    is force
    AppendLookupFile string
    LookupName string
    The name of the lookup to operate on.
    Namespace string

    The Logging Analytics namespace used for the request.

    ** 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

    CharEncoding string
    The character encoding of the uploaded file.
    Expect string
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    IsForce bool
    is force
    appendLookupFile String
    lookupName String
    The name of the lookup to operate on.
    namespace String

    The Logging Analytics namespace used for the request.

    ** 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

    charEncoding String
    The character encoding of the uploaded file.
    expect String
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    isForce Boolean
    is force
    appendLookupFile string
    lookupName string
    The name of the lookup to operate on.
    namespace string

    The Logging Analytics namespace used for the request.

    ** 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

    charEncoding string
    The character encoding of the uploaded file.
    expect string
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    isForce boolean
    is force
    append_lookup_file str
    lookup_name str
    The name of the lookup to operate on.
    namespace str

    The Logging Analytics namespace used for the request.

    ** 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

    char_encoding str
    The character encoding of the uploaded file.
    expect str
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    is_force bool
    is force
    appendLookupFile String
    lookupName String
    The name of the lookup to operate on.
    namespace String

    The Logging Analytics namespace used for the request.

    ** 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

    charEncoding String
    The character encoding of the uploaded file.
    expect String
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    isForce Boolean
    is force

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NamespaceLookupsAppendDataManagement resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NamespaceLookupsAppendDataManagement Resource

    Get an existing NamespaceLookupsAppendDataManagement 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?: NamespaceLookupsAppendDataManagementState, opts?: CustomResourceOptions): NamespaceLookupsAppendDataManagement
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            append_lookup_file: Optional[str] = None,
            char_encoding: Optional[str] = None,
            expect: Optional[str] = None,
            is_force: Optional[bool] = None,
            lookup_name: Optional[str] = None,
            namespace: Optional[str] = None) -> NamespaceLookupsAppendDataManagement
    func GetNamespaceLookupsAppendDataManagement(ctx *Context, name string, id IDInput, state *NamespaceLookupsAppendDataManagementState, opts ...ResourceOption) (*NamespaceLookupsAppendDataManagement, error)
    public static NamespaceLookupsAppendDataManagement Get(string name, Input<string> id, NamespaceLookupsAppendDataManagementState? state, CustomResourceOptions? opts = null)
    public static NamespaceLookupsAppendDataManagement get(String name, Output<String> id, NamespaceLookupsAppendDataManagementState state, CustomResourceOptions options)
    resources:  _:    type: oci:LogAnalytics:NamespaceLookupsAppendDataManagement    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.
    The following state arguments are supported:
    AppendLookupFile string
    CharEncoding string
    The character encoding of the uploaded file.
    Expect string
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    IsForce bool
    is force
    LookupName string
    The name of the lookup to operate on.
    Namespace string

    The Logging Analytics namespace used for the request.

    ** 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

    AppendLookupFile string
    CharEncoding string
    The character encoding of the uploaded file.
    Expect string
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    IsForce bool
    is force
    LookupName string
    The name of the lookup to operate on.
    Namespace string

    The Logging Analytics namespace used for the request.

    ** 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

    appendLookupFile String
    charEncoding String
    The character encoding of the uploaded file.
    expect String
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    isForce Boolean
    is force
    lookupName String
    The name of the lookup to operate on.
    namespace String

    The Logging Analytics namespace used for the request.

    ** 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

    appendLookupFile string
    charEncoding string
    The character encoding of the uploaded file.
    expect string
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    isForce boolean
    is force
    lookupName string
    The name of the lookup to operate on.
    namespace string

    The Logging Analytics namespace used for the request.

    ** 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

    append_lookup_file str
    char_encoding str
    The character encoding of the uploaded file.
    expect str
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    is_force bool
    is force
    lookup_name str
    The name of the lookup to operate on.
    namespace str

    The Logging Analytics namespace used for the request.

    ** 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

    appendLookupFile String
    charEncoding String
    The character encoding of the uploaded file.
    expect String
    A value of 100-continue requests preliminary verification of the request method, path, and headers before the request body is sent. If no error results from such verification, the server will send a 100 (Continue) interim response to indicate readiness for the request body. The only allowed value for this parameter is "100-Continue" (case-insensitive).
    isForce Boolean
    is force
    lookupName String
    The name of the lookup to operate on.
    namespace String

    The Logging Analytics namespace used for the request.

    ** 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

    Import

    Import is not supported for NamespaceLookupsAppendDataManagement

    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.
    oci logo
    Oracle Cloud Infrastructure v3.0.0 published on Thursday, Jun 5, 2025 by Pulumi