1. Packages
  2. Vcd Provider
  3. API Docs
  4. SolutionAddOnInstancePublish
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

vcd.SolutionAddOnInstancePublish

Explore with Pulumi AI

Create SolutionAddOnInstancePublish Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new SolutionAddOnInstancePublish(name: string, args: SolutionAddOnInstancePublishArgs, opts?: CustomResourceOptions);
@overload
def SolutionAddOnInstancePublish(resource_name: str,
                                 args: SolutionAddOnInstancePublishArgs,
                                 opts: Optional[ResourceOptions] = None)

@overload
def SolutionAddOnInstancePublish(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 add_on_instance_id: Optional[str] = None,
                                 org_ids: Optional[Sequence[str]] = None,
                                 publish_to_all_tenants: Optional[bool] = None,
                                 solution_add_on_instance_publish_id: Optional[str] = None)
func NewSolutionAddOnInstancePublish(ctx *Context, name string, args SolutionAddOnInstancePublishArgs, opts ...ResourceOption) (*SolutionAddOnInstancePublish, error)
public SolutionAddOnInstancePublish(string name, SolutionAddOnInstancePublishArgs args, CustomResourceOptions? opts = null)
public SolutionAddOnInstancePublish(String name, SolutionAddOnInstancePublishArgs args)
public SolutionAddOnInstancePublish(String name, SolutionAddOnInstancePublishArgs args, CustomResourceOptions options)
type: vcd:SolutionAddOnInstancePublish
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SolutionAddOnInstancePublishArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SolutionAddOnInstancePublishArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SolutionAddOnInstancePublishArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SolutionAddOnInstancePublishArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SolutionAddOnInstancePublishArgs
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 solutionAddOnInstancePublishResource = new Vcd.SolutionAddOnInstancePublish("solutionAddOnInstancePublishResource", new()
{
    AddOnInstanceId = "string",
    OrgIds = new[]
    {
        "string",
    },
    PublishToAllTenants = false,
    SolutionAddOnInstancePublishId = "string",
});
Copy
example, err := vcd.NewSolutionAddOnInstancePublish(ctx, "solutionAddOnInstancePublishResource", &vcd.SolutionAddOnInstancePublishArgs{
AddOnInstanceId: pulumi.String("string"),
OrgIds: pulumi.StringArray{
pulumi.String("string"),
},
PublishToAllTenants: pulumi.Bool(false),
SolutionAddOnInstancePublishId: pulumi.String("string"),
})
Copy
var solutionAddOnInstancePublishResource = new SolutionAddOnInstancePublish("solutionAddOnInstancePublishResource", SolutionAddOnInstancePublishArgs.builder()
    .addOnInstanceId("string")
    .orgIds("string")
    .publishToAllTenants(false)
    .solutionAddOnInstancePublishId("string")
    .build());
Copy
solution_add_on_instance_publish_resource = vcd.SolutionAddOnInstancePublish("solutionAddOnInstancePublishResource",
    add_on_instance_id="string",
    org_ids=["string"],
    publish_to_all_tenants=False,
    solution_add_on_instance_publish_id="string")
Copy
const solutionAddOnInstancePublishResource = new vcd.SolutionAddOnInstancePublish("solutionAddOnInstancePublishResource", {
    addOnInstanceId: "string",
    orgIds: ["string"],
    publishToAllTenants: false,
    solutionAddOnInstancePublishId: "string",
});
Copy
type: vcd:SolutionAddOnInstancePublish
properties:
    addOnInstanceId: string
    orgIds:
        - string
    publishToAllTenants: false
    solutionAddOnInstancePublishId: string
Copy

SolutionAddOnInstancePublish 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 SolutionAddOnInstancePublish resource accepts the following input properties:

