oci.OsManagementHub.SoftwareSourceAddPackagesManagement
Explore with Pulumi AI
This resource provides the Software Source Add Packages Management resource in Oracle Cloud Infrastructure Os Management Hub service.
Adds packages to a software source. This operation can only be done for custom and versioned custom software sources that are not created using filters. For a versioned custom software source, you can only add packages when the source is created. Once content is added to a versioned custom software source, it is immutable. Packages can be of the format:
- name (for example: git). If isLatestContentOnly is true, only the latest version of the package will be added, otherwise all versions of the package will be added.
- name-version-release.architecture (for example: git-2.43.5-1.el8_10.x86_64)
- name-epoch:version-release.architecture (for example: git-0:2.43.5-1.el8_10.x86_64)
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSoftwareSourceAddPackagesManagement = new oci.osmanagementhub.SoftwareSourceAddPackagesManagement("test_software_source_add_packages_management", {
packages: softwareSourceAddPackagesManagementPackages,
softwareSourceId: testSoftwareSource.id,
isContinueOnMissingPackages: softwareSourceAddPackagesManagementIsContinueOnMissingPackages,
});
import pulumi
import pulumi_oci as oci
test_software_source_add_packages_management = oci.os_management_hub.SoftwareSourceAddPackagesManagement("test_software_source_add_packages_management",
packages=software_source_add_packages_management_packages,
software_source_id=test_software_source["id"],
is_continue_on_missing_packages=software_source_add_packages_management_is_continue_on_missing_packages)
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.NewSoftwareSourceAddPackagesManagement(ctx, "test_software_source_add_packages_management", &osmanagementhub.SoftwareSourceAddPackagesManagementArgs{
Packages: pulumi.Any(softwareSourceAddPackagesManagementPackages),
SoftwareSourceId: pulumi.Any(testSoftwareSource.Id),
IsContinueOnMissingPackages: pulumi.Any(softwareSourceAddPackagesManagementIsContinueOnMissingPackages),
})
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 testSoftwareSourceAddPackagesManagement = new Oci.OsManagementHub.SoftwareSourceAddPackagesManagement("test_software_source_add_packages_management", new()
{
Packages = softwareSourceAddPackagesManagementPackages,
SoftwareSourceId = testSoftwareSource.Id,
IsContinueOnMissingPackages = softwareSourceAddPackagesManagementIsContinueOnMissingPackages,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.OsManagementHub.SoftwareSourceAddPackagesManagement;
import com.pulumi.oci.OsManagementHub.SoftwareSourceAddPackagesManagementArgs;
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 testSoftwareSourceAddPackagesManagement = new SoftwareSourceAddPackagesManagement("testSoftwareSourceAddPackagesManagement", SoftwareSourceAddPackagesManagementArgs.builder()
.packages(softwareSourceAddPackagesManagementPackages)
.softwareSourceId(testSoftwareSource.id())
.isContinueOnMissingPackages(softwareSourceAddPackagesManagementIsContinueOnMissingPackages)
.build());
}
}
resources:
testSoftwareSourceAddPackagesManagement:
type: oci:OsManagementHub:SoftwareSourceAddPackagesManagement
name: test_software_source_add_packages_management
properties:
packages: ${softwareSourceAddPackagesManagementPackages}
softwareSourceId: ${testSoftwareSource.id}
isContinueOnMissingPackages: ${softwareSourceAddPackagesManagementIsContinueOnMissingPackages}
Create SoftwareSourceAddPackagesManagement Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SoftwareSourceAddPackagesManagement(name: string, args: SoftwareSourceAddPackagesManagementArgs, opts?: CustomResourceOptions);
@overload
def SoftwareSourceAddPackagesManagement(resource_name: str,
args: SoftwareSourceAddPackagesManagementArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SoftwareSourceAddPackagesManagement(resource_name: str,
opts: Optional[ResourceOptions] = None,
packages: Optional[Sequence[str]] = None,
software_source_id: Optional[str] = None,
is_continue_on_missing_packages: Optional[bool] = None)
func NewSoftwareSourceAddPackagesManagement(ctx *Context, name string, args SoftwareSourceAddPackagesManagementArgs, opts ...ResourceOption) (*SoftwareSourceAddPackagesManagement, error)
public SoftwareSourceAddPackagesManagement(string name, SoftwareSourceAddPackagesManagementArgs args, CustomResourceOptions? opts = null)
public SoftwareSourceAddPackagesManagement(String name, SoftwareSourceAddPackagesManagementArgs args)
public SoftwareSourceAddPackagesManagement(String name, SoftwareSourceAddPackagesManagementArgs args, CustomResourceOptions options)
type: oci:OsManagementHub:SoftwareSourceAddPackagesManagement
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 SoftwareSourceAddPackagesManagementArgs
- 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 SoftwareSourceAddPackagesManagementArgs
- 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 SoftwareSourceAddPackagesManagementArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SoftwareSourceAddPackagesManagementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SoftwareSourceAddPackagesManagementArgs
- 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 softwareSourceAddPackagesManagementResource = new Oci.OsManagementHub.SoftwareSourceAddPackagesManagement("softwareSourceAddPackagesManagementResource", new()
{
Packages = new[]
{
"string",
},
SoftwareSourceId = "string",
IsContinueOnMissingPackages = false,
});
example, err := OsManagementHub.NewSoftwareSourceAddPackagesManagement(ctx, "softwareSourceAddPackagesManagementResource", &OsManagementHub.SoftwareSourceAddPackagesManagementArgs{
Packages: pulumi.StringArray{
pulumi.String("string"),
},
SoftwareSourceId: pulumi.String("string"),
IsContinueOnMissingPackages: pulumi.Bool(false),
})
var softwareSourceAddPackagesManagementResource = new SoftwareSourceAddPackagesManagement("softwareSourceAddPackagesManagementResource", SoftwareSourceAddPackagesManagementArgs.builder()
.packages("string")
.softwareSourceId("string")
.isContinueOnMissingPackages(false)
.build());
software_source_add_packages_management_resource = oci.os_management_hub.SoftwareSourceAddPackagesManagement("softwareSourceAddPackagesManagementResource",
packages=["string"],
software_source_id="string",
is_continue_on_missing_packages=False)
const softwareSourceAddPackagesManagementResource = new oci.osmanagementhub.SoftwareSourceAddPackagesManagement("softwareSourceAddPackagesManagementResource", {
packages: ["string"],
softwareSourceId: "string",
isContinueOnMissingPackages: false,
});
type: oci:OsManagementHub:SoftwareSourceAddPackagesManagement
properties:
isContinueOnMissingPackages: false
packages:
- string
softwareSourceId: string
SoftwareSourceAddPackagesManagement 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 SoftwareSourceAddPackagesManagement resource accepts the following input properties:
- Packages List<string>
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- Software
Source stringId The OCID of the software source.
** 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
- Is
Continue boolOn Missing Packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
- Packages []string
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- Software
Source stringId The OCID of the software source.
** 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
- Is
Continue boolOn Missing Packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
- packages List<String>
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- software
Source StringId The OCID of the software source.
** 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
- is
Continue BooleanOn Missing Packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
- packages string[]
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- software
Source stringId The OCID of the software source.
** 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
- is
Continue booleanOn Missing Packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
- packages Sequence[str]
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- software_
source_ strid The OCID of the software source.
** 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
- is_
continue_ boolon_ missing_ packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
- packages List<String>
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- software
Source StringId The OCID of the software source.
** 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
- is
Continue BooleanOn Missing Packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
Outputs
All input properties are implicitly available as output properties. Additionally, the SoftwareSourceAddPackagesManagement 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 SoftwareSourceAddPackagesManagement Resource
Get an existing SoftwareSourceAddPackagesManagement 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?: SoftwareSourceAddPackagesManagementState, opts?: CustomResourceOptions): SoftwareSourceAddPackagesManagement
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
is_continue_on_missing_packages: Optional[bool] = None,
packages: Optional[Sequence[str]] = None,
software_source_id: Optional[str] = None) -> SoftwareSourceAddPackagesManagement
func GetSoftwareSourceAddPackagesManagement(ctx *Context, name string, id IDInput, state *SoftwareSourceAddPackagesManagementState, opts ...ResourceOption) (*SoftwareSourceAddPackagesManagement, error)
public static SoftwareSourceAddPackagesManagement Get(string name, Input<string> id, SoftwareSourceAddPackagesManagementState? state, CustomResourceOptions? opts = null)
public static SoftwareSourceAddPackagesManagement get(String name, Output<String> id, SoftwareSourceAddPackagesManagementState state, CustomResourceOptions options)
resources: _: type: oci:OsManagementHub:SoftwareSourceAddPackagesManagement 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.
- Is
Continue boolOn Missing Packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
- Packages List<string>
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- Software
Source stringId The OCID of the software source.
** 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
- Is
Continue boolOn Missing Packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
- Packages []string
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- Software
Source stringId The OCID of the software source.
** 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
- is
Continue BooleanOn Missing Packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
- packages List<String>
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- software
Source StringId The OCID of the software source.
** 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
- is
Continue booleanOn Missing Packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
- packages string[]
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- software
Source stringId The OCID of the software source.
** 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
- is_
continue_ boolon_ missing_ packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
- packages Sequence[str]
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- software_
source_ strid The OCID of the software source.
** 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
- is
Continue BooleanOn Missing Packages - Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.
- packages List<String>
- List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).
- software
Source StringId The OCID of the software source.
** 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
SoftwareSourceAddPackagesManagement can be imported using the id
, e.g.
$ pulumi import oci:OsManagementHub/softwareSourceAddPackagesManagement:SoftwareSourceAddPackagesManagement test_software_source_add_packages_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.