Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
oci.OsManagementHub.getProfiles
Explore with Pulumi AI
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
This data source provides the list of Profiles in Oracle Cloud Infrastructure Os Management Hub service.
Lists registration profiles that match the specified compartment or profile OCID. Filter the list against a variety of criteria including but not limited to its name, status, vendor name, and architecture type.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testProfiles = oci.OsManagementHub.getProfiles({
archType: profileArchType,
compartmentId: compartmentId,
displayNames: profileDisplayName,
displayNameContains: profileDisplayNameContains,
isDefaultProfile: profileIsDefaultProfile,
isServiceProvidedProfile: profileIsServiceProvidedProfile,
osFamily: profileOsFamily,
profileId: testProfile.id,
profileTypes: profileProfileType,
registrationTypes: profileRegistrationType,
state: profileState,
vendorName: profileVendorName,
});
import pulumi
import pulumi_oci as oci
test_profiles = oci.OsManagementHub.get_profiles(arch_type=profile_arch_type,
compartment_id=compartment_id,
display_names=profile_display_name,
display_name_contains=profile_display_name_contains,
is_default_profile=profile_is_default_profile,
is_service_provided_profile=profile_is_service_provided_profile,
os_family=profile_os_family,
profile_id=test_profile["id"],
profile_types=profile_profile_type,
registration_types=profile_registration_type,
state=profile_state,
vendor_name=profile_vendor_name)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/OsManagementHub"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := OsManagementHub.GetProfiles(ctx, &osmanagementhub.GetProfilesArgs{
ArchType: pulumi.StringRef(profileArchType),
CompartmentId: pulumi.StringRef(compartmentId),
DisplayNames: profileDisplayName,
DisplayNameContains: pulumi.StringRef(profileDisplayNameContains),
IsDefaultProfile: pulumi.BoolRef(profileIsDefaultProfile),
IsServiceProvidedProfile: pulumi.BoolRef(profileIsServiceProvidedProfile),
OsFamily: pulumi.StringRef(profileOsFamily),
ProfileId: pulumi.StringRef(testProfile.Id),
ProfileTypes: profileProfileType,
RegistrationTypes: profileRegistrationType,
State: pulumi.StringRef(profileState),
VendorName: pulumi.StringRef(profileVendorName),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testProfiles = Oci.OsManagementHub.GetProfiles.Invoke(new()
{
ArchType = profileArchType,
CompartmentId = compartmentId,
DisplayNames = profileDisplayName,
DisplayNameContains = profileDisplayNameContains,
IsDefaultProfile = profileIsDefaultProfile,
IsServiceProvidedProfile = profileIsServiceProvidedProfile,
OsFamily = profileOsFamily,
ProfileId = testProfile.Id,
ProfileTypes = profileProfileType,
RegistrationTypes = profileRegistrationType,
State = profileState,
VendorName = profileVendorName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OsManagementHub.OsManagementHubFunctions;
import com.pulumi.oci.OsManagementHub.inputs.GetProfilesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testProfiles = OsManagementHubFunctions.getProfiles(GetProfilesArgs.builder()
.archType(profileArchType)
.compartmentId(compartmentId)
.displayNames(profileDisplayName)
.displayNameContains(profileDisplayNameContains)
.isDefaultProfile(profileIsDefaultProfile)
.isServiceProvidedProfile(profileIsServiceProvidedProfile)
.osFamily(profileOsFamily)
.profileId(testProfile.id())
.profileTypes(profileProfileType)
.registrationTypes(profileRegistrationType)
.state(profileState)
.vendorName(profileVendorName)
.build());
}
}
variables:
testProfiles:
fn::invoke:
Function: oci:OsManagementHub:getProfiles
Arguments:
archType: ${profileArchType}
compartmentId: ${compartmentId}
displayNames: ${profileDisplayName}
displayNameContains: ${profileDisplayNameContains}
isDefaultProfile: ${profileIsDefaultProfile}
isServiceProvidedProfile: ${profileIsServiceProvidedProfile}
osFamily: ${profileOsFamily}
profileId: ${testProfile.id}
profileTypes: ${profileProfileType}
registrationTypes: ${profileRegistrationType}
state: ${profileState}
vendorName: ${profileVendorName}
Using getProfiles
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getProfiles(args: GetProfilesArgs, opts?: InvokeOptions): Promise<GetProfilesResult>
function getProfilesOutput(args: GetProfilesOutputArgs, opts?: InvokeOptions): Output<GetProfilesResult>
def get_profiles(arch_type: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name_contains: Optional[str] = None,
display_names: Optional[Sequence[str]] = None,
filters: Optional[Sequence[_osmanagementhub.GetProfilesFilter]] = None,
is_default_profile: Optional[bool] = None,
is_service_provided_profile: Optional[bool] = None,
os_family: Optional[str] = None,
profile_id: Optional[str] = None,
profile_types: Optional[Sequence[str]] = None,
registration_types: Optional[Sequence[str]] = None,
state: Optional[str] = None,
vendor_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetProfilesResult
def get_profiles_output(arch_type: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
display_name_contains: Optional[pulumi.Input[str]] = None,
display_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_osmanagementhub.GetProfilesFilterArgs]]]] = None,
is_default_profile: Optional[pulumi.Input[bool]] = None,
is_service_provided_profile: Optional[pulumi.Input[bool]] = None,
os_family: Optional[pulumi.Input[str]] = None,
profile_id: Optional[pulumi.Input[str]] = None,
profile_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
registration_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
state: Optional[pulumi.Input[str]] = None,
vendor_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetProfilesResult]
func GetProfiles(ctx *Context, args *GetProfilesArgs, opts ...InvokeOption) (*GetProfilesResult, error)
func GetProfilesOutput(ctx *Context, args *GetProfilesOutputArgs, opts ...InvokeOption) GetProfilesResultOutput
> Note: This function is named GetProfiles
in the Go SDK.
public static class GetProfiles
{
public static Task<GetProfilesResult> InvokeAsync(GetProfilesArgs args, InvokeOptions? opts = null)
public static Output<GetProfilesResult> Invoke(GetProfilesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetProfilesResult> getProfiles(GetProfilesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:OsManagementHub/getProfiles:getProfiles
arguments:
# arguments dictionary
The following arguments are supported:
- Arch
Type string - A filter to return only profiles that match the given archType.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Display
Name stringContains - A filter to return resources that may partially match the given display name.
- Display
Names List<string> - A filter to return resources that match the given display names.
- Filters
List<Get
Profiles Filter> - Is
Default boolProfile - A boolean variable that is used to list only the default profile resources.
- Is
Service boolProvided Profile - A filter to return only service-provided profiles.
- Os
Family string - A filter to return only resources that match the given operating system family.
- Profile
Id string - The OCID of the registration profile. A filter used to return the specified profile.
- Profile
Types List<string> - A filter to return registration profiles that match the given profile type.
- Registration
Types List<string> - A filter to return profiles that match the given instance type.
- State string
- A filter to return only registration profiles in the given state.
- Vendor
Name string - A filter to return only resources that match the given vendor name.
- Arch
Type string - A filter to return only profiles that match the given archType.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Display
Name stringContains - A filter to return resources that may partially match the given display name.
- Display
Names []string - A filter to return resources that match the given display names.
- Filters
[]Get
Profiles Filter - Is
Default boolProfile - A boolean variable that is used to list only the default profile resources.
- Is
Service boolProvided Profile - A filter to return only service-provided profiles.
- Os
Family string - A filter to return only resources that match the given operating system family.
- Profile
Id string - The OCID of the registration profile. A filter used to return the specified profile.
- Profile
Types []string - A filter to return registration profiles that match the given profile type.
- Registration
Types []string - A filter to return profiles that match the given instance type.
- State string
- A filter to return only registration profiles in the given state.
- Vendor
Name string - A filter to return only resources that match the given vendor name.
- arch
Type String - A filter to return only profiles that match the given archType.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- display
Name StringContains - A filter to return resources that may partially match the given display name.
- display
Names List<String> - A filter to return resources that match the given display names.
- filters
List<Get
Profiles Filter> - is
Default BooleanProfile - A boolean variable that is used to list only the default profile resources.
- is
Service BooleanProvided Profile - A filter to return only service-provided profiles.
- os
Family String - A filter to return only resources that match the given operating system family.
- profile
Id String - The OCID of the registration profile. A filter used to return the specified profile.
- profile
Types List<String> - A filter to return registration profiles that match the given profile type.
- registration
Types List<String> - A filter to return profiles that match the given instance type.
- state String
- A filter to return only registration profiles in the given state.
- vendor
Name String - A filter to return only resources that match the given vendor name.
- arch
Type string - A filter to return only profiles that match the given archType.
- compartment
Id string - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- display
Name stringContains - A filter to return resources that may partially match the given display name.
- display
Names string[] - A filter to return resources that match the given display names.
- filters
Get
Profiles Filter[] - is
Default booleanProfile - A boolean variable that is used to list only the default profile resources.
- is
Service booleanProvided Profile - A filter to return only service-provided profiles.
- os
Family string - A filter to return only resources that match the given operating system family.
- profile
Id string - The OCID of the registration profile. A filter used to return the specified profile.
- profile
Types string[] - A filter to return registration profiles that match the given profile type.
- registration
Types string[] - A filter to return profiles that match the given instance type.
- state string
- A filter to return only registration profiles in the given state.
- vendor
Name string - A filter to return only resources that match the given vendor name.
- arch_
type str - A filter to return only profiles that match the given archType.
- compartment_
id str - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- display_
name_ strcontains - A filter to return resources that may partially match the given display name.
- display_
names Sequence[str] - A filter to return resources that match the given display names.
- filters
Sequence[osmanagementhub.
Get Profiles Filter] - is_
default_ boolprofile - A boolean variable that is used to list only the default profile resources.
- is_
service_ boolprovided_ profile - A filter to return only service-provided profiles.
- os_
family str - A filter to return only resources that match the given operating system family.
- profile_
id str - The OCID of the registration profile. A filter used to return the specified profile.
- profile_
types Sequence[str] - A filter to return registration profiles that match the given profile type.
- registration_
types Sequence[str] - A filter to return profiles that match the given instance type.
- state str
- A filter to return only registration profiles in the given state.
- vendor_
name str - A filter to return only resources that match the given vendor name.
- arch
Type String - A filter to return only profiles that match the given archType.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- display
Name StringContains - A filter to return resources that may partially match the given display name.
- display
Names List<String> - A filter to return resources that match the given display names.
- filters List<Property Map>
- is
Default BooleanProfile - A boolean variable that is used to list only the default profile resources.
- is
Service BooleanProvided Profile - A filter to return only service-provided profiles.
- os
Family String - A filter to return only resources that match the given operating system family.
- profile
Id String - The OCID of the registration profile. A filter used to return the specified profile.
- profile
Types List<String> - A filter to return registration profiles that match the given profile type.
- registration
Types List<String> - A filter to return profiles that match the given instance type.
- state String
- A filter to return only registration profiles in the given state.
- vendor
Name String - A filter to return only resources that match the given vendor name.
getProfiles Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Profile
Collections List<GetProfiles Profile Collection> - The list of profile_collection.
- Arch
Type string - The architecture type.
- Compartment
Id string - The OCID of the compartment that contains the registration profile.
- Display
Name stringContains - Display
Names List<string> - Software source name.
- Filters
List<Get
Profiles Filter> - Is
Default boolProfile - Indicates if the profile is set as the default. There is exactly one default profile for a specified architecture, OS family, registration type, and vendor. When registering an instance with the corresonding characteristics, the default profile is used, unless another profile is specified.
- Is
Service boolProvided Profile - Indicates if the profile was created by the service. OS Management Hub provides a limited set of standardized profiles that can be used to register Autonomous Linux or Windows instances.
- Os
Family string - The operating system family.
- Profile
Id string - Profile
Types List<string> - The type of profile.
- Registration
Types List<string> - The type of instance to register.
- State string
- The current state of the registration profile.
- Vendor
Name string - The vendor of the operating system for the instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Profile
Collections []GetProfiles Profile Collection - The list of profile_collection.
- Arch
Type string - The architecture type.
- Compartment
Id string - The OCID of the compartment that contains the registration profile.
- Display
Name stringContains - Display
Names []string - Software source name.
- Filters
[]Get
Profiles Filter - Is
Default boolProfile - Indicates if the profile is set as the default. There is exactly one default profile for a specified architecture, OS family, registration type, and vendor. When registering an instance with the corresonding characteristics, the default profile is used, unless another profile is specified.
- Is
Service boolProvided Profile - Indicates if the profile was created by the service. OS Management Hub provides a limited set of standardized profiles that can be used to register Autonomous Linux or Windows instances.
- Os
Family string - The operating system family.
- Profile
Id string - Profile
Types []string - The type of profile.
- Registration
Types []string - The type of instance to register.
- State string
- The current state of the registration profile.
- Vendor
Name string - The vendor of the operating system for the instance.
- id String
- The provider-assigned unique ID for this managed resource.
- profile
Collections List<GetProfiles Profile Collection> - The list of profile_collection.
- arch
Type String - The architecture type.
- compartment
Id String - The OCID of the compartment that contains the registration profile.
- display
Name StringContains - display
Names List<String> - Software source name.
- filters
List<Get
Profiles Filter> - is
Default BooleanProfile - Indicates if the profile is set as the default. There is exactly one default profile for a specified architecture, OS family, registration type, and vendor. When registering an instance with the corresonding characteristics, the default profile is used, unless another profile is specified.
- is
Service BooleanProvided Profile - Indicates if the profile was created by the service. OS Management Hub provides a limited set of standardized profiles that can be used to register Autonomous Linux or Windows instances.
- os
Family String - The operating system family.
- profile
Id String - profile
Types List<String> - The type of profile.
- registration
Types List<String> - The type of instance to register.
- state String
- The current state of the registration profile.
- vendor
Name String - The vendor of the operating system for the instance.
- id string
- The provider-assigned unique ID for this managed resource.
- profile
Collections GetProfiles Profile Collection[] - The list of profile_collection.
- arch
Type string - The architecture type.
- compartment
Id string - The OCID of the compartment that contains the registration profile.
- display
Name stringContains - display
Names string[] - Software source name.
- filters
Get
Profiles Filter[] - is
Default booleanProfile - Indicates if the profile is set as the default. There is exactly one default profile for a specified architecture, OS family, registration type, and vendor. When registering an instance with the corresonding characteristics, the default profile is used, unless another profile is specified.
- is
Service booleanProvided Profile - Indicates if the profile was created by the service. OS Management Hub provides a limited set of standardized profiles that can be used to register Autonomous Linux or Windows instances.
- os
Family string - The operating system family.
- profile
Id string - profile
Types string[] - The type of profile.
- registration
Types string[] - The type of instance to register.
- state string
- The current state of the registration profile.
- vendor
Name string - The vendor of the operating system for the instance.
- id str
- The provider-assigned unique ID for this managed resource.
- profile_
collections Sequence[osmanagementhub.Get Profiles Profile Collection] - The list of profile_collection.
- arch_
type str - The architecture type.
- compartment_
id str - The OCID of the compartment that contains the registration profile.
- display_
name_ strcontains - display_
names Sequence[str] - Software source name.
- filters
Sequence[osmanagementhub.
Get Profiles Filter] - is_
default_ boolprofile - Indicates if the profile is set as the default. There is exactly one default profile for a specified architecture, OS family, registration type, and vendor. When registering an instance with the corresonding characteristics, the default profile is used, unless another profile is specified.
- is_
service_ boolprovided_ profile - Indicates if the profile was created by the service. OS Management Hub provides a limited set of standardized profiles that can be used to register Autonomous Linux or Windows instances.
- os_
family str - The operating system family.
- profile_
id str - profile_
types Sequence[str] - The type of profile.
- registration_
types Sequence[str] - The type of instance to register.
- state str
- The current state of the registration profile.
- vendor_
name str - The vendor of the operating system for the instance.
- id String
- The provider-assigned unique ID for this managed resource.
- profile
Collections List<Property Map> - The list of profile_collection.
- arch
Type String - The architecture type.
- compartment
Id String - The OCID of the compartment that contains the registration profile.
- display
Name StringContains - display
Names List<String> - Software source name.
- filters List<Property Map>
- is
Default BooleanProfile - Indicates if the profile is set as the default. There is exactly one default profile for a specified architecture, OS family, registration type, and vendor. When registering an instance with the corresonding characteristics, the default profile is used, unless another profile is specified.
- is
Service BooleanProvided Profile - Indicates if the profile was created by the service. OS Management Hub provides a limited set of standardized profiles that can be used to register Autonomous Linux or Windows instances.
- os
Family String - The operating system family.
- profile
Id String - profile
Types List<String> - The type of profile.
- registration
Types List<String> - The type of instance to register.
- state String
- The current state of the registration profile.
- vendor
Name String - The vendor of the operating system for the instance.
Supporting Types
GetProfilesFilter
GetProfilesProfileCollection
GetProfilesProfileCollectionItem
- Arch
Type string - A filter to return only profiles that match the given archType.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Dictionary<string, object>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- Software source description.
- Display
Name string - A filter to return resources that match the given display names.
- Dictionary<string, object>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Id string
- The OCID of the software source.
- Is
Default boolProfile - A boolean variable that is used to list only the default profile resources.
- Is
Service boolProvided Profile - A filter to return only service-provided profiles.
- Lifecycle
Environments List<GetProfiles Profile Collection Item Lifecycle Environment> - Provides identifying information for the specified lifecycle environment.
- Lifecycle
Stage stringId - Lifecycle
Stages List<GetProfiles Profile Collection Item Lifecycle Stage> - Provides identifying information for the specified lifecycle stage.
- Managed
Instance stringGroup Id - Managed
Instance List<GetGroups Profiles Profile Collection Item Managed Instance Group> - Provides identifying information for the specified managed instance group.
- Management
Station stringId - The OCID of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
- Os
Family string - A filter to return only resources that match the given operating system family.
- Profile
Type string - A filter to return registration profiles that match the given profile type.
- Registration
Type string - A filter to return profiles that match the given instance type.
- Software
Source List<string>Ids - Software
Sources List<GetProfiles Profile Collection Item Software Source> - The list of software sources that the registration profile will use.
- State string
- A filter to return only registration profiles in the given state.
- Dictionary<string, object>
- 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 the registration profile was created (in RFC 3339 format).
- Vendor
Name string - A filter to return only resources that match the given vendor name.
- Arch
Type string - A filter to return only profiles that match the given archType.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- map[string]interface{}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Description string
- Software source description.
- Display
Name string - A filter to return resources that match the given display names.
- map[string]interface{}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Id string
- The OCID of the software source.
- Is
Default boolProfile - A boolean variable that is used to list only the default profile resources.
- Is
Service boolProvided Profile - A filter to return only service-provided profiles.
- Lifecycle
Environments []GetProfiles Profile Collection Item Lifecycle Environment - Provides identifying information for the specified lifecycle environment.
- Lifecycle
Stage stringId - Lifecycle
Stages []GetProfiles Profile Collection Item Lifecycle Stage - Provides identifying information for the specified lifecycle stage.
- Managed
Instance stringGroup Id - Managed
Instance []GetGroups Profiles Profile Collection Item Managed Instance Group - Provides identifying information for the specified managed instance group.
- Management
Station stringId - The OCID of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
- Os
Family string - A filter to return only resources that match the given operating system family.
- Profile
Type string - A filter to return registration profiles that match the given profile type.
- Registration
Type string - A filter to return profiles that match the given instance type.
- Software
Source []stringIds - Software
Sources []GetProfiles Profile Collection Item Software Source - The list of software sources that the registration profile will use.
- State string
- A filter to return only registration profiles in the given state.
- map[string]interface{}
- 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 the registration profile was created (in RFC 3339 format).
- Vendor
Name string - A filter to return only resources that match the given vendor name.
- arch
Type String - A filter to return only profiles that match the given archType.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Map<String,Object>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- Software source description.
- display
Name String - A filter to return resources that match the given display names.
- Map<String,Object>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id String
- The OCID of the software source.
- is
Default BooleanProfile - A boolean variable that is used to list only the default profile resources.
- is
Service BooleanProvided Profile - A filter to return only service-provided profiles.
- lifecycle
Environments List<GetProfiles Profile Collection Item Lifecycle Environment> - Provides identifying information for the specified lifecycle environment.
- lifecycle
Stage StringId - lifecycle
Stages List<GetProfiles Profile Collection Item Lifecycle Stage> - Provides identifying information for the specified lifecycle stage.
- managed
Instance StringGroup Id - managed
Instance List<GetGroups Profiles Profile Collection Item Managed Instance Group> - Provides identifying information for the specified managed instance group.
- management
Station StringId - The OCID of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
- os
Family String - A filter to return only resources that match the given operating system family.
- profile
Type String - A filter to return registration profiles that match the given profile type.
- registration
Type String - A filter to return profiles that match the given instance type.
- software
Source List<String>Ids - software
Sources List<GetProfiles Profile Collection Item Software Source> - The list of software sources that the registration profile will use.
- state String
- A filter to return only registration profiles in the given state.
- Map<String,Object>
- 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 the registration profile was created (in RFC 3339 format).
- vendor
Name String - A filter to return only resources that match the given vendor name.
- arch
Type string - A filter to return only profiles that match the given archType.
- compartment
Id string - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- {[key: string]: any}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description string
- Software source description.
- display
Name string - A filter to return resources that match the given display names.
- {[key: string]: any}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id string
- The OCID of the software source.
- is
Default booleanProfile - A boolean variable that is used to list only the default profile resources.
- is
Service booleanProvided Profile - A filter to return only service-provided profiles.
- lifecycle
Environments GetProfiles Profile Collection Item Lifecycle Environment[] - Provides identifying information for the specified lifecycle environment.
- lifecycle
Stage stringId - lifecycle
Stages GetProfiles Profile Collection Item Lifecycle Stage[] - Provides identifying information for the specified lifecycle stage.
- managed
Instance stringGroup Id - managed
Instance GetGroups Profiles Profile Collection Item Managed Instance Group[] - Provides identifying information for the specified managed instance group.
- management
Station stringId - The OCID of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
- os
Family string - A filter to return only resources that match the given operating system family.
- profile
Type string - A filter to return registration profiles that match the given profile type.
- registration
Type string - A filter to return profiles that match the given instance type.
- software
Source string[]Ids - software
Sources GetProfiles Profile Collection Item Software Source[] - The list of software sources that the registration profile will use.
- state string
- A filter to return only registration profiles in the given state.
- {[key: string]: any}
- 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 the registration profile was created (in RFC 3339 format).
- vendor
Name string - A filter to return only resources that match the given vendor name.
- arch_
type str - A filter to return only profiles that match the given archType.
- compartment_
id str - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Mapping[str, Any]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description str
- Software source description.
- display_
name str - A filter to return resources that match the given display names.
- Mapping[str, Any]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id str
- The OCID of the software source.
- is_
default_ boolprofile - A boolean variable that is used to list only the default profile resources.
- is_
service_ boolprovided_ profile - A filter to return only service-provided profiles.
- lifecycle_
environments Sequence[osmanagementhub.Get Profiles Profile Collection Item Lifecycle Environment] - Provides identifying information for the specified lifecycle environment.
- lifecycle_
stage_ strid - lifecycle_
stages Sequence[osmanagementhub.Get Profiles Profile Collection Item Lifecycle Stage] - Provides identifying information for the specified lifecycle stage.
- managed_
instance_ strgroup_ id - managed_
instance_ Sequence[osmanagementhub.groups Get Profiles Profile Collection Item Managed Instance Group] - Provides identifying information for the specified managed instance group.
- management_
station_ strid - The OCID of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
- os_
family str - A filter to return only resources that match the given operating system family.
- profile_
type str - A filter to return registration profiles that match the given profile type.
- registration_
type str - A filter to return profiles that match the given instance type.
- software_
source_ Sequence[str]ids - software_
sources Sequence[osmanagementhub.Get Profiles Profile Collection Item Software Source] - The list of software sources that the registration profile will use.
- state str
- A filter to return only registration profiles in the given state.
- Mapping[str, Any]
- 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 the registration profile was created (in RFC 3339 format).
- vendor_
name str - A filter to return only resources that match the given vendor name.
- arch
Type String - A filter to return only profiles that match the given archType.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment.
- Map<Any>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- description String
- Software source description.
- display
Name String - A filter to return resources that match the given display names.
- Map<Any>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- id String
- The OCID of the software source.
- is
Default BooleanProfile - A boolean variable that is used to list only the default profile resources.
- is
Service BooleanProvided Profile - A filter to return only service-provided profiles.
- lifecycle
Environments List<Property Map> - Provides identifying information for the specified lifecycle environment.
- lifecycle
Stage StringId - lifecycle
Stages List<Property Map> - Provides identifying information for the specified lifecycle stage.
- managed
Instance StringGroup Id - managed
Instance List<Property Map>Groups - Provides identifying information for the specified managed instance group.
- management
Station StringId - The OCID of the management station to associate with an instance once registered. Associating with a management station applies only to non-OCI instances.
- os
Family String - A filter to return only resources that match the given operating system family.
- profile
Type String - A filter to return registration profiles that match the given profile type.
- registration
Type String - A filter to return profiles that match the given instance type.
- software
Source List<String>Ids - software
Sources List<Property Map> - The list of software sources that the registration profile will use.
- state String
- A filter to return only registration profiles in the given state.
- Map<Any>
- 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 the registration profile was created (in RFC 3339 format).
- vendor
Name String - A filter to return only resources that match the given vendor name.
GetProfilesProfileCollectionItemLifecycleEnvironment
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the software source.
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the software source.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the software source.
- display
Name string - A filter to return resources that match the given display names.
- id string
- The OCID of the software source.
- display_
name str - A filter to return resources that match the given display names.
- id str
- The OCID of the software source.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the software source.
GetProfilesProfileCollectionItemLifecycleStage
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the software source.
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the software source.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the software source.
- display
Name string - A filter to return resources that match the given display names.
- id string
- The OCID of the software source.
- display_
name str - A filter to return resources that match the given display names.
- id str
- The OCID of the software source.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the software source.
GetProfilesProfileCollectionItemManagedInstanceGroup
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the software source.
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the software source.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the software source.
- display
Name string - A filter to return resources that match the given display names.
- id string
- The OCID of the software source.
- display_
name str - A filter to return resources that match the given display names.
- id str
- The OCID of the software source.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the software source.
GetProfilesProfileCollectionItemSoftwareSource
- Description string
- Software source description.
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the software source.
- Is
Mandatory boolFor Autonomous Linux - Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- Software
Source stringType - Type of the software source.
- Description string
- Software source description.
- Display
Name string - A filter to return resources that match the given display names.
- Id string
- The OCID of the software source.
- Is
Mandatory boolFor Autonomous Linux - Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- Software
Source stringType - Type of the software source.
- description String
- Software source description.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the software source.
- is
Mandatory BooleanFor Autonomous Linux - Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- software
Source StringType - Type of the software source.
- description string
- Software source description.
- display
Name string - A filter to return resources that match the given display names.
- id string
- The OCID of the software source.
- is
Mandatory booleanFor Autonomous Linux - Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- software
Source stringType - Type of the software source.
- description str
- Software source description.
- display_
name str - A filter to return resources that match the given display names.
- id str
- The OCID of the software source.
- is_
mandatory_ boolfor_ autonomous_ linux - Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- software_
source_ strtype - Type of the software source.
- description String
- Software source description.
- display
Name String - A filter to return resources that match the given display names.
- id String
- The OCID of the software source.
- is
Mandatory BooleanFor Autonomous Linux - Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.
- software
Source StringType - Type of the software source.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi