oci.FleetAppsManagement.PlatformConfiguration
Explore with Pulumi AI
This resource provides the Platform Configuration resource in Oracle Cloud Infrastructure Fleet Apps Management service.
Creates a new PlatformConfiguration.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testPlatformConfiguration = new oci.fleetappsmanagement.PlatformConfiguration("test_platform_configuration", {
compartmentId: compartmentId,
configCategoryDetails: {
configCategory: platformConfigurationConfigCategoryDetailsConfigCategory,
compatibleProducts: [{
displayName: platformConfigurationConfigCategoryDetailsCompatibleProductsDisplayName,
id: platformConfigurationConfigCategoryDetailsCompatibleProductsId,
}],
components: platformConfigurationConfigCategoryDetailsComponents,
credentials: [{
displayName: platformConfigurationConfigCategoryDetailsCredentialsDisplayName,
id: platformConfigurationConfigCategoryDetailsCredentialsId,
}],
patchTypes: [{
displayName: platformConfigurationConfigCategoryDetailsPatchTypesDisplayName,
id: platformConfigurationConfigCategoryDetailsPatchTypesId,
}],
products: [{
displayName: platformConfigurationConfigCategoryDetailsProductsDisplayName,
id: platformConfigurationConfigCategoryDetailsProductsId,
}],
subCategoryDetails: {
subCategory: platformConfigurationConfigCategoryDetailsSubCategoryDetailsSubCategory,
components: platformConfigurationConfigCategoryDetailsSubCategoryDetailsComponents,
credentials: [{
displayName: platformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialsDisplayName,
id: platformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialsId,
}],
patchTypes: [{
displayName: platformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypesDisplayName,
id: platformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypesId,
}],
versions: platformConfigurationConfigCategoryDetailsSubCategoryDetailsVersions,
},
versions: platformConfigurationConfigCategoryDetailsVersions,
},
description: platformConfigurationDescription,
displayName: platformConfigurationDisplayName,
});
import pulumi
import pulumi_oci as oci
test_platform_configuration = oci.fleet_apps_management.PlatformConfiguration("test_platform_configuration",
compartment_id=compartment_id,
config_category_details={
"config_category": platform_configuration_config_category_details_config_category,
"compatible_products": [{
"display_name": platform_configuration_config_category_details_compatible_products_display_name,
"id": platform_configuration_config_category_details_compatible_products_id,
}],
"components": platform_configuration_config_category_details_components,
"credentials": [{
"display_name": platform_configuration_config_category_details_credentials_display_name,
"id": platform_configuration_config_category_details_credentials_id,
}],
"patch_types": [{
"display_name": platform_configuration_config_category_details_patch_types_display_name,
"id": platform_configuration_config_category_details_patch_types_id,
}],
"products": [{
"display_name": platform_configuration_config_category_details_products_display_name,
"id": platform_configuration_config_category_details_products_id,
}],
"sub_category_details": {
"sub_category": platform_configuration_config_category_details_sub_category_details_sub_category,
"components": platform_configuration_config_category_details_sub_category_details_components,
"credentials": [{
"display_name": platform_configuration_config_category_details_sub_category_details_credentials_display_name,
"id": platform_configuration_config_category_details_sub_category_details_credentials_id,
}],
"patch_types": [{
"display_name": platform_configuration_config_category_details_sub_category_details_patch_types_display_name,
"id": platform_configuration_config_category_details_sub_category_details_patch_types_id,
}],
"versions": platform_configuration_config_category_details_sub_category_details_versions,
},
"versions": platform_configuration_config_category_details_versions,
},
description=platform_configuration_description,
display_name=platform_configuration_display_name)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/fleetappsmanagement"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fleetappsmanagement.NewPlatformConfiguration(ctx, "test_platform_configuration", &fleetappsmanagement.PlatformConfigurationArgs{
CompartmentId: pulumi.Any(compartmentId),
ConfigCategoryDetails: &fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsArgs{
ConfigCategory: pulumi.Any(platformConfigurationConfigCategoryDetailsConfigCategory),
CompatibleProducts: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsCompatibleProductArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsCompatibleProductArgs{
DisplayName: pulumi.Any(platformConfigurationConfigCategoryDetailsCompatibleProductsDisplayName),
Id: pulumi.Any(platformConfigurationConfigCategoryDetailsCompatibleProductsId),
},
},
Components: pulumi.Any(platformConfigurationConfigCategoryDetailsComponents),
Credentials: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsCredentialArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsCredentialArgs{
DisplayName: pulumi.Any(platformConfigurationConfigCategoryDetailsCredentialsDisplayName),
Id: pulumi.Any(platformConfigurationConfigCategoryDetailsCredentialsId),
},
},
PatchTypes: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsPatchTypeArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsPatchTypeArgs{
DisplayName: pulumi.Any(platformConfigurationConfigCategoryDetailsPatchTypesDisplayName),
Id: pulumi.Any(platformConfigurationConfigCategoryDetailsPatchTypesId),
},
},
Products: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsProductArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsProductArgs{
DisplayName: pulumi.Any(platformConfigurationConfigCategoryDetailsProductsDisplayName),
Id: pulumi.Any(platformConfigurationConfigCategoryDetailsProductsId),
},
},
SubCategoryDetails: &fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsArgs{
SubCategory: pulumi.Any(platformConfigurationConfigCategoryDetailsSubCategoryDetailsSubCategory),
Components: pulumi.Any(platformConfigurationConfigCategoryDetailsSubCategoryDetailsComponents),
Credentials: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialArgs{
DisplayName: pulumi.Any(platformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialsDisplayName),
Id: pulumi.Any(platformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialsId),
},
},
PatchTypes: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypeArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypeArgs{
DisplayName: pulumi.Any(platformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypesDisplayName),
Id: pulumi.Any(platformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypesId),
},
},
Versions: pulumi.Any(platformConfigurationConfigCategoryDetailsSubCategoryDetailsVersions),
},
Versions: pulumi.Any(platformConfigurationConfigCategoryDetailsVersions),
},
Description: pulumi.Any(platformConfigurationDescription),
DisplayName: pulumi.Any(platformConfigurationDisplayName),
})
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 testPlatformConfiguration = new Oci.FleetAppsManagement.PlatformConfiguration("test_platform_configuration", new()
{
CompartmentId = compartmentId,
ConfigCategoryDetails = new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsArgs
{
ConfigCategory = platformConfigurationConfigCategoryDetailsConfigCategory,
CompatibleProducts = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsCompatibleProductArgs
{
DisplayName = platformConfigurationConfigCategoryDetailsCompatibleProductsDisplayName,
Id = platformConfigurationConfigCategoryDetailsCompatibleProductsId,
},
},
Components = platformConfigurationConfigCategoryDetailsComponents,
Credentials = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsCredentialArgs
{
DisplayName = platformConfigurationConfigCategoryDetailsCredentialsDisplayName,
Id = platformConfigurationConfigCategoryDetailsCredentialsId,
},
},
PatchTypes = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsPatchTypeArgs
{
DisplayName = platformConfigurationConfigCategoryDetailsPatchTypesDisplayName,
Id = platformConfigurationConfigCategoryDetailsPatchTypesId,
},
},
Products = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsProductArgs
{
DisplayName = platformConfigurationConfigCategoryDetailsProductsDisplayName,
Id = platformConfigurationConfigCategoryDetailsProductsId,
},
},
SubCategoryDetails = new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsArgs
{
SubCategory = platformConfigurationConfigCategoryDetailsSubCategoryDetailsSubCategory,
Components = platformConfigurationConfigCategoryDetailsSubCategoryDetailsComponents,
Credentials = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialArgs
{
DisplayName = platformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialsDisplayName,
Id = platformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialsId,
},
},
PatchTypes = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypeArgs
{
DisplayName = platformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypesDisplayName,
Id = platformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypesId,
},
},
Versions = platformConfigurationConfigCategoryDetailsSubCategoryDetailsVersions,
},
Versions = platformConfigurationConfigCategoryDetailsVersions,
},
Description = platformConfigurationDescription,
DisplayName = platformConfigurationDisplayName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.FleetAppsManagement.PlatformConfiguration;
import com.pulumi.oci.FleetAppsManagement.PlatformConfigurationArgs;
import com.pulumi.oci.FleetAppsManagement.inputs.PlatformConfigurationConfigCategoryDetailsArgs;
import com.pulumi.oci.FleetAppsManagement.inputs.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsArgs;
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 testPlatformConfiguration = new PlatformConfiguration("testPlatformConfiguration", PlatformConfigurationArgs.builder()
.compartmentId(compartmentId)
.configCategoryDetails(PlatformConfigurationConfigCategoryDetailsArgs.builder()
.configCategory(platformConfigurationConfigCategoryDetailsConfigCategory)
.compatibleProducts(PlatformConfigurationConfigCategoryDetailsCompatibleProductArgs.builder()
.displayName(platformConfigurationConfigCategoryDetailsCompatibleProductsDisplayName)
.id(platformConfigurationConfigCategoryDetailsCompatibleProductsId)
.build())
.components(platformConfigurationConfigCategoryDetailsComponents)
.credentials(PlatformConfigurationConfigCategoryDetailsCredentialArgs.builder()
.displayName(platformConfigurationConfigCategoryDetailsCredentialsDisplayName)
.id(platformConfigurationConfigCategoryDetailsCredentialsId)
.build())
.patchTypes(PlatformConfigurationConfigCategoryDetailsPatchTypeArgs.builder()
.displayName(platformConfigurationConfigCategoryDetailsPatchTypesDisplayName)
.id(platformConfigurationConfigCategoryDetailsPatchTypesId)
.build())
.products(PlatformConfigurationConfigCategoryDetailsProductArgs.builder()
.displayName(platformConfigurationConfigCategoryDetailsProductsDisplayName)
.id(platformConfigurationConfigCategoryDetailsProductsId)
.build())
.subCategoryDetails(PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsArgs.builder()
.subCategory(platformConfigurationConfigCategoryDetailsSubCategoryDetailsSubCategory)
.components(platformConfigurationConfigCategoryDetailsSubCategoryDetailsComponents)
.credentials(PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialArgs.builder()
.displayName(platformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialsDisplayName)
.id(platformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialsId)
.build())
.patchTypes(PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypeArgs.builder()
.displayName(platformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypesDisplayName)
.id(platformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypesId)
.build())
.versions(platformConfigurationConfigCategoryDetailsSubCategoryDetailsVersions)
.build())
.versions(platformConfigurationConfigCategoryDetailsVersions)
.build())
.description(platformConfigurationDescription)
.displayName(platformConfigurationDisplayName)
.build());
}
}
resources:
testPlatformConfiguration:
type: oci:FleetAppsManagement:PlatformConfiguration
name: test_platform_configuration
properties:
compartmentId: ${compartmentId}
configCategoryDetails:
configCategory: ${platformConfigurationConfigCategoryDetailsConfigCategory}
compatibleProducts:
- displayName: ${platformConfigurationConfigCategoryDetailsCompatibleProductsDisplayName}
id: ${platformConfigurationConfigCategoryDetailsCompatibleProductsId}
components: ${platformConfigurationConfigCategoryDetailsComponents}
credentials:
- displayName: ${platformConfigurationConfigCategoryDetailsCredentialsDisplayName}
id: ${platformConfigurationConfigCategoryDetailsCredentialsId}
patchTypes:
- displayName: ${platformConfigurationConfigCategoryDetailsPatchTypesDisplayName}
id: ${platformConfigurationConfigCategoryDetailsPatchTypesId}
products:
- displayName: ${platformConfigurationConfigCategoryDetailsProductsDisplayName}
id: ${platformConfigurationConfigCategoryDetailsProductsId}
subCategoryDetails:
subCategory: ${platformConfigurationConfigCategoryDetailsSubCategoryDetailsSubCategory}
components: ${platformConfigurationConfigCategoryDetailsSubCategoryDetailsComponents}
credentials:
- displayName: ${platformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialsDisplayName}
id: ${platformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialsId}
patchTypes:
- displayName: ${platformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypesDisplayName}
id: ${platformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypesId}
versions: ${platformConfigurationConfigCategoryDetailsSubCategoryDetailsVersions}
versions: ${platformConfigurationConfigCategoryDetailsVersions}
description: ${platformConfigurationDescription}
displayName: ${platformConfigurationDisplayName}
Create PlatformConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PlatformConfiguration(name: string, args: PlatformConfigurationArgs, opts?: CustomResourceOptions);
@overload
def PlatformConfiguration(resource_name: str,
args: PlatformConfigurationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PlatformConfiguration(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
config_category_details: Optional[_fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsArgs] = None,
description: Optional[str] = None,
display_name: Optional[str] = None)
func NewPlatformConfiguration(ctx *Context, name string, args PlatformConfigurationArgs, opts ...ResourceOption) (*PlatformConfiguration, error)
public PlatformConfiguration(string name, PlatformConfigurationArgs args, CustomResourceOptions? opts = null)
public PlatformConfiguration(String name, PlatformConfigurationArgs args)
public PlatformConfiguration(String name, PlatformConfigurationArgs args, CustomResourceOptions options)
type: oci:FleetAppsManagement:PlatformConfiguration
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 PlatformConfigurationArgs
- 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 PlatformConfigurationArgs
- 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 PlatformConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PlatformConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PlatformConfigurationArgs
- 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 platformConfigurationResource = new Oci.FleetAppsManagement.PlatformConfiguration("platformConfigurationResource", new()
{
CompartmentId = "string",
ConfigCategoryDetails = new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsArgs
{
ConfigCategory = "string",
CompatibleProducts = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsCompatibleProductArgs
{
DisplayName = "string",
Id = "string",
},
},
Components = new[]
{
"string",
},
Credentials = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsCredentialArgs
{
DisplayName = "string",
Id = "string",
},
},
PatchTypes = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsPatchTypeArgs
{
DisplayName = "string",
Id = "string",
},
},
Products = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsProductArgs
{
DisplayName = "string",
Id = "string",
},
},
SubCategoryDetails = new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsArgs
{
SubCategory = "string",
Components = new[]
{
"string",
},
Credentials = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialArgs
{
DisplayName = "string",
Id = "string",
},
},
PatchTypes = new[]
{
new Oci.FleetAppsManagement.Inputs.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypeArgs
{
DisplayName = "string",
Id = "string",
},
},
Versions = new[]
{
"string",
},
},
Versions = new[]
{
"string",
},
},
Description = "string",
DisplayName = "string",
});
example, err := FleetAppsManagement.NewPlatformConfiguration(ctx, "platformConfigurationResource", &FleetAppsManagement.PlatformConfigurationArgs{
CompartmentId: pulumi.String("string"),
ConfigCategoryDetails: &fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsArgs{
ConfigCategory: pulumi.String("string"),
CompatibleProducts: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsCompatibleProductArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsCompatibleProductArgs{
DisplayName: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
Components: pulumi.StringArray{
pulumi.String("string"),
},
Credentials: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsCredentialArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsCredentialArgs{
DisplayName: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
PatchTypes: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsPatchTypeArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsPatchTypeArgs{
DisplayName: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
Products: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsProductArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsProductArgs{
DisplayName: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
SubCategoryDetails: &fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsArgs{
SubCategory: pulumi.String("string"),
Components: pulumi.StringArray{
pulumi.String("string"),
},
Credentials: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialArgs{
DisplayName: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
PatchTypes: fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypeArray{
&fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypeArgs{
DisplayName: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
Versions: pulumi.StringArray{
pulumi.String("string"),
},
},
Versions: pulumi.StringArray{
pulumi.String("string"),
},
},
Description: pulumi.String("string"),
DisplayName: pulumi.String("string"),
})
var platformConfigurationResource = new PlatformConfiguration("platformConfigurationResource", PlatformConfigurationArgs.builder()
.compartmentId("string")
.configCategoryDetails(PlatformConfigurationConfigCategoryDetailsArgs.builder()
.configCategory("string")
.compatibleProducts(PlatformConfigurationConfigCategoryDetailsCompatibleProductArgs.builder()
.displayName("string")
.id("string")
.build())
.components("string")
.credentials(PlatformConfigurationConfigCategoryDetailsCredentialArgs.builder()
.displayName("string")
.id("string")
.build())
.patchTypes(PlatformConfigurationConfigCategoryDetailsPatchTypeArgs.builder()
.displayName("string")
.id("string")
.build())
.products(PlatformConfigurationConfigCategoryDetailsProductArgs.builder()
.displayName("string")
.id("string")
.build())
.subCategoryDetails(PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsArgs.builder()
.subCategory("string")
.components("string")
.credentials(PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialArgs.builder()
.displayName("string")
.id("string")
.build())
.patchTypes(PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypeArgs.builder()
.displayName("string")
.id("string")
.build())
.versions("string")
.build())
.versions("string")
.build())
.description("string")
.displayName("string")
.build());
platform_configuration_resource = oci.fleet_apps_management.PlatformConfiguration("platformConfigurationResource",
compartment_id="string",
config_category_details={
"config_category": "string",
"compatible_products": [{
"display_name": "string",
"id": "string",
}],
"components": ["string"],
"credentials": [{
"display_name": "string",
"id": "string",
}],
"patch_types": [{
"display_name": "string",
"id": "string",
}],
"products": [{
"display_name": "string",
"id": "string",
}],
"sub_category_details": {
"sub_category": "string",
"components": ["string"],
"credentials": [{
"display_name": "string",
"id": "string",
}],
"patch_types": [{
"display_name": "string",
"id": "string",
}],
"versions": ["string"],
},
"versions": ["string"],
},
description="string",
display_name="string")
const platformConfigurationResource = new oci.fleetappsmanagement.PlatformConfiguration("platformConfigurationResource", {
compartmentId: "string",
configCategoryDetails: {
configCategory: "string",
compatibleProducts: [{
displayName: "string",
id: "string",
}],
components: ["string"],
credentials: [{
displayName: "string",
id: "string",
}],
patchTypes: [{
displayName: "string",
id: "string",
}],
products: [{
displayName: "string",
id: "string",
}],
subCategoryDetails: {
subCategory: "string",
components: ["string"],
credentials: [{
displayName: "string",
id: "string",
}],
patchTypes: [{
displayName: "string",
id: "string",
}],
versions: ["string"],
},
versions: ["string"],
},
description: "string",
displayName: "string",
});
type: oci:FleetAppsManagement:PlatformConfiguration
properties:
compartmentId: string
configCategoryDetails:
compatibleProducts:
- displayName: string
id: string
components:
- string
configCategory: string
credentials:
- displayName: string
id: string
patchTypes:
- displayName: string
id: string
products:
- displayName: string
id: string
subCategoryDetails:
components:
- string
credentials:
- displayName: string
id: string
patchTypes:
- displayName: string
id: string
subCategory: string
versions:
- string
versions:
- string
description: string
displayName: string
PlatformConfiguration Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The PlatformConfiguration resource accepts the following input properties:
- Compartment
Id string - Tenancy OCID
- Config
Category PlatformDetails Configuration Config Category Details - (Updatable) Config Category Details.
- Description string
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- Display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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
- Compartment
Id string - Tenancy OCID
- Config
Category PlatformDetails Configuration Config Category Details Args - (Updatable) Config Category Details.
- Description string
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- Display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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
- compartment
Id String - Tenancy OCID
- config
Category PlatformDetails Configuration Config Category Details - (Updatable) Config Category Details.
- description String
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display
Name String (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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
- compartment
Id string - Tenancy OCID
- config
Category PlatformDetails Configuration Config Category Details - (Updatable) Config Category Details.
- description string
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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
- compartment_
id str - Tenancy OCID
- config_
category_ fleetappsmanagement.details Platform Configuration Config Category Details Args - (Updatable) Config Category Details.
- description str
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display_
name str (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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
- compartment
Id String - Tenancy OCID
- config
Category Property MapDetails - (Updatable) Config Category Details.
- description String
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display
Name String (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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
Outputs
All input properties are implicitly available as output properties. Additionally, the PlatformConfiguration resource produces the following output properties:
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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"}
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- Resource
Region string - Associated region
- State string
- The current state of the PlatformConfiguration.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- Type string
- The type of the configuration.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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"}
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- Resource
Region string - Associated region
- State string
- The current state of the PlatformConfiguration.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- Type string
- The type of the configuration.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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"}
- id String
- The provider-assigned unique ID for this managed resource.
- 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.
- resource
Region String - Associated region
- state String
- The current state of the PlatformConfiguration.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
- type String
- The type of the configuration.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- {[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"}
- id string
- The provider-assigned unique ID for this managed resource.
- 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.
- resource
Region string - Associated region
- state string
- The current state of the PlatformConfiguration.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- type string
- The type of the configuration.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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"}
- id str
- The provider-assigned unique ID for this managed resource.
- 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.
- resource_
region str - Associated region
- state str
- The current state of the PlatformConfiguration.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time this resource was created. An RFC3339 formatted datetime string.
- time_
updated str - The time this resource was last updated. An RFC3339 formatted datetime string.
- type str
- The type of the configuration.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- 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"}
- id String
- The provider-assigned unique ID for this managed resource.
- 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.
- resource
Region String - Associated region
- state String
- The current state of the PlatformConfiguration.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
- type String
- The type of the configuration.
Look up Existing PlatformConfiguration Resource
Get an existing PlatformConfiguration 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?: PlatformConfigurationState, opts?: CustomResourceOptions): PlatformConfiguration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
config_category_details: Optional[_fleetappsmanagement.PlatformConfigurationConfigCategoryDetailsArgs] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
lifecycle_details: Optional[str] = None,
resource_region: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None,
type: Optional[str] = None) -> PlatformConfiguration
func GetPlatformConfiguration(ctx *Context, name string, id IDInput, state *PlatformConfigurationState, opts ...ResourceOption) (*PlatformConfiguration, error)
public static PlatformConfiguration Get(string name, Input<string> id, PlatformConfigurationState? state, CustomResourceOptions? opts = null)
public static PlatformConfiguration get(String name, Output<String> id, PlatformConfigurationState state, CustomResourceOptions options)
resources: _: type: oci:FleetAppsManagement:PlatformConfiguration get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - Tenancy OCID
- Config
Category PlatformDetails Configuration Config Category Details - (Updatable) Config Category Details.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- Display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- 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.
- Resource
Region string - Associated region
- State string
- The current state of the PlatformConfiguration.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- Type string
- The type of the configuration.
- Compartment
Id string - Tenancy OCID
- Config
Category PlatformDetails Configuration Config Category Details Args - (Updatable) Config Category Details.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- Display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- 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.
- Resource
Region string - Associated region
- State string
- The current state of the PlatformConfiguration.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- Type string
- The type of the configuration.
- compartment
Id String - Tenancy OCID
- config
Category PlatformDetails Configuration Config Category Details - (Updatable) Config Category Details.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display
Name String (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- 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.
- resource
Region String - Associated region
- state String
- The current state of the PlatformConfiguration.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
- type String
- The type of the configuration.
- compartment
Id string - Tenancy OCID
- config
Category PlatformDetails Configuration Config Category Details - (Updatable) Config Category Details.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display
Name string (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- 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.
- resource
Region string - Associated region
- state string
- The current state of the PlatformConfiguration.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- type string
- The type of the configuration.
- compartment_
id str - Tenancy OCID
- config_
category_ fleetappsmanagement.details Platform Configuration Config Category Details Args - (Updatable) Config Category Details.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display_
name str (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- 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.
- resource_
region str - Associated region
- state str
- The current state of the PlatformConfiguration.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time this resource was created. An RFC3339 formatted datetime string.
- time_
updated str - The time this resource was last updated. An RFC3339 formatted datetime string.
- type str
- The type of the configuration.
- compartment
Id String - Tenancy OCID
- config
Category Property MapDetails - (Updatable) Config Category Details.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display
Name String (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
** 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>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- 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.
- resource
Region String - Associated region
- state String
- The current state of the PlatformConfiguration.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
- type String
- The type of the configuration.
Supporting Types
PlatformConfigurationConfigCategoryDetails, PlatformConfigurationConfigCategoryDetailsArgs
- Config
Category string - (Updatable) Category of configuration
- Compatible
Products List<PlatformConfiguration Config Category Details Compatible Product> - (Updatable) Products compatible with this Product. Provide products from the list of other products you have created that are compatible with the present one
- Components List<string>
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- Credentials
List<Platform
Configuration Config Category Details Credential> - (Updatable) OCID for the Credential name to be associated with the Product. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- Patch
Types List<PlatformConfiguration Config Category Details Patch Type> - (Updatable) Patch Types associated with this Product.
- Products
List<Platform
Configuration Config Category Details Product> - (Updatable) Products that belong to the stack. For example, Oracle WebLogic and Java for the Oracle Fusion Middleware product stack.
- Sub
Category PlatformDetails Configuration Config Category Details Sub Category Details - (Updatable) ProductStack Config Category Details.
- Versions List<string>
- (Updatable) Versions associated with the PRODUCT .
- Config
Category string - (Updatable) Category of configuration
- Compatible
Products []PlatformConfiguration Config Category Details Compatible Product - (Updatable) Products compatible with this Product. Provide products from the list of other products you have created that are compatible with the present one
- Components []string
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- Credentials
[]Platform
Configuration Config Category Details Credential - (Updatable) OCID for the Credential name to be associated with the Product. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- Patch
Types []PlatformConfiguration Config Category Details Patch Type - (Updatable) Patch Types associated with this Product.
- Products
[]Platform
Configuration Config Category Details Product - (Updatable) Products that belong to the stack. For example, Oracle WebLogic and Java for the Oracle Fusion Middleware product stack.
- Sub
Category PlatformDetails Configuration Config Category Details Sub Category Details - (Updatable) ProductStack Config Category Details.
- Versions []string
- (Updatable) Versions associated with the PRODUCT .
- config
Category String - (Updatable) Category of configuration
- compatible
Products List<PlatformConfiguration Config Category Details Compatible Product> - (Updatable) Products compatible with this Product. Provide products from the list of other products you have created that are compatible with the present one
- components List<String>
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- credentials
List<Platform
Configuration Config Category Details Credential> - (Updatable) OCID for the Credential name to be associated with the Product. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- patch
Types List<PlatformConfiguration Config Category Details Patch Type> - (Updatable) Patch Types associated with this Product.
- products
List<Platform
Configuration Config Category Details Product> - (Updatable) Products that belong to the stack. For example, Oracle WebLogic and Java for the Oracle Fusion Middleware product stack.
- sub
Category PlatformDetails Configuration Config Category Details Sub Category Details - (Updatable) ProductStack Config Category Details.
- versions List<String>
- (Updatable) Versions associated with the PRODUCT .
- config
Category string - (Updatable) Category of configuration
- compatible
Products PlatformConfiguration Config Category Details Compatible Product[] - (Updatable) Products compatible with this Product. Provide products from the list of other products you have created that are compatible with the present one
- components string[]
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- credentials
Platform
Configuration Config Category Details Credential[] - (Updatable) OCID for the Credential name to be associated with the Product. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- patch
Types PlatformConfiguration Config Category Details Patch Type[] - (Updatable) Patch Types associated with this Product.
- products
Platform
Configuration Config Category Details Product[] - (Updatable) Products that belong to the stack. For example, Oracle WebLogic and Java for the Oracle Fusion Middleware product stack.
- sub
Category PlatformDetails Configuration Config Category Details Sub Category Details - (Updatable) ProductStack Config Category Details.
- versions string[]
- (Updatable) Versions associated with the PRODUCT .
- config_
category str - (Updatable) Category of configuration
- compatible_
products Sequence[fleetappsmanagement.Platform Configuration Config Category Details Compatible Product] - (Updatable) Products compatible with this Product. Provide products from the list of other products you have created that are compatible with the present one
- components Sequence[str]
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- credentials
Sequence[fleetappsmanagement.
Platform Configuration Config Category Details Credential] - (Updatable) OCID for the Credential name to be associated with the Product. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- patch_
types Sequence[fleetappsmanagement.Platform Configuration Config Category Details Patch Type] - (Updatable) Patch Types associated with this Product.
- products
Sequence[fleetappsmanagement.
Platform Configuration Config Category Details Product] - (Updatable) Products that belong to the stack. For example, Oracle WebLogic and Java for the Oracle Fusion Middleware product stack.
- sub_
category_ fleetappsmanagement.details Platform Configuration Config Category Details Sub Category Details - (Updatable) ProductStack Config Category Details.
- versions Sequence[str]
- (Updatable) Versions associated with the PRODUCT .
- config
Category String - (Updatable) Category of configuration
- compatible
Products List<Property Map> - (Updatable) Products compatible with this Product. Provide products from the list of other products you have created that are compatible with the present one
- components List<String>
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- credentials List<Property Map>
- (Updatable) OCID for the Credential name to be associated with the Product. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- patch
Types List<Property Map> - (Updatable) Patch Types associated with this Product.
- products List<Property Map>
- (Updatable) Products that belong to the stack. For example, Oracle WebLogic and Java for the Oracle Fusion Middleware product stack.
- sub
Category Property MapDetails - (Updatable) ProductStack Config Category Details.
- versions List<String>
- (Updatable) Versions associated with the PRODUCT .
PlatformConfigurationConfigCategoryDetailsCompatibleProduct, PlatformConfigurationConfigCategoryDetailsCompatibleProductArgs
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id string
- (Updatable) The OCID of the resource.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id str
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
PlatformConfigurationConfigCategoryDetailsCredential, PlatformConfigurationConfigCategoryDetailsCredentialArgs
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id string
- (Updatable) The OCID of the resource.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id str
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
PlatformConfigurationConfigCategoryDetailsPatchType, PlatformConfigurationConfigCategoryDetailsPatchTypeArgs
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id string
- (Updatable) The OCID of the resource.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id str
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
PlatformConfigurationConfigCategoryDetailsProduct, PlatformConfigurationConfigCategoryDetailsProductArgs
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id string
- (Updatable) The OCID of the resource.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id str
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
PlatformConfigurationConfigCategoryDetailsSubCategoryDetails, PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsArgs
- Sub
Category string - (Updatable) SubCategory of Product Stack.
- Components List<string>
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- Credentials
List<Platform
Configuration Config Category Details Sub Category Details Credential> - (Updatable) OCID for the Credential name to be associated with the Product Stack. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- Patch
Types List<PlatformConfiguration Config Category Details Sub Category Details Patch Type> - (Updatable) Patch Types associated with this Product Stack which will be considered as Product.
- Versions List<string>
- (Updatable) Versions associated with the PRODUCT .
- Sub
Category string - (Updatable) SubCategory of Product Stack.
- Components []string
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- Credentials
[]Platform
Configuration Config Category Details Sub Category Details Credential - (Updatable) OCID for the Credential name to be associated with the Product Stack. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- Patch
Types []PlatformConfiguration Config Category Details Sub Category Details Patch Type - (Updatable) Patch Types associated with this Product Stack which will be considered as Product.
- Versions []string
- (Updatable) Versions associated with the PRODUCT .
- sub
Category String - (Updatable) SubCategory of Product Stack.
- components List<String>
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- credentials
List<Platform
Configuration Config Category Details Sub Category Details Credential> - (Updatable) OCID for the Credential name to be associated with the Product Stack. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- patch
Types List<PlatformConfiguration Config Category Details Sub Category Details Patch Type> - (Updatable) Patch Types associated with this Product Stack which will be considered as Product.
- versions List<String>
- (Updatable) Versions associated with the PRODUCT .
- sub
Category string - (Updatable) SubCategory of Product Stack.
- components string[]
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- credentials
Platform
Configuration Config Category Details Sub Category Details Credential[] - (Updatable) OCID for the Credential name to be associated with the Product Stack. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- patch
Types PlatformConfiguration Config Category Details Sub Category Details Patch Type[] - (Updatable) Patch Types associated with this Product Stack which will be considered as Product.
- versions string[]
- (Updatable) Versions associated with the PRODUCT .
- sub_
category str - (Updatable) SubCategory of Product Stack.
- components Sequence[str]
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- credentials
Sequence[fleetappsmanagement.
Platform Configuration Config Category Details Sub Category Details Credential] - (Updatable) OCID for the Credential name to be associated with the Product Stack. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- patch_
types Sequence[fleetappsmanagement.Platform Configuration Config Category Details Sub Category Details Patch Type] - (Updatable) Patch Types associated with this Product Stack which will be considered as Product.
- versions Sequence[str]
- (Updatable) Versions associated with the PRODUCT .
- sub
Category String - (Updatable) SubCategory of Product Stack.
- components List<String>
- (Updatable) Various components of the Product. For example:The administration server or node manager can be the components of the Oracle WebLogic Application server. Forms server or concurrent manager can be the components of the Oracle E-Business Suite.
- credentials List<Property Map>
- (Updatable) OCID for the Credential name to be associated with the Product Stack. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server.
- patch
Types List<Property Map> - (Updatable) Patch Types associated with this Product Stack which will be considered as Product.
- versions List<String>
- (Updatable) Versions associated with the PRODUCT .
PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsCredential, PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsCredentialArgs
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id string
- (Updatable) The OCID of the resource.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id str
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchType, PlatformConfigurationConfigCategoryDetailsSubCategoryDetailsPatchTypeArgs
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Id string
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id string
- (Updatable) The OCID of the resource.
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id str
- (Updatable) The OCID of the resource.
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- id String
- (Updatable) The OCID of the resource.
Import
PlatformConfigurations can be imported using the id
, e.g.
$ pulumi import oci:FleetAppsManagement/platformConfiguration:PlatformConfiguration test_platform_configuration "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.