AddOnInstanceId This property is required. string
Solution Add-On instance ID
OrgIds List<string>
Recipient Organization IDs
PublishToAllTenants bool
Set to true to publish to everyone
SolutionAddOnInstancePublishId string
AddOnInstanceId This property is required. string
Solution Add-On instance ID
OrgIds []string
Recipient Organization IDs
PublishToAllTenants bool
Set to true to publish to everyone
SolutionAddOnInstancePublishId string
addOnInstanceId This property is required. String
Solution Add-On instance ID
orgIds List<String>
Recipient Organization IDs
publishToAllTenants Boolean
Set to true to publish to everyone
solutionAddOnInstancePublishId String
addOnInstanceId This property is required. string
Solution Add-On instance ID
orgIds string[]
Recipient Organization IDs
publishToAllTenants boolean
Set to true to publish to everyone
solutionAddOnInstancePublishId string
add_on_instance_id This property is required. str
Solution Add-On instance ID
org_ids Sequence[str]
Recipient Organization IDs
publish_to_all_tenants bool
Set to true to publish to everyone
solution_add_on_instance_publish_id str
addOnInstanceId This property is required. String
Solution Add-On instance ID
orgIds List<String>
Recipient Organization IDs
publishToAllTenants Boolean
Set to true to publish to everyone
solutionAddOnInstancePublishId String

Outputs

All input properties are implicitly available as output properties. Additionally, the SolutionAddOnInstancePublish resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
RdeState string
Parent RDE state
Id string
The provider-assigned unique ID for this managed resource.
RdeState string
Parent RDE state
id String
The provider-assigned unique ID for this managed resource.
rdeState String
Parent RDE state
id string
The provider-assigned unique ID for this managed resource.
rdeState string
Parent RDE state
id str
The provider-assigned unique ID for this managed resource.
rde_state str
Parent RDE state
id String
The provider-assigned unique ID for this managed resource.
rdeState String
Parent RDE state

Look up Existing SolutionAddOnInstancePublish Resource

Get an existing SolutionAddOnInstancePublish 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?: SolutionAddOnInstancePublishState, opts?: CustomResourceOptions): SolutionAddOnInstancePublish
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        add_on_instance_id: Optional[str] = None,
        org_ids: Optional[Sequence[str]] = None,
        publish_to_all_tenants: Optional[bool] = None,
        rde_state: Optional[str] = None,
        solution_add_on_instance_publish_id: Optional[str] = None) -> SolutionAddOnInstancePublish
func GetSolutionAddOnInstancePublish(ctx *Context, name string, id IDInput, state *SolutionAddOnInstancePublishState, opts ...ResourceOption) (*SolutionAddOnInstancePublish, error)
public static SolutionAddOnInstancePublish Get(string name, Input<string> id, SolutionAddOnInstancePublishState? state, CustomResourceOptions? opts = null)
public static SolutionAddOnInstancePublish get(String name, Output<String> id, SolutionAddOnInstancePublishState state, CustomResourceOptions options)
resources:  _:    type: vcd:SolutionAddOnInstancePublish    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AddOnInstanceId string
Solution Add-On instance ID
OrgIds List<string>
Recipient Organization IDs
PublishToAllTenants bool
Set to true to publish to everyone
RdeState string
Parent RDE state
SolutionAddOnInstancePublishId string
AddOnInstanceId string
Solution Add-On instance ID
OrgIds []string
Recipient Organization IDs
PublishToAllTenants bool
Set to true to publish to everyone
RdeState string
Parent RDE state
SolutionAddOnInstancePublishId string
addOnInstanceId String
Solution Add-On instance ID
orgIds List<String>
Recipient Organization IDs
publishToAllTenants Boolean
Set to true to publish to everyone
rdeState String
Parent RDE state
solutionAddOnInstancePublishId String
addOnInstanceId string
Solution Add-On instance ID
orgIds string[]
Recipient Organization IDs
publishToAllTenants boolean
Set to true to publish to everyone
rdeState string
Parent RDE state
solutionAddOnInstancePublishId string
add_on_instance_id str
Solution Add-On instance ID
org_ids Sequence[str]
Recipient Organization IDs
publish_to_all_tenants bool
Set to true to publish to everyone
rde_state str
Parent RDE state
solution_add_on_instance_publish_id str
addOnInstanceId String
Solution Add-On instance ID
orgIds List<String>
Recipient Organization IDs
publishToAllTenants Boolean
Set to true to publish to everyone
rdeState String
Parent RDE state
solutionAddOnInstancePublishId String

Package Details

Repository
vcd vmware/terraform-provider-vcd
License
Notes
This Pulumi package is based on the vcd Terraform Provider.