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
The LogAnalyticsImportCustomContent resource accepts the following input properties:
- Import
Custom 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-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).** 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.
- Import
Custom 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-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).** 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.
- import
Custom 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-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).** 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 Boolean - A flag indicating whether or not to overwrite existing content if a conflict is found during import content operation.
- import
Custom 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-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).** 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 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-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).** 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.
- import
Custom 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-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).** 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 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:
- Change
Lists List<LogAnalytics Import Custom Content Change List> - LogAnalyticsImportCustomChangeList
- Content
Name string - The content name.
- Field
Names List<string> - The field names.
- Id string
- The provider-assigned unique ID for this managed resource.
- Parser
Names List<string> - The parser names.
- Source
Names List<string> - The source names.
- Change
Lists []LogAnalytics Import Custom Content Change List - LogAnalyticsImportCustomChangeList
- Content
Name string - The content name.
- Field
Names []string - The field names.
- Id string
- The provider-assigned unique ID for this managed resource.
- Parser
Names []string - The parser names.
- Source
Names []string - The source names.
- change
Lists List<ImportCustom Content Change List> - LogAnalyticsImportCustomChangeList
- content
Name String - The content name.
- field
Names List<String> - The field names.
- id String
- The provider-assigned unique ID for this managed resource.
- parser
Names List<String> - The parser names.
- source
Names List<String> - The source names.
- change
Lists LogAnalytics Import Custom Content Change List[] - LogAnalyticsImportCustomChangeList
- content
Name string - The content name.
- field
Names string[] - The field names.
- id string
- The provider-assigned unique ID for this managed resource.
- parser
Names string[] - The parser names.
- source
Names string[] - The source names.
- change_
lists Sequence[loganalytics.Log Analytics 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.
- change
Lists List<Property Map> - LogAnalyticsImportCustomChangeList
- content
Name String - The content name.
- field
Names List<String> - The field names.
- id String
- The provider-assigned unique ID for this managed resource.
- parser
Names List<String> - The parser names.
- source
Names 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[_loganalytics.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) -> LogAnalyticsImportCustomContent
func 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)
Resource lookup is not supported in YAML
- 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.
- Change
Lists List<LogAnalytics Import Custom Content Change List> - LogAnalyticsImportCustomChangeList
- Content
Name string - The content name.
- 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).** 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 List<string> - The field names.
- Import
Custom stringContent 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 string
- The Logging Analytics namespace used for the request.
- Parser
Names List<string> - The parser names.
- Source
Names List<string> - The source names.
- Change
Lists []LogAnalytics Import Custom Content Change List Args - LogAnalyticsImportCustomChangeList
- Content
Name string - The content name.
- 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).** 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 []string - The field names.
- Import
Custom stringContent 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 string
- The Logging Analytics namespace used for the request.
- Parser
Names []string - The parser names.
- Source
Names []string - The source names.
- change
Lists List<ImportCustom Content Change List> - LogAnalyticsImportCustomChangeList
- content
Name String - The content name.
- 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).** 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 List<String> - The field names.
- import
Custom StringContent File - Path to the file to upload which contains the custom content.
- is
Overwrite 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.
- parser
Names List<String> - The parser names.
- source
Names List<String> - The source names.
- change
Lists LogAnalytics Import Custom Content Change List[] - LogAnalyticsImportCustomChangeList
- content
Name string - The content name.
- 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).** 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 string[] - The field names.
- import
Custom stringContent File - Path to the file to upload which contains the custom content.
- is
Overwrite 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.
- parser
Names string[] - The parser names.
- source
Names string[] - The source names.
- change_
lists Sequence[loganalytics.Log Analytics Import Custom Content Change List Args] - LogAnalyticsImportCustomChangeList
- content_
name str - The content name.
- 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).** 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.
- change
Lists List<Property Map> - LogAnalyticsImportCustomChangeList
- content
Name String - The content name.
- 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).** 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 List<String> - The field names.
- import
Custom StringContent File - Path to the file to upload which contains the custom content.
- is
Overwrite 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.
- parser
Names List<String> - The parser names.
- source
Names List<String> - The source names.
Supporting Types
LogAnalyticsImportCustomContentChangeList, LogAnalyticsImportCustomContentChangeListArgs
- Conflict
Field List<string>Display Names - A list of field display names with conflicts.
- Conflict
Parser List<string>Names - A list of parser names with conflicts.
- Conflict
Source List<string>Names - A list of source names with conflicts.
- Created
Field List<string>Display Names - An array of created field display names.
- Created
Parser List<string>Names - An array of created parser names.
- Created
Source List<string>Names - An array of created source names.
- Updated
Field List<string>Display Names - An array of updated field display names.
- Updated
Parser List<string>Names - An array of updated parser names.
- Updated
Source List<string>Names - An array of updated source names.
- Conflict
Field []stringDisplay Names - A list of field display names with conflicts.
- Conflict
Parser []stringNames - A list of parser names with conflicts.
- Conflict
Source []stringNames - A list of source names with conflicts.
- Created
Field []stringDisplay Names - An array of created field display names.
- Created
Parser []stringNames - An array of created parser names.
- Created
Source []stringNames - An array of created source names.
- Updated
Field []stringDisplay Names - An array of updated field display names.
- Updated
Parser []stringNames - An array of updated parser names.
- Updated
Source []stringNames - An array of updated source names.
- conflict
Field List<String>Display Names - A list of field display names with conflicts.
- conflict
Parser List<String>Names - A list of parser names with conflicts.
- conflict
Source List<String>Names - A list of source names with conflicts.
- created
Field List<String>Display Names - An array of created field display names.
- created
Parser List<String>Names - An array of created parser names.
- created
Source List<String>Names - An array of created source names.
- updated
Field List<String>Display Names - An array of updated field display names.
- updated
Parser List<String>Names - An array of updated parser names.
- updated
Source List<String>Names - An array of updated source names.
- conflict
Field string[]Display Names - A list of field display names with conflicts.
- conflict
Parser string[]Names - A list of parser names with conflicts.
- conflict
Source string[]Names - A list of source names with conflicts.
- created
Field string[]Display Names - An array of created field display names.
- created
Parser string[]Names - An array of created parser names.
- created
Source string[]Names - An array of created source names.
- updated
Field string[]Display Names - An array of updated field display names.
- updated
Parser string[]Names - An array of updated parser names.
- updated
Source 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.
- conflict
Field List<String>Display Names - A list of field display names with conflicts.
- conflict
Parser List<String>Names - A list of parser names with conflicts.
- conflict
Source List<String>Names - A list of source names with conflicts.
- created
Field List<String>Display Names - An array of created field display names.
- created
Parser List<String>Names - An array of created parser names.
- created
Source List<String>Names - An array of created source names.
- updated
Field List<String>Display Names - An array of updated field display names.
- updated
Parser List<String>Names - An array of updated parser names.
- updated
Source 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
oci
Terraform Provider.