1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CloudGuard
  5. WlpAgent
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi

oci.CloudGuard.WlpAgent

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi

    This resource provides the Wlp Agent resource in Oracle Cloud Infrastructure Cloud Guard service.

    Creates and registers a WLP agent for an on-premise resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testWlpAgent = new oci.cloudguard.WlpAgent("test_wlp_agent", {
        agentVersion: wlpAgentAgentVersion,
        certificateSignedRequest: wlpAgentCertificateSignedRequest,
        compartmentId: compartmentId,
        osInfo: wlpAgentOsInfo,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        freeformTags: {
            "bar-key": "value",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_wlp_agent = oci.cloud_guard.WlpAgent("test_wlp_agent",
        agent_version=wlp_agent_agent_version,
        certificate_signed_request=wlp_agent_certificate_signed_request,
        compartment_id=compartment_id,
        os_info=wlp_agent_os_info,
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        freeform_tags={
            "bar-key": "value",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/CloudGuard"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := CloudGuard.NewWlpAgent(ctx, "test_wlp_agent", &CloudGuard.WlpAgentArgs{
    			AgentVersion:             pulumi.Any(wlpAgentAgentVersion),
    			CertificateSignedRequest: pulumi.Any(wlpAgentCertificateSignedRequest),
    			CompartmentId:            pulumi.Any(compartmentId),
    			OsInfo:                   pulumi.Any(wlpAgentOsInfo),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    		})
    		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 testWlpAgent = new Oci.CloudGuard.WlpAgent("test_wlp_agent", new()
        {
            AgentVersion = wlpAgentAgentVersion,
            CertificateSignedRequest = wlpAgentCertificateSignedRequest,
            CompartmentId = compartmentId,
            OsInfo = wlpAgentOsInfo,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.CloudGuard.WlpAgent;
    import com.pulumi.oci.CloudGuard.WlpAgentArgs;
    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 testWlpAgent = new WlpAgent("testWlpAgent", WlpAgentArgs.builder()
                .agentVersion(wlpAgentAgentVersion)
                .certificateSignedRequest(wlpAgentCertificateSignedRequest)
                .compartmentId(compartmentId)
                .osInfo(wlpAgentOsInfo)
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .freeformTags(Map.of("bar-key", "value"))
                .build());
    
        }
    }
    
    resources:
      testWlpAgent:
        type: oci:CloudGuard:WlpAgent
        name: test_wlp_agent
        properties:
          agentVersion: ${wlpAgentAgentVersion}
          certificateSignedRequest: ${wlpAgentCertificateSignedRequest}
          compartmentId: ${compartmentId}
          osInfo: ${wlpAgentOsInfo}
          definedTags:
            foo-namespace.bar-key: value
          freeformTags:
            bar-key: value
    

    Create WlpAgent Resource

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

    Constructor syntax

    new WlpAgent(name: string, args: WlpAgentArgs, opts?: CustomResourceOptions);
    @overload
    def WlpAgent(resource_name: str,
                 args: WlpAgentArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def WlpAgent(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 agent_version: Optional[str] = None,
                 certificate_signed_request: Optional[str] = None,
                 compartment_id: Optional[str] = None,
                 os_info: Optional[str] = None,
                 defined_tags: Optional[Mapping[str, Any]] = None,
                 freeform_tags: Optional[Mapping[str, Any]] = None)
    func NewWlpAgent(ctx *Context, name string, args WlpAgentArgs, opts ...ResourceOption) (*WlpAgent, error)
    public WlpAgent(string name, WlpAgentArgs args, CustomResourceOptions? opts = null)
    public WlpAgent(String name, WlpAgentArgs args)
    public WlpAgent(String name, WlpAgentArgs args, CustomResourceOptions options)
    
    type: oci:CloudGuard:WlpAgent
    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 WlpAgentArgs
    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 WlpAgentArgs
    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 WlpAgentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WlpAgentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WlpAgentArgs
    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 wlpAgentResource = new Oci.CloudGuard.WlpAgent("wlpAgentResource", new()
    {
        AgentVersion = "string",
        CertificateSignedRequest = "string",
        CompartmentId = "string",
        OsInfo = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        FreeformTags = 
        {
            { "string", "any" },
        },
    });
    
    example, err := CloudGuard.NewWlpAgent(ctx, "wlpAgentResource", &CloudGuard.WlpAgentArgs{
    	AgentVersion:             pulumi.String("string"),
    	CertificateSignedRequest: pulumi.String("string"),
    	CompartmentId:            pulumi.String("string"),
    	OsInfo:                   pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    })
    
    var wlpAgentResource = new WlpAgent("wlpAgentResource", WlpAgentArgs.builder()
        .agentVersion("string")
        .certificateSignedRequest("string")
        .compartmentId("string")
        .osInfo("string")
        .definedTags(Map.of("string", "any"))
        .freeformTags(Map.of("string", "any"))
        .build());
    
    wlp_agent_resource = oci.cloud_guard.WlpAgent("wlpAgentResource",
        agent_version="string",
        certificate_signed_request="string",
        compartment_id="string",
        os_info="string",
        defined_tags={
            "string": "any",
        },
        freeform_tags={
            "string": "any",
        })
    
    const wlpAgentResource = new oci.cloudguard.WlpAgent("wlpAgentResource", {
        agentVersion: "string",
        certificateSignedRequest: "string",
        compartmentId: "string",
        osInfo: "string",
        definedTags: {
            string: "any",
        },
        freeformTags: {
            string: "any",
        },
    });
    
    type: oci:CloudGuard:WlpAgent
    properties:
        agentVersion: string
        certificateSignedRequest: string
        compartmentId: string
        definedTags:
            string: any
        freeformTags:
            string: any
        osInfo: string
    

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

    AgentVersion string
    The version of the agent making the request
    CertificateSignedRequest string
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    CompartmentId string
    Compartment OCID of the host
    OsInfo string

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags Dictionary<string, object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    AgentVersion string
    The version of the agent making the request
    CertificateSignedRequest string
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    CompartmentId string
    Compartment OCID of the host
    OsInfo string

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags map[string]interface{}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    agentVersion String
    The version of the agent making the request
    certificateSignedRequest String
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    compartmentId String
    Compartment OCID of the host
    osInfo String

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String,Object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    agentVersion string
    The version of the agent making the request
    certificateSignedRequest string
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    compartmentId string
    Compartment OCID of the host
    osInfo string

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags {[key: string]: any}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    agent_version str
    The version of the agent making the request
    certificate_signed_request str
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    compartment_id str
    Compartment OCID of the host
    os_info str

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeform_tags Mapping[str, Any]

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    agentVersion String
    The version of the agent making the request
    certificateSignedRequest String
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    compartmentId String
    Compartment OCID of the host
    osInfo String

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<Any>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    Outputs

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

    CertificateId string
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    HostId string
    OCID for instance in which WlpAgent is installed
    Id string
    The provider-assigned unique ID for this managed resource.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TenantId string
    TenantId of the host
    TimeCreated string
    The date and time the WlpAgent was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the WlpAgent was updated. Format defined by RFC3339.
    CertificateId string
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    HostId string
    OCID for instance in which WlpAgent is installed
    Id string
    The provider-assigned unique ID for this managed resource.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TenantId string
    TenantId of the host
    TimeCreated string
    The date and time the WlpAgent was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the WlpAgent was updated. Format defined by RFC3339.
    certificateId String
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    hostId String
    OCID for instance in which WlpAgent is installed
    id String
    The provider-assigned unique ID for this managed resource.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    tenantId String
    TenantId of the host
    timeCreated String
    The date and time the WlpAgent was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the WlpAgent was updated. Format defined by RFC3339.
    certificateId string
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    hostId string
    OCID for instance in which WlpAgent is installed
    id string
    The provider-assigned unique ID for this managed resource.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    tenantId string
    TenantId of the host
    timeCreated string
    The date and time the WlpAgent was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the WlpAgent was updated. Format defined by RFC3339.
    certificate_id str
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    host_id str
    OCID for instance in which WlpAgent is installed
    id str
    The provider-assigned unique ID for this managed resource.
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    tenant_id str
    TenantId of the host
    time_created str
    The date and time the WlpAgent was created. Format defined by RFC3339.
    time_updated str
    The date and time the WlpAgent was updated. Format defined by RFC3339.
    certificateId String
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    hostId String
    OCID for instance in which WlpAgent is installed
    id String
    The provider-assigned unique ID for this managed resource.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    tenantId String
    TenantId of the host
    timeCreated String
    The date and time the WlpAgent was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the WlpAgent was updated. Format defined by RFC3339.

    Look up Existing WlpAgent Resource

    Get an existing WlpAgent 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?: WlpAgentState, opts?: CustomResourceOptions): WlpAgent
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            agent_version: Optional[str] = None,
            certificate_id: Optional[str] = None,
            certificate_signed_request: Optional[str] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            host_id: Optional[str] = None,
            os_info: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            tenant_id: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> WlpAgent
    func GetWlpAgent(ctx *Context, name string, id IDInput, state *WlpAgentState, opts ...ResourceOption) (*WlpAgent, error)
    public static WlpAgent Get(string name, Input<string> id, WlpAgentState? state, CustomResourceOptions? opts = null)
    public static WlpAgent get(String name, Output<String> id, WlpAgentState 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.
    The following state arguments are supported:
    AgentVersion string
    The version of the agent making the request
    CertificateId string
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    CertificateSignedRequest string
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    CompartmentId string
    Compartment OCID of the host
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags Dictionary<string, object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    HostId string
    OCID for instance in which WlpAgent is installed
    OsInfo string

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TenantId string
    TenantId of the host
    TimeCreated string
    The date and time the WlpAgent was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the WlpAgent was updated. Format defined by RFC3339.
    AgentVersion string
    The version of the agent making the request
    CertificateId string
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    CertificateSignedRequest string
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    CompartmentId string
    Compartment OCID of the host
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    FreeformTags map[string]interface{}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    HostId string
    OCID for instance in which WlpAgent is installed
    OsInfo string

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TenantId string
    TenantId of the host
    TimeCreated string
    The date and time the WlpAgent was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the WlpAgent was updated. Format defined by RFC3339.
    agentVersion String
    The version of the agent making the request
    certificateId String
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    certificateSignedRequest String
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    compartmentId String
    Compartment OCID of the host
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<String,Object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    hostId String
    OCID for instance in which WlpAgent is installed
    osInfo String

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    tenantId String
    TenantId of the host
    timeCreated String
    The date and time the WlpAgent was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the WlpAgent was updated. Format defined by RFC3339.
    agentVersion string
    The version of the agent making the request
    certificateId string
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    certificateSignedRequest string
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    compartmentId string
    Compartment OCID of the host
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags {[key: string]: any}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    hostId string
    OCID for instance in which WlpAgent is installed
    osInfo string

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    tenantId string
    TenantId of the host
    timeCreated string
    The date and time the WlpAgent was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the WlpAgent was updated. Format defined by RFC3339.
    agent_version str
    The version of the agent making the request
    certificate_id str
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    certificate_signed_request str
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    compartment_id str
    Compartment OCID of the host
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeform_tags Mapping[str, Any]

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    host_id str
    OCID for instance in which WlpAgent is installed
    os_info str

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    tenant_id str
    TenantId of the host
    time_created str
    The date and time the WlpAgent was created. Format defined by RFC3339.
    time_updated str
    The date and time the WlpAgent was updated. Format defined by RFC3339.
    agentVersion String
    The version of the agent making the request
    certificateId String
    The certificate ID returned by Oracle Cloud Infrastructure certificates service
    certificateSignedRequest String
    (Updatable) The certificate signed request containing domain, organization names, organization units, city, state, country, email and public key, among other certificate details, signed by private key
    compartmentId String
    Compartment OCID of the host
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    freeformTags Map<Any>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    hostId String
    OCID for instance in which WlpAgent is installed
    osInfo String

    Concatenated OS name, OS version and agent architecture; for example, ubuntu_22.0_amd64.

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

    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    tenantId String
    TenantId of the host
    timeCreated String
    The date and time the WlpAgent was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the WlpAgent was updated. Format defined by RFC3339.

    Import

    WlpAgents can be imported using the id, e.g.

    $ pulumi import oci:CloudGuard/wlpAgent:WlpAgent test_wlp_agent "id"
    

    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 v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi