oci.LogAnalytics.LogAnalyticsImportCustomContent
Explore with Pulumi AI
This resource provides the Log Analytics Import Custom Content resource in Oracle Cloud Infrastructure Log Analytics service.
Imports the specified custom content from the input in zip format.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testLogAnalyticsImportCustomContent = new oci.loganalytics.LogAnalyticsImportCustomContent("test_log_analytics_import_custom_content", {
    importCustomContentFile: logAnalyticsImportCustomContentImportCustomContentFile,
    namespace: logAnalyticsImportCustomContentNamespace,
    expect: logAnalyticsImportCustomContentExpect,
    isOverwrite: logAnalyticsImportCustomContentIsOverwrite,
});
import pulumi
import pulumi_oci as oci
test_log_analytics_import_custom_content = oci.log_analytics.LogAnalyticsImportCustomContent("test_log_analytics_import_custom_content",
    import_custom_content_file=log_analytics_import_custom_content_import_custom_content_file,
    namespace=log_analytics_import_custom_content_namespace,
    expect=log_analytics_import_custom_content_expect,
    is_overwrite=log_analytics_import_custom_content_is_overwrite)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/loganalytics"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := loganalytics.NewLogAnalyticsImportCustomContent(ctx, "test_log_analytics_import_custom_content", &loganalytics.LogAnalyticsImportCustomContentArgs{
			ImportCustomContentFile: pulumi.Any(logAnalyticsImportCustomContentImportCustomContentFile),
			Namespace:               pulumi.Any(logAnalyticsImportCustomContentNamespace),
			Expect:                  pulumi.Any(logAnalyticsImportCustomContentExpect),
			IsOverwrite:             pulumi.Any(logAnalyticsImportCustomContentIsOverwrite),
		})
		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 testLogAnalyticsImportCustomContent = new Oci.LogAnalytics.LogAnalyticsImportCustomContent("test_log_analytics_import_custom_content", new()
    {
        ImportCustomContentFile = logAnalyticsImportCustomContentImportCustomContentFile,
        Namespace = logAnalyticsImportCustomContentNamespace,
        Expect = logAnalyticsImportCustomContentExpect,
        IsOverwrite = logAnalyticsImportCustomContentIsOverwrite,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.LogAnalytics.LogAnalyticsImportCustomContent;
import com.pulumi.oci.LogAnalytics.LogAnalyticsImportCustomContentArgs;
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 testLogAnalyticsImportCustomContent = new LogAnalyticsImportCustomContent("testLogAnalyticsImportCustomContent", LogAnalyticsImportCustomContentArgs.builder()
            .importCustomContentFile(logAnalyticsImportCustomContentImportCustomContentFile)
            .namespace(logAnalyticsImportCustomContentNamespace)
            .expect(logAnalyticsImportCustomContentExpect)
            .isOverwrite(logAnalyticsImportCustomContentIsOverwrite)
            .build());
    }
}
resources:
  testLogAnalyticsImportCustomContent:
    type: oci:LogAnalytics:LogAnalyticsImportCustomContent
    name: test_log_analytics_import_custom_content
    properties:
      importCustomContentFile: ${logAnalyticsImportCustomContentImportCustomContentFile}
      namespace: ${logAnalyticsImportCustomContentNamespace}
      expect: ${logAnalyticsImportCustomContentExpect}
      isOverwrite: ${logAnalyticsImportCustomContentIsOverwrite}
Create LogAnalyticsImportCustomContent Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LogAnalyticsImportCustomContent(name: string, args: LogAnalyticsImportCustomContentArgs, opts?: CustomResourceOptions);@overload
def LogAnalyticsImportCustomContent(resource_name: str,
                                    args: LogAnalyticsImportCustomContentArgs,
                                    opts: Optional[ResourceOptions] = None)
@overload
def LogAnalyticsImportCustomContent(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    import_custom_content_file: Optional[str] = None,
                                    namespace: Optional[str] = None,
                                    expect: Optional[str] = None,
                                    is_overwrite: Optional[bool] = None)func NewLogAnalyticsImportCustomContent(ctx *Context, name string, args LogAnalyticsImportCustomContentArgs, opts ...ResourceOption) (*LogAnalyticsImportCustomContent, error)public LogAnalyticsImportCustomContent(string name, LogAnalyticsImportCustomContentArgs args, CustomResourceOptions? opts = null)
