published on Friday, Apr 24, 2026 by Pulumi
published on Friday, Apr 24, 2026 by Pulumi
This resource provides the Profile Detach Management Station Management resource in Oracle Cloud Infrastructure Os Management Hub service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/osmh/latest/Profile/DetachManagementStation
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/os_management_hub
Detaches the specified management station from a profile.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testProfileDetachManagementStationManagement = new oci.osmanagementhub.ProfileDetachManagementStationManagement("test_profile_detach_management_station_management", {
managementStationId: testManagementStation.id,
profileId: testProfile.id,
});
import pulumi
import pulumi_oci as oci
test_profile_detach_management_station_management = oci.osmanagementhub.ProfileDetachManagementStationManagement("test_profile_detach_management_station_management",
management_station_id=test_management_station["id"],
profile_id=test_profile["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/osmanagementhub"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := osmanagementhub.NewProfileDetachManagementStationManagement(ctx, "test_profile_detach_management_station_management", &osmanagementhub.ProfileDetachManagementStationManagementArgs{
ManagementStationId: pulumi.Any(testManagementStation.Id),
ProfileId: pulumi.Any(testProfile.Id),
})
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 testProfileDetachManagementStationManagement = new Oci.OsManagementHub.ProfileDetachManagementStationManagement("test_profile_detach_management_station_management", new()
{
ManagementStationId = testManagementStation.Id,
ProfileId = testProfile.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OsManagementHub.ProfileDetachManagementStationManagement;
import com.pulumi.oci.OsManagementHub.ProfileDetachManagementStationManagementArgs;
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 testProfileDetachManagementStationManagement = new ProfileDetachManagementStationManagement("testProfileDetachManagementStationManagement", ProfileDetachManagementStationManagementArgs.builder()
.managementStationId(testManagementStation.id())
.profileId(testProfile.id())
.build());
}
}
resources:
testProfileDetachManagementStationManagement:
type: oci:OsManagementHub:ProfileDetachManagementStationManagement
name: test_profile_detach_management_station_management
properties:
managementStationId: ${testManagementStation.id}
profileId: ${testProfile.id}
Create ProfileDetachManagementStationManagement Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProfileDetachManagementStationManagement(name: string, args: ProfileDetachManagementStationManagementArgs, opts?: CustomResourceOptions);@overload
def ProfileDetachManagementStationManagement(resource_name: str,
args: ProfileDetachManagementStationManagementArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProfileDetachManagementStationManagement(resource_name: str,
opts: Optional[ResourceOptions] = None,
management_station_id: Optional[str] = None,
profile_id: Optional[str] = None)func NewProfileDetachManagementStationManagement(ctx *Context, name string, args ProfileDetachManagementStationManagementArgs, opts ...ResourceOption) (*ProfileDetachManagementStationManagement, error)public ProfileDetachManagementStationManagement(string name, ProfileDetachManagementStationManagementArgs args, CustomResourceOptions? opts = null)
public ProfileDetachManagementStationManagement(String name, ProfileDetachManagementStationManagementArgs args)
public ProfileDetachManagementStationManagement(String name, ProfileDetachManagementStationManagementArgs args, CustomResourceOptions options)
type: oci:OsManagementHub:ProfileDetachManagementStationManagement
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 ProfileDetachManagementStationManagementArgs
- 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 ProfileDetachManagementStationManagementArgs
- 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 ProfileDetachManagementStationManagementArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProfileDetachManagementStationManagementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProfileDetachManagementStationManagementArgs
- 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 profileDetachManagementStationManagementResource = new Oci.OsManagementHub.ProfileDetachManagementStationManagement("profileDetachManagementStationManagementResource", new()
{
ManagementStationId = "string",
ProfileId = "string",
});
example, err := osmanagementhub.NewProfileDetachManagementStationManagement(ctx, "profileDetachManagementStationManagementResource", &osmanagementhub.ProfileDetachManagementStationManagementArgs{
ManagementStationId: pulumi.String("string"),
ProfileId: pulumi.String("string"),
})
var profileDetachManagementStationManagementResource = new ProfileDetachManagementStationManagement("profileDetachManagementStationManagementResource", ProfileDetachManagementStationManagementArgs.builder()
.managementStationId("string")
.profileId("string")
.build());
profile_detach_management_station_management_resource = oci.osmanagementhub.ProfileDetachManagementStationManagement("profileDetachManagementStationManagementResource",
management_station_id="string",
profile_id="string")
const profileDetachManagementStationManagementResource = new oci.osmanagementhub.ProfileDetachManagementStationManagement("profileDetachManagementStationManagementResource", {
managementStationId: "string",
profileId: "string",
});
type: oci:OsManagementHub:ProfileDetachManagementStationManagement
properties:
managementStationId: string
profileId: string
ProfileDetachManagementStationManagement 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 ProfileDetachManagementStationManagement resource accepts the following input properties:
- Management
Station stringId - The OCID of the management station to detach from the profile.
- Profile
Id string The OCID of the registration profile.
** 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
- Management
Station stringId - The OCID of the management station to detach from the profile.
- Profile
Id string The OCID of the registration profile.
** 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
- management
Station StringId - The OCID of the management station to detach from the profile.
- profile
Id String The OCID of the registration profile.
** 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
- management
Station stringId - The OCID of the management station to detach from the profile.
- profile
Id string The OCID of the registration profile.
** 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
- management_
station_ strid - The OCID of the management station to detach from the profile.
- profile_
id str The OCID of the registration profile.
** 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
- management
Station StringId - The OCID of the management station to detach from the profile.
- profile
Id String The OCID of the registration profile.
** 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 ProfileDetachManagementStationManagement resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ProfileDetachManagementStationManagement Resource
Get an existing ProfileDetachManagementStationManagement 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?: ProfileDetachManagementStationManagementState, opts?: CustomResourceOptions): ProfileDetachManagementStationManagement@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
management_station_id: Optional[str] = None,
profile_id: Optional[str] = None) -> ProfileDetachManagementStationManagementfunc GetProfileDetachManagementStationManagement(ctx *Context, name string, id IDInput, state *ProfileDetachManagementStationManagementState, opts ...ResourceOption) (*ProfileDetachManagementStationManagement, error)public static ProfileDetachManagementStationManagement Get(string name, Input<string> id, ProfileDetachManagementStationManagementState? state, CustomResourceOptions? opts = null)public static ProfileDetachManagementStationManagement get(String name, Output<String> id, ProfileDetachManagementStationManagementState state, CustomResourceOptions options)resources: _: type: oci:OsManagementHub:ProfileDetachManagementStationManagement 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.
- Management
Station stringId - The OCID of the management station to detach from the profile.
- Profile
Id string The OCID of the registration profile.
** 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
- Management
Station stringId - The OCID of the management station to detach from the profile.
- Profile
Id string The OCID of the registration profile.
** 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
- management
Station StringId - The OCID of the management station to detach from the profile.
- profile
Id String The OCID of the registration profile.
** 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
- management
Station stringId - The OCID of the management station to detach from the profile.
- profile
Id string The OCID of the registration profile.
** 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
- management_
station_ strid - The OCID of the management station to detach from the profile.
- profile_
id str The OCID of the registration profile.
** 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
- management
Station StringId - The OCID of the management station to detach from the profile.
- profile
Id String The OCID of the registration profile.
** 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
Import
ProfileDetachManagementStationManagement can be imported using the id, e.g.
$ pulumi import oci:OsManagementHub/profileDetachManagementStationManagement:ProfileDetachManagementStationManagement test_profile_detach_management_station_management "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
ociTerraform Provider.
published on Friday, Apr 24, 2026 by Pulumi
