oci.CloudGuard.WlpAgent
Explore with Pulumi AI
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/v2/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.StringMap{
"foo-namespace.bar-key": pulumi.String("value"),
},
FreeformTags: pulumi.StringMap{
"bar-key": pulumi.String("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, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = 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", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
});
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.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var wlpAgentResource = new WlpAgent("wlpAgentResource", WlpAgentArgs.builder()
.agentVersion("string")
.certificateSignedRequest("string")
.compartmentId("string")
.osInfo("string")
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.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": "string",
},
freeform_tags={
"string": "string",
})
const wlpAgentResource = new oci.cloudguard.WlpAgent("wlpAgentResource", {
agentVersion: "string",
certificateSignedRequest: "string",
compartmentId: "string",
osInfo: "string",
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
});
type: oci:CloudGuard:WlpAgent
properties:
agentVersion: string
certificateSignedRequest: string
compartmentId: string
definedTags:
string: string
freeformTags:
string: string
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:
- Agent
Version string - The version of the agent making the request
- Certificate
Signed stringRequest - (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 string - Compartment OCID of the host
- Os
Info 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
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Avoid entering confidential information.
- Agent
Version string - The version of the agent making the request
- Certificate
Signed stringRequest - (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 string - Compartment OCID of the host
- Os
Info 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
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Avoid entering confidential information.
- agent
Version String - The version of the agent making the request
- certificate
Signed StringRequest - (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 String - Compartment OCID of the host
- os
Info 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
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Avoid entering confidential information.
- agent
Version string - The version of the agent making the request
- certificate
Signed stringRequest - (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 string - Compartment OCID of the host
- os
Info 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
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Avoid entering confidential information.
- agent_
version str - The version of the agent making the request
- certificate_
signed_ strrequest - (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
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Avoid entering confidential information.
- agent
Version String - The version of the agent making the request
- certificate
Signed StringRequest - (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 String - Compartment OCID of the host
- os
Info 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
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Avoid entering confidential information.
Outputs
All input properties are implicitly available as output properties. Additionally, the WlpAgent resource produces the following output properties:
- Certificate
Id string - The certificate ID returned by Oracle Cloud Infrastructure certificates service
- Host
Id string - OCID for instance in which WlpAgent is installed
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- 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 string - TenantId of the host
- Time
Created string - The date and time the WlpAgent was created. Format defined by RFC3339.
- Time
Updated string - The date and time the WlpAgent was updated. Format defined by RFC3339.
- Certificate
Id string - The certificate ID returned by Oracle Cloud Infrastructure certificates service
- Host
Id string - OCID for instance in which WlpAgent is installed
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- 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 string - TenantId of the host
- Time
Created string - The date and time the WlpAgent was created. Format defined by RFC3339.
- Time
Updated string - The date and time the WlpAgent was updated. Format defined by RFC3339.
- certificate
Id String - The certificate ID returned by Oracle Cloud Infrastructure certificates service
- host
Id String - OCID for instance in which WlpAgent is installed
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- 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 String - TenantId of the host
- time
Created String - The date and time the WlpAgent was created. Format defined by RFC3339.
- time
Updated String - The date and time the WlpAgent was updated. Format defined by RFC3339.
- certificate
Id string - The certificate ID returned by Oracle Cloud Infrastructure certificates service
- host
Id string - OCID for instance in which WlpAgent is installed
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- 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 string - TenantId of the host
- time
Created string - The date and time the WlpAgent was created. Format defined by RFC3339.
- time
Updated 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.
- Mapping[str, str]
- 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.
- certificate
Id String - The certificate ID returned by Oracle Cloud Infrastructure certificates service
- host
Id String - OCID for instance in which WlpAgent is installed
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- 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 String - TenantId of the host
- time
Created String - The date and time the WlpAgent was created. Format defined by RFC3339.
- time
Updated 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, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
host_id: Optional[str] = None,
os_info: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = 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.
- Agent
Version string - The version of the agent making the request
- Certificate
Id string - The certificate ID returned by Oracle Cloud Infrastructure certificates service
- Certificate
Signed stringRequest - (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 string - Compartment OCID of the host
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Avoid entering confidential information.
- Host
Id string - OCID for instance in which WlpAgent is installed
- Os
Info 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
- Dictionary<string, string>
- 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 string - TenantId of the host
- Time
Created string - The date and time the WlpAgent was created. Format defined by RFC3339.
- Time
Updated string - The date and time the WlpAgent was updated. Format defined by RFC3339.
- Agent
Version string - The version of the agent making the request
- Certificate
Id string - The certificate ID returned by Oracle Cloud Infrastructure certificates service
- Certificate
Signed stringRequest - (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 string - Compartment OCID of the host
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Avoid entering confidential information.
- Host
Id string - OCID for instance in which WlpAgent is installed
- Os
Info 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
- map[string]string
- 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 string - TenantId of the host
- Time
Created string - The date and time the WlpAgent was created. Format defined by RFC3339.
- Time
Updated string - The date and time the WlpAgent was updated. Format defined by RFC3339.
- agent
Version String - The version of the agent making the request
- certificate
Id String - The certificate ID returned by Oracle Cloud Infrastructure certificates service
- certificate
Signed StringRequest - (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 String - Compartment OCID of the host
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Avoid entering confidential information.
- host
Id String - OCID for instance in which WlpAgent is installed
- os
Info 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
- Map<String,String>
- 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 String - TenantId of the host
- time
Created String - The date and time the WlpAgent was created. Format defined by RFC3339.
- time
Updated String - The date and time the WlpAgent was updated. Format defined by RFC3339.
- agent
Version string - The version of the agent making the request
- certificate
Id string - The certificate ID returned by Oracle Cloud Infrastructure certificates service
- certificate
Signed stringRequest - (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 string - Compartment OCID of the host
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Avoid entering confidential information.
- host
Id string - OCID for instance in which WlpAgent is installed
- os
Info 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
- {[key: string]: string}
- 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 string - TenantId of the host
- time
Created string - The date and time the WlpAgent was created. Format defined by RFC3339.
- time
Updated 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_ strrequest - (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
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
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
- Mapping[str, str]
- 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.
- agent
Version String - The version of the agent making the request
- certificate
Id String - The certificate ID returned by Oracle Cloud Infrastructure certificates service
- certificate
Signed StringRequest - (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 String - Compartment OCID of the host
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
Avoid entering confidential information.
- host
Id String - OCID for instance in which WlpAgent is installed
- os
Info 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
- Map<String>
- 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 String - TenantId of the host
- time
Created String - The date and time the WlpAgent was created. Format defined by RFC3339.
- time
Updated 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.