public LogAnalyticsImportCustomContent(String name, LogAnalyticsImportCustomContentArgs args)
public LogAnalyticsImportCustomContent(String name, LogAnalyticsImportCustomContentArgs args, CustomResourceOptions options)
type: oci:LogAnalytics:LogAnalyticsImportCustomContent
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 LogAnalyticsImportCustomContentArgs
- 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 LogAnalyticsImportCustomContentArgs
- 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 LogAnalyticsImportCustomContentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogAnalyticsImportCustomContentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LogAnalyticsImportCustomContentArgs
- 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 logAnalyticsImportCustomContentResource = new Oci.LogAnalytics.LogAnalyticsImportCustomContent("logAnalyticsImportCustomContentResource", new()
{
    ImportCustomContentFile = "string",
    Namespace = "string",
    Expect = "string",
    IsOverwrite = false,
});
example, err := loganalytics.NewLogAnalyticsImportCustomContent(ctx, "logAnalyticsImportCustomContentResource", &loganalytics.LogAnalyticsImportCustomContentArgs{
	ImportCustomContentFile: pulumi.String("string"),
	Namespace:               pulumi.String("string"),
	Expect:                  pulumi.String("string"),
	IsOverwrite:             pulumi.Bool(false),
})
var logAnalyticsImportCustomContentResource = new LogAnalyticsImportCustomContent("logAnalyticsImportCustomContentResource", LogAnalyticsImportCustomContentArgs.builder()
    .importCustomContentFile("string")
    .namespace("string")
    .expect("string")
    .isOverwrite(false)
    .build());
log_analytics_import_custom_content_resource = oci.log_analytics.LogAnalyticsImportCustomContent("logAnalyticsImportCustomContentResource",
    import_custom_content_file="string",
    namespace="string",
    expect="string",
    is_overwrite=False)
const logAnalyticsImportCustomContentResource = new oci.loganalytics.LogAnalyticsImportCustomContent("logAnalyticsImportCustomContentResource", {
    importCustomContentFile: "string",
    namespace: "string",
    expect: "string",
    isOverwrite: false,
});
type: oci:LogAnalytics:LogAnalyticsImportCustomContent
properties:
    expect: string
    importCustomContentFile: string
    isOverwrite: false
    namespace: string
LogAnalyticsImportCustomContent 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 LogAnalyticsImportCustomContent resource accepts the following input properties:
- ImportCustom stringContent File 
- Path to the file to upload which contains the custom content.
- Namespace string
- The Logging Analytics namespace used for the request.
- Expect string
- A value of - 100-continuerequests 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).- ** 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 
- IsOverwrite bool
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- ImportCustom stringContent File 
- Path to the file to upload which contains the custom content.
- Namespace string
- The Logging Analytics namespace used for the request.
- Expect string
- A value of - 100-continuerequests 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).- ** 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 
- IsOverwrite bool
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- importCustom StringContent File 
- Path to the file to upload which contains the custom content.
- namespace String
- The Logging Analytics namespace used for the request.
- expect String
- A value of - 100-continuerequests 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).- ** 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 
- isOverwrite Boolean
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- importCustom stringContent File 
- Path to the file to upload which contains the custom content.
- namespace string
- The Logging Analytics namespace used for the request.
- expect string
- A value of - 100-continuerequests 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).- ** 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 
- isOverwrite boolean
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- import_custom_ strcontent_ file 
- Path to the file to upload which contains the custom content.
- namespace str
- The Logging Analytics namespace used for the request.
- expect str
- A value of - 100-continuerequests 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).- ** 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 
- is_overwrite bool
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- importCustom StringContent File 
- Path to the file to upload which contains the custom content.
- namespace String
- The Logging Analytics namespace used for the request.
- expect String
- A value of - 100-continuerequests 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).- ** 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 
- isOverwrite Boolean
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
Outputs
All input properties are implicitly available as output properties. Additionally, the LogAnalyticsImportCustomContent resource produces the following output properties:
- ChangeLists List<LogAnalytics Import Custom Content Change List> 
- LogAnalyticsImportCustomChangeList
- ContentName string
- The content name.
- FieldNames List<string>
- The field names.
- Id string
- The provider-assigned unique ID for this managed resource.
- ParserNames List<string>
- The parser names.
- SourceNames List<string>
- The source names.
- ChangeLists []LogAnalytics Import Custom Content Change List 
- LogAnalyticsImportCustomChangeList
- ContentName string
- The content name.
- FieldNames []string
- The field names.
- Id string
- The provider-assigned unique ID for this managed resource.
- ParserNames []string
- The parser names.
- SourceNames []string
- The source names.
- changeLists List<ImportCustom Content Change List> 
- LogAnalyticsImportCustomChangeList
- contentName String
- The content name.
- fieldNames List<String>
- The field names.
- id String
- The provider-assigned unique ID for this managed resource.
- parserNames List<String>
- The parser names.
- sourceNames List<String>
- The source names.
- changeLists LogAnalytics Import Custom Content Change List[] 
- LogAnalyticsImportCustomChangeList
- contentName string
- The content name.
- fieldNames string[]
- The field names.
- id string
- The provider-assigned unique ID for this managed resource.
- parserNames string[]
- The parser names.
- sourceNames string[]
- The source names.
- change_lists Sequence[LogAnalytics Import Custom Content Change List] 
- LogAnalyticsImportCustomChangeList
- content_name str
- The content name.
- field_names Sequence[str]
- The field names.
- id str
- The provider-assigned unique ID for this managed resource.
- parser_names Sequence[str]
- The parser names.
- source_names Sequence[str]
- The source names.
- changeLists List<Property Map>
- LogAnalyticsImportCustomChangeList
- contentName String
- The content name.
- fieldNames List<String>
- The field names.
- id String
- The provider-assigned unique ID for this managed resource.
- parserNames List<String>
- The parser names.
- sourceNames List<String>
- The source names.
Look up Existing LogAnalyticsImportCustomContent Resource
Get an existing LogAnalyticsImportCustomContent 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?: LogAnalyticsImportCustomContentState, opts?: CustomResourceOptions): LogAnalyticsImportCustomContent@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        change_lists: Optional[Sequence[LogAnalyticsImportCustomContentChangeListArgs]] = None,
        content_name: Optional[str] = None,
        expect: Optional[str] = None,
        field_names: Optional[Sequence[str]] = None,
        import_custom_content_file: Optional[str] = None,
        is_overwrite: Optional[bool] = None,
        namespace: Optional[str] = None,
        parser_names: Optional[Sequence[str]] = None,
        source_names: Optional[Sequence[str]] = None) -> LogAnalyticsImportCustomContentfunc GetLogAnalyticsImportCustomContent(ctx *Context, name string, id IDInput, state *LogAnalyticsImportCustomContentState, opts ...ResourceOption) (*LogAnalyticsImportCustomContent, error)public static LogAnalyticsImportCustomContent Get(string name, Input<string> id, LogAnalyticsImportCustomContentState? state, CustomResourceOptions? opts = null)public static LogAnalyticsImportCustomContent get(String name, Output<String> id, LogAnalyticsImportCustomContentState state, CustomResourceOptions options)resources:  _:    type: oci:LogAnalytics:LogAnalyticsImportCustomContent    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.
