oci.OsManagementHub.ProfileAttachManagementStationManagement
Explore with Pulumi AI
This resource provides the Profile Attach Management Station Management resource in Oracle Cloud Infrastructure Os Management Hub service.
Attaches the specified management station to a profile.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testProfileAttachManagementStationManagement = new oci.osmanagementhub.ProfileAttachManagementStationManagement("test_profile_attach_management_station_management", {
managementStationId: testManagementStation.id,
profileId: testProfile.id,
});
import pulumi
import pulumi_oci as oci
test_profile_attach_management_station_management = oci.os_management_hub.ProfileAttachManagementStationManagement("test_profile_attach_management_station_management",
management_station_id=test_management_station["id"],
profile_id=test_profile["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/osmanagementhub"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := osmanagementhub.NewProfileAttachManagementStationManagement(ctx, "test_profile_attach_management_station_management", &osmanagementhub.ProfileAttachManagementStationManagementArgs{
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 testProfileAttachManagementStationManagement = new Oci.OsManagementHub.ProfileAttachManagementStationManagement("test_profile_attach_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.ProfileAttachManagementStationManagement;
import com.pulumi.oci.OsManagementHub.ProfileAttachManagementStationManagementArgs;
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 testProfileAttachManagementStationManagement = new ProfileAttachManagementStationManagement("testProfileAttachManagementStationManagement", ProfileAttachManagementStationManagementArgs.builder()
.managementStationId(testManagementStation.id())
.profileId(testProfile.id())
.build());
}
}
resources:
testProfileAttachManagementStationManagement:
type: oci:OsManagementHub:ProfileAttachManagementStationManagement
name: test_profile_attach_management_station_management
properties:
managementStationId: ${testManagementStation.id}
profileId: ${testProfile.id}
Create ProfileAttachManagementStationManagement Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProfileAttachManagementStationManagement(name: string, args: ProfileAttachManagementStationManagementArgs, opts?: CustomResourceOptions);
@overload
def ProfileAttachManagementStationManagement(resource_name: str,
args: ProfileAttachManagementStationManagementArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProfileAttachManagementStationManagement(resource_name: str,
opts: Optional[ResourceOptions] = None,
management_station_id: Optional[str] = None,
profile_id: Optional[str] = None)
func NewProfileAttachManagementStationManagement(ctx *Context, name string, args ProfileAttachManagementStationManagementArgs, opts ...ResourceOption) (*ProfileAttachManagementStationManagement, error)
public ProfileAttachManagementStationManagement(string name, ProfileAttachManagementStationManagementArgs args, CustomResourceOptions? opts = null)
public ProfileAttachManagementStationManagement(String name, ProfileAttachManagementStationManagementArgs args)
public ProfileAttachManagementStationManagement(String name, ProfileAttachManagementStationManagementArgs args, CustomResourceOptions options)
type: oci:OsManagementHub:ProfileAttachManagementStationManagement
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 ProfileAttachManagementStationManagementArgs
- 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 ProfileAttachManagementStationManagementArgs
- 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 ProfileAttachManagementStationManagementArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProfileAttachManagementStationManagementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProfileAttachManagementStationManagementArgs
- 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 profileAttachManagementStationManagementResource = new Oci.OsManagementHub.ProfileAttachManagementStationManagement("profileAttachManagementStationManagementResource", new()
{
ManagementStationId = "string",
ProfileId = "string",
});
example, err := OsManagementHub.NewProfileAttachManagementStationManagement(ctx, "profileAttachManagementStationManagementResource", &OsManagementHub.ProfileAttachManagementStationManagementArgs{
ManagementStationId: pulumi.String("string"),
ProfileId: pulumi.String("string"),
})
var profileAttachManagementStationManagementResource = new ProfileAttachManagementStationManagement("profileAttachManagementStationManagementResource", ProfileAttachManagementStationManagementArgs.builder()
.managementStationId("string")
.profileId("string")
.build());
profile_attach_management_station_management_resource = oci.os_management_hub.ProfileAttachManagementStationManagement("profileAttachManagementStationManagementResource",
management_station_id="string",
profile_id="string")
const profileAttachManagementStationManagementResource = new oci.osmanagementhub.ProfileAttachManagementStationManagement("profileAttachManagementStationManagementResource", {
managementStationId: "string",
profileId: "string",
});
type: oci:OsManagementHub:ProfileAttachManagementStationManagement
properties:
managementStationId: string
profileId: string
ProfileAttachManagementStationManagement 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 ProfileAttachManagementStationManagement resource accepts the following input properties:
- Management
Station stringId - The OCID of the management station that the instance will be associated with.
- 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 that the instance will be associated with.
- 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 that the instance will be associated with.
- 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 that the instance will be associated with.
- 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 that the instance will be associated with.
- 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 that the instance will be associated with.
- 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 ProfileAttachManagementStationManagement 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 ProfileAttachManagementStationManagement Resource
Get an existing ProfileAttachManagementStationManagement 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?: ProfileAttachManagementStationManagementState, opts?: CustomResourceOptions): ProfileAttachManagementStationManagement
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
management_station_id: Optional[str] = None,
profile_id: Optional[str] = None) -> ProfileAttachManagementStationManagement
func GetProfileAttachManagementStationManagement(ctx *Context, name string, id IDInput, state *ProfileAttachManagementStationManagementState, opts ...ResourceOption) (*ProfileAttachManagementStationManagement, error)
public static ProfileAttachManagementStationManagement Get(string name, Input<string> id, ProfileAttachManagementStationManagementState? state, CustomResourceOptions? opts = null)
public static ProfileAttachManagementStationManagement get(String name, Output<String> id, ProfileAttachManagementStationManagementState state, CustomResourceOptions options)
resources: _: type: oci:OsManagementHub:ProfileAttachManagementStationManagement 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 that the instance will be associated with.
- 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 that the instance will be associated with.
- 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 that the instance will be associated with.
- 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 that the instance will be associated with.
- 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 that the instance will be associated with.
- 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 that the instance will be associated with.
- 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
ProfileAttachManagementStationManagement can be imported using the id
, e.g.
$ pulumi import oci:OsManagementHub/profileAttachManagementStationManagement:ProfileAttachManagementStationManagement test_profile_attach_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
oci
Terraform Provider.