oci.ManagementAgent.getManagementAgents
Explore with Pulumi AI
This data source provides the list of Management Agents in Oracle Cloud Infrastructure Management Agent service.
Returns a list of Management Agents. If no explicit page size limit is specified, it will default to 1000 when compartmentIdInSubtree is true and 5000 otherwise. The response is limited to maximum 1000 records when compartmentIdInSubtree is true.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testManagementAgents = oci.ManagementAgent.getManagementAgents({
compartmentId: compartmentId,
accessLevel: managementAgentAccessLevel,
availabilityStatus: managementAgentAvailabilityStatus,
compartmentIdInSubtree: managementAgentCompartmentIdInSubtree,
dataSourceNames: testManagementAgentDataSource.name,
dataSourceType: managementAgentDataSourceType,
displayName: managementAgentDisplayName,
gatewayIds: testGateway.id,
hostId: testHost.id,
waitForHostId: 10,
installType: managementAgentInstallType,
isCustomerDeployed: managementAgentIsCustomerDeployed,
platformTypes: managementAgentPlatformType,
pluginNames: managementAgentPluginName,
state: managementAgentState,
versions: managementAgentVersion,
});
import pulumi
import pulumi_oci as oci
test_management_agents = oci.ManagementAgent.get_management_agents(compartment_id=compartment_id,
access_level=management_agent_access_level,
availability_status=management_agent_availability_status,
compartment_id_in_subtree=management_agent_compartment_id_in_subtree,
data_source_names=test_management_agent_data_source["name"],
data_source_type=management_agent_data_source_type,
display_name=management_agent_display_name,
gateway_ids=test_gateway["id"],
host_id=test_host["id"],
wait_for_host_id=10,
install_type=management_agent_install_type,
is_customer_deployed=management_agent_is_customer_deployed,
platform_types=management_agent_platform_type,
plugin_names=management_agent_plugin_name,
state=management_agent_state,
versions=management_agent_version)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/ManagementAgent"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ManagementAgent.GetManagementAgents(ctx, &managementagent.GetManagementAgentsArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(managementAgentAccessLevel),
AvailabilityStatus: pulumi.StringRef(managementAgentAvailabilityStatus),
CompartmentIdInSubtree: pulumi.BoolRef(managementAgentCompartmentIdInSubtree),
DataSourceNames: testManagementAgentDataSource.Name,
DataSourceType: pulumi.StringRef(managementAgentDataSourceType),
DisplayName: pulumi.StringRef(managementAgentDisplayName),
GatewayIds: testGateway.Id,
HostId: pulumi.StringRef(testHost.Id),
WaitForHostId: pulumi.IntRef(10),
InstallType: pulumi.StringRef(managementAgentInstallType),
IsCustomerDeployed: pulumi.BoolRef(managementAgentIsCustomerDeployed),
PlatformTypes: managementAgentPlatformType,
PluginNames: managementAgentPluginName,
State: pulumi.StringRef(managementAgentState),
Versions: managementAgentVersion,
}, nil)
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 testManagementAgents = Oci.ManagementAgent.GetManagementAgents.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = managementAgentAccessLevel,
AvailabilityStatus = managementAgentAvailabilityStatus,
CompartmentIdInSubtree = managementAgentCompartmentIdInSubtree,
DataSourceNames = testManagementAgentDataSource.Name,
DataSourceType = managementAgentDataSourceType,
DisplayName = managementAgentDisplayName,
GatewayIds = testGateway.Id,
HostId = testHost.Id,
WaitForHostId = 10,
InstallType = managementAgentInstallType,
IsCustomerDeployed = managementAgentIsCustomerDeployed,
PlatformTypes = managementAgentPlatformType,
PluginNames = managementAgentPluginName,
State = managementAgentState,
Versions = managementAgentVersion,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ManagementAgent.ManagementAgentFunctions;
import com.pulumi.oci.ManagementAgent.inputs.GetManagementAgentsArgs;
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) {
final var testManagementAgents = ManagementAgentFunctions.getManagementAgents(GetManagementAgentsArgs.builder()
.compartmentId(compartmentId)
.accessLevel(managementAgentAccessLevel)
.availabilityStatus(managementAgentAvailabilityStatus)
.compartmentIdInSubtree(managementAgentCompartmentIdInSubtree)
.dataSourceNames(testManagementAgentDataSource.name())
.dataSourceType(managementAgentDataSourceType)
.displayName(managementAgentDisplayName)
.gatewayIds(testGateway.id())
.hostId(testHost.id())
.waitForHostId(10)
.installType(managementAgentInstallType)
.isCustomerDeployed(managementAgentIsCustomerDeployed)
.platformTypes(managementAgentPlatformType)
.pluginNames(managementAgentPluginName)
.state(managementAgentState)
.versions(managementAgentVersion)
.build());
}
}
variables:
testManagementAgents:
fn::invoke:
Function: oci:ManagementAgent:getManagementAgents
Arguments:
compartmentId: ${compartmentId}
accessLevel: ${managementAgentAccessLevel}
availabilityStatus: ${managementAgentAvailabilityStatus}
compartmentIdInSubtree: ${managementAgentCompartmentIdInSubtree}
dataSourceNames: ${testManagementAgentDataSource.name}
dataSourceType: ${managementAgentDataSourceType}
displayName: ${managementAgentDisplayName}
gatewayIds: ${testGateway.id}
hostId: ${testHost.id}
waitForHostId: 10
installType: ${managementAgentInstallType}
isCustomerDeployed: ${managementAgentIsCustomerDeployed}
platformTypes: ${managementAgentPlatformType}
pluginNames: ${managementAgentPluginName}
state: ${managementAgentState}
versions: ${managementAgentVersion}
Using getManagementAgents
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getManagementAgents(args: GetManagementAgentsArgs, opts?: InvokeOptions): Promise<GetManagementAgentsResult>
function getManagementAgentsOutput(args: GetManagementAgentsOutputArgs, opts?: InvokeOptions): Output<GetManagementAgentsResult>
def get_management_agents(access_level: Optional[str] = None,
availability_status: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
data_source_names: Optional[Sequence[str]] = None,
data_source_type: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_managementagent.GetManagementAgentsFilter]] = None,
gateway_ids: Optional[Sequence[str]] = None,
host_id: Optional[str] = None,
install_type: Optional[str] = None,
is_customer_deployed: Optional[bool] = None,
platform_types: Optional[Sequence[str]] = None,
plugin_names: Optional[Sequence[str]] = None,
state: Optional[str] = None,
versions: Optional[Sequence[str]] = None,
wait_for_host_id: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementAgentsResult
def get_management_agents_output(access_level: Optional[pulumi.Input[str]] = None,
availability_status: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
data_source_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
data_source_type: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_managementagent.GetManagementAgentsFilterArgs]]]] = None,
gateway_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
host_id: Optional[pulumi.Input[str]] = None,
install_type: Optional[pulumi.Input[str]] = None,
is_customer_deployed: Optional[pulumi.Input[bool]] = None,
platform_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
plugin_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
state: Optional[pulumi.Input[str]] = None,
versions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
wait_for_host_id: Optional[pulumi.Input[int]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementAgentsResult]
func GetManagementAgents(ctx *Context, args *GetManagementAgentsArgs, opts ...InvokeOption) (*GetManagementAgentsResult, error)
func GetManagementAgentsOutput(ctx *Context, args *GetManagementAgentsOutputArgs, opts ...InvokeOption) GetManagementAgentsResultOutput
> Note: This function is named GetManagementAgents
in the Go SDK.
public static class GetManagementAgents
{
public static Task<GetManagementAgentsResult> InvokeAsync(GetManagementAgentsArgs args, InvokeOptions? opts = null)
public static Output<GetManagementAgentsResult> Invoke(GetManagementAgentsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetManagementAgentsResult> getManagementAgents(GetManagementAgentsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:ManagementAgent/getManagementAgents:getManagementAgents
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The OCID of the compartment to which a request will be scoped.
- Access
Level string - When the value is "ACCESSIBLE", insufficient permissions for a compartment will filter out resources in that compartment without rejecting the request.
- Availability
Status string - Filter to return only Management Agents in the particular availability status.
- Compartment
Id boolIn Subtree - if set to true then it fetches resources for all compartments where user has access to else only on the compartment specified.
- Data
Source List<string>Names - Unique name of the dataSource.
- Data
Source stringType - The type of the dataSource.
- Display
Name string - Filter to return only Management Agents having the particular display name.
- Filters
List<Get
Management Agents Filter> - Gateway
Ids List<string> - Filter to return only results having the particular gatewayId.
- Host
Id string - Filter to return only Management Agents having the particular agent host id.
- Install
Type string - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- Is
Customer boolDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- Platform
Types List<string> - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- Plugin
Names List<string> - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- State string
- Filter to return only Management Agents in the particular lifecycle state.
- Versions List<string>
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
- Wait
For intHost Id - When host_id argument is set, the data source will wait for the given period of time (in minutes) for this host_id to become available. This can be used when compute instance with Management Agent has been recently created.
- Compartment
Id string - The OCID of the compartment to which a request will be scoped.
- Access
Level string - When the value is "ACCESSIBLE", insufficient permissions for a compartment will filter out resources in that compartment without rejecting the request.
- Availability
Status string - Filter to return only Management Agents in the particular availability status.
- Compartment
Id boolIn Subtree - if set to true then it fetches resources for all compartments where user has access to else only on the compartment specified.
- Data
Source []stringNames - Unique name of the dataSource.
- Data
Source stringType - The type of the dataSource.
- Display
Name string - Filter to return only Management Agents having the particular display name.
- Filters
[]Get
Management Agents Filter - Gateway
Ids []string - Filter to return only results having the particular gatewayId.
- Host
Id string - Filter to return only Management Agents having the particular agent host id.
- Install
Type string - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- Is
Customer boolDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- Platform
Types []string - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- Plugin
Names []string - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- State string
- Filter to return only Management Agents in the particular lifecycle state.
- Versions []string
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
- Wait
For intHost Id - When host_id argument is set, the data source will wait for the given period of time (in minutes) for this host_id to become available. This can be used when compute instance with Management Agent has been recently created.
- compartment
Id String - The OCID of the compartment to which a request will be scoped.
- access
Level String - When the value is "ACCESSIBLE", insufficient permissions for a compartment will filter out resources in that compartment without rejecting the request.
- availability
Status String - Filter to return only Management Agents in the particular availability status.
- compartment
Id BooleanIn Subtree - if set to true then it fetches resources for all compartments where user has access to else only on the compartment specified.
- data
Source List<String>Names - Unique name of the dataSource.
- data
Source StringType - The type of the dataSource.
- display
Name String - Filter to return only Management Agents having the particular display name.
- filters
List<Gets
Filter> - gateway
Ids List<String> - Filter to return only results having the particular gatewayId.
- host
Id String - Filter to return only Management Agents having the particular agent host id.
- install
Type String - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- is
Customer BooleanDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- platform
Types List<String> - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- plugin
Names List<String> - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- state String
- Filter to return only Management Agents in the particular lifecycle state.
- versions List<String>
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
- wait
For IntegerHost Id - When host_id argument is set, the data source will wait for the given period of time (in minutes) for this host_id to become available. This can be used when compute instance with Management Agent has been recently created.
- compartment
Id string - The OCID of the compartment to which a request will be scoped.
- access
Level string - When the value is "ACCESSIBLE", insufficient permissions for a compartment will filter out resources in that compartment without rejecting the request.
- availability
Status string - Filter to return only Management Agents in the particular availability status.
- compartment
Id booleanIn Subtree - if set to true then it fetches resources for all compartments where user has access to else only on the compartment specified.
- data
Source string[]Names - Unique name of the dataSource.
- data
Source stringType - The type of the dataSource.
- display
Name string - Filter to return only Management Agents having the particular display name.
- filters
Get
Management Agents Filter[] - gateway
Ids string[] - Filter to return only results having the particular gatewayId.
- host
Id string - Filter to return only Management Agents having the particular agent host id.
- install
Type string - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- is
Customer booleanDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- platform
Types string[] - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- plugin
Names string[] - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- state string
- Filter to return only Management Agents in the particular lifecycle state.
- versions string[]
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
- wait
For numberHost Id - When host_id argument is set, the data source will wait for the given period of time (in minutes) for this host_id to become available. This can be used when compute instance with Management Agent has been recently created.
- compartment_
id str - The OCID of the compartment to which a request will be scoped.
- access_
level str - When the value is "ACCESSIBLE", insufficient permissions for a compartment will filter out resources in that compartment without rejecting the request.
- availability_
status str - Filter to return only Management Agents in the particular availability status.
- compartment_
id_ boolin_ subtree - if set to true then it fetches resources for all compartments where user has access to else only on the compartment specified.
- data_
source_ Sequence[str]names - Unique name of the dataSource.
- data_
source_ strtype - The type of the dataSource.
- display_
name str - Filter to return only Management Agents having the particular display name.
- filters
Sequence[managementagent.
Get Management Agents Filter] - gateway_
ids Sequence[str] - Filter to return only results having the particular gatewayId.
- host_
id str - Filter to return only Management Agents having the particular agent host id.
- install_
type str - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- is_
customer_ booldeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- platform_
types Sequence[str] - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- plugin_
names Sequence[str] - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- state str
- Filter to return only Management Agents in the particular lifecycle state.
- versions Sequence[str]
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
- wait_
for_ inthost_ id - When host_id argument is set, the data source will wait for the given period of time (in minutes) for this host_id to become available. This can be used when compute instance with Management Agent has been recently created.
- compartment
Id String - The OCID of the compartment to which a request will be scoped.
- access
Level String - When the value is "ACCESSIBLE", insufficient permissions for a compartment will filter out resources in that compartment without rejecting the request.
- availability
Status String - Filter to return only Management Agents in the particular availability status.
- compartment
Id BooleanIn Subtree - if set to true then it fetches resources for all compartments where user has access to else only on the compartment specified.
- data
Source List<String>Names - Unique name of the dataSource.
- data
Source StringType - The type of the dataSource.
- display
Name String - Filter to return only Management Agents having the particular display name.
- filters List<Property Map>
- gateway
Ids List<String> - Filter to return only results having the particular gatewayId.
- host
Id String - Filter to return only Management Agents having the particular agent host id.
- install
Type String - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- is
Customer BooleanDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- platform
Types List<String> - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- plugin
Names List<String> - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- state String
- Filter to return only Management Agents in the particular lifecycle state.
- versions List<String>
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
- wait
For NumberHost Id - When host_id argument is set, the data source will wait for the given period of time (in minutes) for this host_id to become available. This can be used when compute instance with Management Agent has been recently created.
getManagementAgents Result
The following output properties are available:
- Compartment
Id string - Compartment Identifier
- Id string
- The provider-assigned unique ID for this managed resource.
- Management
Agents List<GetManagement Agents Management Agent> - The list of management_agents.
- Access
Level string - Availability
Status string - The current availability status of managementAgent
- Compartment
Id boolIn Subtree - Data
Source List<string>Names - Data
Source stringType - Display
Name string - Management Agent Name
- Filters
List<Get
Management Agents Filter> - Gateway
Ids List<string> - Host
Id string - Host resource ocid
- Install
Type string - The install type, either AGENT or GATEWAY
- Is
Customer boolDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- Platform
Types List<string> - Platform Type
- Plugin
Names List<string> - Management Agent Plugin Name
- State string
- The current state of managementAgent
- Versions List<string>
- Management Agent Version
- Wait
For intHost Id
- Compartment
Id string - Compartment Identifier
- Id string
- The provider-assigned unique ID for this managed resource.
- Management
Agents []GetManagement Agents Management Agent - The list of management_agents.
- Access
Level string - Availability
Status string - The current availability status of managementAgent
- Compartment
Id boolIn Subtree - Data
Source []stringNames - Data
Source stringType - Display
Name string - Management Agent Name
- Filters
[]Get
Management Agents Filter - Gateway
Ids []string - Host
Id string - Host resource ocid
- Install
Type string - The install type, either AGENT or GATEWAY
- Is
Customer boolDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- Platform
Types []string - Platform Type
- Plugin
Names []string - Management Agent Plugin Name
- State string
- The current state of managementAgent
- Versions []string
- Management Agent Version
- Wait
For intHost Id
- compartment
Id String - Compartment Identifier
- id String
- The provider-assigned unique ID for this managed resource.
- management
Agents List<Gets> - The list of management_agents.
- access
Level String - availability
Status String - The current availability status of managementAgent
- compartment
Id BooleanIn Subtree - data
Source List<String>Names - data
Source StringType - display
Name String - Management Agent Name
- filters
List<Gets
Filter> - gateway
Ids List<String> - host
Id String - Host resource ocid
- install
Type String - The install type, either AGENT or GATEWAY
- is
Customer BooleanDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- platform
Types List<String> - Platform Type
- plugin
Names List<String> - Management Agent Plugin Name
- state String
- The current state of managementAgent
- versions List<String>
- Management Agent Version
- wait
For IntegerHost Id
- compartment
Id string - Compartment Identifier
- id string
- The provider-assigned unique ID for this managed resource.
- management
Agents GetManagement Agents Management Agent[] - The list of management_agents.
- access
Level string - availability
Status string - The current availability status of managementAgent
- compartment
Id booleanIn Subtree - data
Source string[]Names - data
Source stringType - display
Name string - Management Agent Name
- filters
Get
Management Agents Filter[] - gateway
Ids string[] - host
Id string - Host resource ocid
- install
Type string - The install type, either AGENT or GATEWAY
- is
Customer booleanDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- platform
Types string[] - Platform Type
- plugin
Names string[] - Management Agent Plugin Name
- state string
- The current state of managementAgent
- versions string[]
- Management Agent Version
- wait
For numberHost Id
- compartment_
id str - Compartment Identifier
- id str
- The provider-assigned unique ID for this managed resource.
- management_
agents Sequence[managementagent.Get Management Agents Management Agent] - The list of management_agents.
- access_
level str - availability_
status str - The current availability status of managementAgent
- compartment_
id_ boolin_ subtree - data_
source_ Sequence[str]names - data_
source_ strtype - display_
name str - Management Agent Name
- filters
Sequence[managementagent.
Get Management Agents Filter] - gateway_
ids Sequence[str] - host_
id str - Host resource ocid
- install_
type str - The install type, either AGENT or GATEWAY
- is_
customer_ booldeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- platform_
types Sequence[str] - Platform Type
- plugin_
names Sequence[str] - Management Agent Plugin Name
- state str
- The current state of managementAgent
- versions Sequence[str]
- Management Agent Version
- wait_
for_ inthost_ id
- compartment
Id String - Compartment Identifier
- id String
- The provider-assigned unique ID for this managed resource.
- management
Agents List<Property Map> - The list of management_agents.
- access
Level String - availability
Status String - The current availability status of managementAgent
- compartment
Id BooleanIn Subtree - data
Source List<String>Names - data
Source StringType - display
Name String - Management Agent Name
- filters List<Property Map>
- gateway
Ids List<String> - host
Id String - Host resource ocid
- install
Type String - The install type, either AGENT or GATEWAY
- is
Customer BooleanDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- platform
Types List<String> - Platform Type
- plugin
Names List<String> - Management Agent Plugin Name
- state String
- The current state of managementAgent
- versions List<String>
- Management Agent Version
- wait
For NumberHost Id
Supporting Types
GetManagementAgentsFilter
GetManagementAgentsManagementAgent
- Availability
Status string - Filter to return only Management Agents in the particular availability status.
- Compartment
Id string - The OCID of the compartment to which a request will be scoped.
- Data
Source List<GetLists Management Agents Management Agent Data Source List> - Data
Source List<GetSummary Lists Management Agents Management Agent Data Source Summary List> - list of dataSources associated with the agent
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deploy
Plugins List<string>Ids - Display
Name string - Filter to return only Management Agents having the particular display name.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Host string
- Management Agent host machine name
- Host
Id string - Filter to return only Management Agents having the particular agent host id.
- Id string
- agent identifier
- Install
Key stringId - agent install key identifier
- Install
Path string - Path where Management Agent is installed
- Install
Type string - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- Is
Agent boolAuto Upgradable - true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
- Is
Customer boolDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
Agent stringId - Management
Agent List<GetProperties Management Agents Management Agent Management Agent Property> - Additional properties for this Management Agent
- Platform
Name string - Platform Name
- Platform
Type string - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- Platform
Version string - Platform Version
- Plugin
Lists List<GetManagement Agents Management Agent Plugin List> - list of managementAgentPlugins associated with the agent
- Resource
Artifact stringVersion - Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
- State string
- Filter to return only Management Agents in the particular lifecycle state.
- Time
Created string - The time the Management Agent was created. An RFC3339 formatted datetime string
- Time
Last stringHeartbeat - The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
- Time
Updated string - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- Version string
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
- Availability
Status string - Filter to return only Management Agents in the particular availability status.
- Compartment
Id string - The OCID of the compartment to which a request will be scoped.
- Data
Source []GetLists Management Agents Management Agent Data Source List - Data
Source []GetSummary Lists Management Agents Management Agent Data Source Summary List - list of dataSources associated with the agent
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Deploy
Plugins []stringIds - Display
Name string - Filter to return only Management Agents having the particular display name.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Host string
- Management Agent host machine name
- Host
Id string - Filter to return only Management Agents having the particular agent host id.
- Id string
- agent identifier
- Install
Key stringId - agent install key identifier
- Install
Path string - Path where Management Agent is installed
- Install
Type string - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- Is
Agent boolAuto Upgradable - true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
- Is
Customer boolDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
Agent stringId - Management
Agent []GetProperties Management Agents Management Agent Management Agent Property - Additional properties for this Management Agent
- Platform
Name string - Platform Name
- Platform
Type string - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- Platform
Version string - Platform Version
- Plugin
Lists []GetManagement Agents Management Agent Plugin List - list of managementAgentPlugins associated with the agent
- Resource
Artifact stringVersion - Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
- State string
- Filter to return only Management Agents in the particular lifecycle state.
- Time
Created string - The time the Management Agent was created. An RFC3339 formatted datetime string
- Time
Last stringHeartbeat - The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
- Time
Updated string - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- Version string
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
- availability
Status String - Filter to return only Management Agents in the particular availability status.
- compartment
Id String - The OCID of the compartment to which a request will be scoped.
- data
Source List<GetsLists Data Source List> - data
Source List<GetsSummary Lists Data Source Summary List> - list of dataSources associated with the agent
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deploy
Plugins List<String>Ids - display
Name String - Filter to return only Management Agents having the particular display name.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- host String
- Management Agent host machine name
- host
Id String - Filter to return only Management Agents having the particular agent host id.
- id String
- agent identifier
- install
Key StringId - agent install key identifier
- install
Path String - Path where Management Agent is installed
- install
Type String - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- is
Agent BooleanAuto Upgradable - true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
- is
Customer BooleanDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
Agent StringId - management
Agent List<GetsProperties Property> - Additional properties for this Management Agent
- platform
Name String - Platform Name
- platform
Type String - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- platform
Version String - Platform Version
- plugin
Lists List<GetsPlugin List> - list of managementAgentPlugins associated with the agent
- resource
Artifact StringVersion - Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
- state String
- Filter to return only Management Agents in the particular lifecycle state.
- time
Created String - The time the Management Agent was created. An RFC3339 formatted datetime string
- time
Last StringHeartbeat - The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
- time
Updated String - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- version String
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
- availability
Status string - Filter to return only Management Agents in the particular availability status.
- compartment
Id string - The OCID of the compartment to which a request will be scoped.
- data
Source GetLists Management Agents Management Agent Data Source List[] - data
Source GetSummary Lists Management Agents Management Agent Data Source Summary List[] - list of dataSources associated with the agent
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deploy
Plugins string[]Ids - display
Name string - Filter to return only Management Agents having the particular display name.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- host string
- Management Agent host machine name
- host
Id string - Filter to return only Management Agents having the particular agent host id.
- id string
- agent identifier
- install
Key stringId - agent install key identifier
- install
Path string - Path where Management Agent is installed
- install
Type string - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- is
Agent booleanAuto Upgradable - true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
- is
Customer booleanDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
Agent stringId - management
Agent GetProperties Management Agents Management Agent Management Agent Property[] - Additional properties for this Management Agent
- platform
Name string - Platform Name
- platform
Type string - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- platform
Version string - Platform Version
- plugin
Lists GetManagement Agents Management Agent Plugin List[] - list of managementAgentPlugins associated with the agent
- resource
Artifact stringVersion - Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
- state string
- Filter to return only Management Agents in the particular lifecycle state.
- time
Created string - The time the Management Agent was created. An RFC3339 formatted datetime string
- time
Last stringHeartbeat - The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
- time
Updated string - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- version string
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
- availability_
status str - Filter to return only Management Agents in the particular availability status.
- compartment_
id str - The OCID of the compartment to which a request will be scoped.
- data_
source_ Sequence[managementagent.lists Get Management Agents Management Agent Data Source List] - data_
source_ Sequence[managementagent.summary_ lists Get Management Agents Management Agent Data Source Summary List] - list of dataSources associated with the agent
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deploy_
plugins_ Sequence[str]ids - display_
name str - Filter to return only Management Agents having the particular display name.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- host str
- Management Agent host machine name
- host_
id str - Filter to return only Management Agents having the particular agent host id.
- id str
- agent identifier
- install_
key_ strid - agent install key identifier
- install_
path str - Path where Management Agent is installed
- install_
type str - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- is_
agent_ boolauto_ upgradable - true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
- is_
customer_ booldeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed_
agent_ strid - management_
agent_ Sequence[managementagent.properties Get Management Agents Management Agent Management Agent Property] - Additional properties for this Management Agent
- platform_
name str - Platform Name
- platform_
type str - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- platform_
version str - Platform Version
- plugin_
lists Sequence[managementagent.Get Management Agents Management Agent Plugin List] - list of managementAgentPlugins associated with the agent
- resource_
artifact_ strversion - Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
- state str
- Filter to return only Management Agents in the particular lifecycle state.
- time_
created str - The time the Management Agent was created. An RFC3339 formatted datetime string
- time_
last_ strheartbeat - The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
- time_
updated str - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- version str
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
- availability
Status String - Filter to return only Management Agents in the particular availability status.
- compartment
Id String - The OCID of the compartment to which a request will be scoped.
- data
Source List<Property Map>Lists - data
Source List<Property Map>Summary Lists - list of dataSources associated with the agent
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- deploy
Plugins List<String>Ids - display
Name String - Filter to return only Management Agents having the particular display name.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- host String
- Management Agent host machine name
- host
Id String - Filter to return only Management Agents having the particular agent host id.
- id String
- agent identifier
- install
Key StringId - agent install key identifier
- install
Path String - Path where Management Agent is installed
- install
Type String - A filter to return either agents or gateway types depending upon install type selected by user. By default both install type will be returned.
- is
Agent BooleanAuto Upgradable - true if the agent can be upgraded automatically; false if it must be upgraded manually. This flag is derived from the tenancy level auto upgrade preference.
- is
Customer BooleanDeployed - true, if the agent image is manually downloaded and installed. false, if the agent is deployed as a plugin in Oracle Cloud Agent.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
Agent StringId - management
Agent List<Property Map>Properties - Additional properties for this Management Agent
- platform
Name String - Platform Name
- platform
Type String - Array of PlatformTypes to return only results having the particular platform types. Example: ["LINUX"]
- platform
Version String - Platform Version
- plugin
Lists List<Property Map> - list of managementAgentPlugins associated with the agent
- resource
Artifact StringVersion - Version of the deployment artifact instantiated by this Management Agent. The format for Standalone resourceMode is YYMMDD.HHMM, and the format for other modes (whose artifacts are based upon Standalone but can advance independently) is YYMMDD.HHMM.VVVVVVVVVVVV. VVVVVVVVVVVV is always a numeric value between 000000000000 and 999999999999
- state String
- Filter to return only Management Agents in the particular lifecycle state.
- time
Created String - The time the Management Agent was created. An RFC3339 formatted datetime string
- time
Last StringHeartbeat - The time the Management Agent has last recorded its health status in telemetry. This value will be null if the agent has not recorded its health status in last 7 days. An RFC3339 formatted datetime string
- time
Updated String - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- version String
- Array of versions to return only Management Agents having the particular agent versions. Example: ["202020.0101","210201.0513"]
GetManagementAgentsManagementAgentDataSourceList
- Allow
Metrics string - Compartment
Id string - The OCID of the compartment to which a request will be scoped.
- Connection
Timeout int - Is
Daemon boolSet - If the Kubernetes cluster type is Daemon set then this will be set to true.
- Key string
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- Metric
Dimensions List<GetManagement Agents Management Agent Data Source List Metric Dimension> - Name string
- Name of the property
- Namespace string
- Proxy
Url string - Read
Data intLimit - Read
Timeout int - Resource
Group string - Schedule
Mins int - State string
- Filter to return only Management Agents in the particular lifecycle state.
- Time
Created string - The time the Management Agent was created. An RFC3339 formatted datetime string
- Time
Updated string - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- Type string
- The type of the DataSource.
- Url string
- Allow
Metrics string - Compartment
Id string - The OCID of the compartment to which a request will be scoped.
- Connection
Timeout int - Is
Daemon boolSet - If the Kubernetes cluster type is Daemon set then this will be set to true.
- Key string
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- Metric
Dimensions []GetManagement Agents Management Agent Data Source List Metric Dimension - Name string
- Name of the property
- Namespace string
- Proxy
Url string - Read
Data intLimit - Read
Timeout int - Resource
Group string - Schedule
Mins int - State string
- Filter to return only Management Agents in the particular lifecycle state.
- Time
Created string - The time the Management Agent was created. An RFC3339 formatted datetime string
- Time
Updated string - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- Type string
- The type of the DataSource.
- Url string
- allow
Metrics String - compartment
Id String - The OCID of the compartment to which a request will be scoped.
- connection
Timeout Integer - is
Daemon BooleanSet - If the Kubernetes cluster type is Daemon set then this will be set to true.
- key String
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- metric
Dimensions List<GetsData Source List Metric Dimension> - name String
- Name of the property
- namespace String
- proxy
Url String - read
Data IntegerLimit - read
Timeout Integer - resource
Group String - schedule
Mins Integer - state String
- Filter to return only Management Agents in the particular lifecycle state.
- time
Created String - The time the Management Agent was created. An RFC3339 formatted datetime string
- time
Updated String - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- type String
- The type of the DataSource.
- url String
- allow
Metrics string - compartment
Id string - The OCID of the compartment to which a request will be scoped.
- connection
Timeout number - is
Daemon booleanSet - If the Kubernetes cluster type is Daemon set then this will be set to true.
- key string
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- metric
Dimensions GetManagement Agents Management Agent Data Source List Metric Dimension[] - name string
- Name of the property
- namespace string
- proxy
Url string - read
Data numberLimit - read
Timeout number - resource
Group string - schedule
Mins number - state string
- Filter to return only Management Agents in the particular lifecycle state.
- time
Created string - The time the Management Agent was created. An RFC3339 formatted datetime string
- time
Updated string - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- type string
- The type of the DataSource.
- url string
- allow_
metrics str - compartment_
id str - The OCID of the compartment to which a request will be scoped.
- connection_
timeout int - is_
daemon_ boolset - If the Kubernetes cluster type is Daemon set then this will be set to true.
- key str
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- metric_
dimensions Sequence[managementagent.Get Management Agents Management Agent Data Source List Metric Dimension] - name str
- Name of the property
- namespace str
- proxy_
url str - read_
data_ intlimit - read_
timeout int - resource_
group str - schedule_
mins int - state str
- Filter to return only Management Agents in the particular lifecycle state.
- time_
created str - The time the Management Agent was created. An RFC3339 formatted datetime string
- time_
updated str - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- type str
- The type of the DataSource.
- url str
- allow
Metrics String - compartment
Id String - The OCID of the compartment to which a request will be scoped.
- connection
Timeout Number - is
Daemon BooleanSet - If the Kubernetes cluster type is Daemon set then this will be set to true.
- key String
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- metric
Dimensions List<Property Map> - name String
- Name of the property
- namespace String
- proxy
Url String - read
Data NumberLimit - read
Timeout Number - resource
Group String - schedule
Mins Number - state String
- Filter to return only Management Agents in the particular lifecycle state.
- time
Created String - The time the Management Agent was created. An RFC3339 formatted datetime string
- time
Updated String - The time the Management Agent was last updated. An RFC3339 formatted datetime string
- type String
- The type of the DataSource.
- url String
GetManagementAgentsManagementAgentDataSourceListMetricDimension
GetManagementAgentsManagementAgentDataSourceSummaryList
- Is
Daemon boolSet - If the Kubernetes cluster type is Daemon set then this will be set to true.
- Key string
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- Name string
- Name of the property
- Type string
- The type of the DataSource.
- Is
Daemon boolSet - If the Kubernetes cluster type is Daemon set then this will be set to true.
- Key string
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- Name string
- Name of the property
- Type string
- The type of the DataSource.
- is
Daemon BooleanSet - If the Kubernetes cluster type is Daemon set then this will be set to true.
- key String
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- name String
- Name of the property
- type String
- The type of the DataSource.
- is
Daemon booleanSet - If the Kubernetes cluster type is Daemon set then this will be set to true.
- key string
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- name string
- Name of the property
- type string
- The type of the DataSource.
- is_
daemon_ boolset - If the Kubernetes cluster type is Daemon set then this will be set to true.
- key str
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- name str
- Name of the property
- type str
- The type of the DataSource.
- is
Daemon BooleanSet - If the Kubernetes cluster type is Daemon set then this will be set to true.
- key String
- Identifier for DataSource. This represents the type and name for the data source associated with the Management Agent.
- name String
- Name of the property
- type String
- The type of the DataSource.
GetManagementAgentsManagementAgentManagementAgentProperty
GetManagementAgentsManagementAgentPluginList
- Is
Enabled bool - flag indicating whether the plugin is in enabled mode or disabled mode.
- Plugin
Display stringName - Management Agent Plugin Identifier, can be renamed
- Plugin
Id string - Plugin Id
- Plugin
Name string - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- Plugin
Status string - Plugin Status
- Plugin
Status stringMessage - Status message of the Plugin
- Plugin
Version string - Plugin Version
- Is
Enabled bool - flag indicating whether the plugin is in enabled mode or disabled mode.
- Plugin
Display stringName - Management Agent Plugin Identifier, can be renamed
- Plugin
Id string - Plugin Id
- Plugin
Name string - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- Plugin
Status string - Plugin Status
- Plugin
Status stringMessage - Status message of the Plugin
- Plugin
Version string - Plugin Version
- is
Enabled Boolean - flag indicating whether the plugin is in enabled mode or disabled mode.
- plugin
Display StringName - Management Agent Plugin Identifier, can be renamed
- plugin
Id String - Plugin Id
- plugin
Name String - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- plugin
Status String - Plugin Status
- plugin
Status StringMessage - Status message of the Plugin
- plugin
Version String - Plugin Version
- is
Enabled boolean - flag indicating whether the plugin is in enabled mode or disabled mode.
- plugin
Display stringName - Management Agent Plugin Identifier, can be renamed
- plugin
Id string - Plugin Id
- plugin
Name string - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- plugin
Status string - Plugin Status
- plugin
Status stringMessage - Status message of the Plugin
- plugin
Version string - Plugin Version
- is_
enabled bool - flag indicating whether the plugin is in enabled mode or disabled mode.
- plugin_
display_ strname - Management Agent Plugin Identifier, can be renamed
- plugin_
id str - Plugin Id
- plugin_
name str - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- plugin_
status str - Plugin Status
- plugin_
status_ strmessage - Status message of the Plugin
- plugin_
version str - Plugin Version
- is
Enabled Boolean - flag indicating whether the plugin is in enabled mode or disabled mode.
- plugin
Display StringName - Management Agent Plugin Identifier, can be renamed
- plugin
Id String - Plugin Id
- plugin
Name String - Array of pluginName to return only Management Agents having the particular Plugins installed. A special pluginName of 'None' can be provided and this will return only Management Agents having no plugin installed. Example: ["PluginA"]
- plugin
Status String - Plugin Status
- plugin
Status StringMessage - Status message of the Plugin
- plugin
Version String - Plugin Version
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.