- ChangeLists List<LogAnalytics Import Custom Content Change List> 
- LogAnalyticsImportCustomChangeList
- ContentName string
- The content name.
- Expect string
- A value of - 100-continuerequests 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).- ** 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 
- FieldNames List<string>
- The field names.
- ImportCustom stringContent File 
- Path to the file to upload which contains the custom content.
- IsOverwrite bool
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- Namespace string
- The Logging Analytics namespace used for the request.
- ParserNames List<string>
- The parser names.
- SourceNames List<string>
- The source names.
- ChangeLists []LogAnalytics Import Custom Content Change List Args 
- LogAnalyticsImportCustomChangeList
- ContentName string
- The content name.
- Expect string
- A value of - 100-continuerequests 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).- ** 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 
- FieldNames []string
- The field names.
- ImportCustom stringContent File 
- Path to the file to upload which contains the custom content.
- IsOverwrite bool
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- Namespace string
- The Logging Analytics namespace used for the request.
- ParserNames []string
- The parser names.
- SourceNames []string
- The source names.
- changeLists List<ImportCustom Content Change List> 
- LogAnalyticsImportCustomChangeList
- contentName String
- The content name.
- expect String
- A value of - 100-continuerequests 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).- ** 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 
- fieldNames List<String>
- The field names.
- importCustom StringContent File 
- Path to the file to upload which contains the custom content.
- isOverwrite Boolean
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- namespace String
- The Logging Analytics namespace used for the request.
- parserNames List<String>
- The parser names.
- sourceNames List<String>
- The source names.
- changeLists LogAnalytics Import Custom Content Change List[] 
- LogAnalyticsImportCustomChangeList
- contentName string
- The content name.
- expect string
- A value of - 100-continuerequests 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).- ** 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 
- fieldNames string[]
- The field names.
- importCustom stringContent File 
- Path to the file to upload which contains the custom content.
- isOverwrite boolean
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- namespace string
- The Logging Analytics namespace used for the request.
- parserNames string[]
- The parser names.
- sourceNames string[]
- The source names.
- change_lists Sequence[LogAnalytics Import Custom Content Change List Args] 
- LogAnalyticsImportCustomChangeList
- content_name str
- The content name.
- expect str
- A value of - 100-continuerequests 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).- ** 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 
- field_names Sequence[str]
- The field names.
- import_custom_ strcontent_ file 
- Path to the file to upload which contains the custom content.
- is_overwrite bool
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- namespace str
- The Logging Analytics namespace used for the request.
- parser_names Sequence[str]
- The parser names.
- source_names Sequence[str]
- The source names.
- changeLists List<Property Map>
- LogAnalyticsImportCustomChangeList
- contentName String
- The content name.
- expect String
- A value of - 100-continuerequests 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).- ** 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 
- fieldNames List<String>
- The field names.
- importCustom StringContent File 
- Path to the file to upload which contains the custom content.
- isOverwrite Boolean
- A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- namespace String
- The Logging Analytics namespace used for the request.
- parserNames List<String>
- The parser names.
- sourceNames List<String>
- The source names.
Supporting Types
LogAnalyticsImportCustomContentChangeList, LogAnalyticsImportCustomContentChangeListArgs              
- ConflictField List<string>Display Names 
- A list of field display names with conflicts.
- ConflictParser List<string>Names 
- A list of parser names with conflicts.
- ConflictSource List<string>Names 
- A list of source names with conflicts.
- CreatedField List<string>Display Names 
- An array of created field display names.
- CreatedParser List<string>Names 
- An array of created parser names.
- CreatedSource List<string>Names 
- An array of created source names.
- UpdatedField List<string>Display Names 
- An array of updated field display names.
- UpdatedParser List<string>Names 
- An array of updated parser names.
- UpdatedSource List<string>Names 
- An array of updated source names.
- ConflictField []stringDisplay Names 
- A list of field display names with conflicts.
- ConflictParser []stringNames 
- A list of parser names with conflicts.
- ConflictSource []stringNames 
- A list of source names with conflicts.
- CreatedField []stringDisplay Names 
- An array of created field display names.
- CreatedParser []stringNames 
- An array of created parser names.
- CreatedSource []stringNames 
- An array of created source names.
- UpdatedField []stringDisplay Names 
- An array of updated field display names.
- UpdatedParser []stringNames 
- An array of updated parser names.
- UpdatedSource []stringNames 
- An array of updated source names.
- conflictField List<String>Display Names 
- A list of field display names with conflicts.
- conflictParser List<String>Names 
- A list of parser names with conflicts.
- conflictSource List<String>Names 
- A list of source names with conflicts.
- createdField List<String>Display Names 
- An array of created field display names.
- createdParser List<String>Names 
- An array of created parser names.
- createdSource List<String>Names 
- An array of created source names.
- updatedField List<String>Display Names 
- An array of updated field display names.
- updatedParser List<String>Names 
- An array of updated parser names.
- updatedSource List<String>Names 
- An array of updated source names.
- conflictField string[]Display Names 
- A list of field display names with conflicts.
- conflictParser string[]Names 
- A list of parser names with conflicts.
- conflictSource string[]Names 
- A list of source names with conflicts.
- createdField string[]Display Names 
- An array of created field display names.
- createdParser string[]Names 
- An array of created parser names.
- createdSource string[]Names 
- An array of created source names.
- updatedField string[]Display Names 
- An array of updated field display names.
- updatedParser string[]Names 
- An array of updated parser names.
- updatedSource string[]Names 
- An array of updated source names.
- conflict_field_ Sequence[str]display_ names 
- A list of field display names with conflicts.
- conflict_parser_ Sequence[str]names 
- A list of parser names with conflicts.
- conflict_source_ Sequence[str]names 
- A list of source names with conflicts.
- created_field_ Sequence[str]display_ names 
- An array of created field display names.
- created_parser_ Sequence[str]names 
- An array of created parser names.
- created_source_ Sequence[str]names 
- An array of created source names.
- updated_field_ Sequence[str]display_ names 
- An array of updated field display names.
- updated_parser_ Sequence[str]names 
- An array of updated parser names.
- updated_source_ Sequence[str]names 
- An array of updated source names.
- conflictField List<String>Display Names 
- A list of field display names with conflicts.
- conflictParser List<String>Names 
- A list of parser names with conflicts.
- conflictSource List<String>Names 
- A list of source names with conflicts.
- createdField List<String>Display Names 
- An array of created field display names.
- createdParser List<String>Names 
- An array of created parser names.
- createdSource List<String>Names 
- An array of created source names.
- updatedField List<String>Display Names 
- An array of updated field display names.
- updatedParser List<String>Names 
- An array of updated parser names.
- updatedSource List<String>Names 
- An array of updated source names.
Import
Import is not supported for LogAnalyticsImportCustomContent
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 ociTerraform Provider.