Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ResourceShare ¶
type ResourceShare struct {
// contains filtered or unexported fields
}
Provides a Resource Access Manager (RAM) resource share.
func GetResourceShare ¶
func GetResourceShare(ctx *pulumi.Context, name string, id pulumi.ID, state *ResourceShareState, opts ...pulumi.ResourceOpt) (*ResourceShare, error)
GetResourceShare gets an existing ResourceShare resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewResourceShare ¶
func NewResourceShare(ctx *pulumi.Context, name string, args *ResourceShareArgs, opts ...pulumi.ResourceOpt) (*ResourceShare, error)
NewResourceShare registers a new resource with the given unique name, arguments, and options.
func (*ResourceShare) AllowExternalPrincipals ¶
func (r *ResourceShare) AllowExternalPrincipals() *pulumi.BoolOutput
Indicates whether principals outside your organization can be associated with a resource share.
func (*ResourceShare) ID ¶
func (r *ResourceShare) ID() *pulumi.IDOutput
ID is this resource's unique identifier assigned by its provider.
func (*ResourceShare) Name ¶
func (r *ResourceShare) Name() *pulumi.StringOutput
The name of the resource share.
func (*ResourceShare) Tags ¶
func (r *ResourceShare) Tags() *pulumi.MapOutput
A mapping of tags to assign to the resource share.
func (*ResourceShare) URN ¶
func (r *ResourceShare) URN() *pulumi.URNOutput
URN is this resource's unique name assigned by Pulumi.
type ResourceShareArgs ¶
type ResourceShareArgs struct {AllowExternalPrincipals interface{} Name interface{} Tags interface{} }
The set of arguments for constructing a ResourceShare resource.
type ResourceShareState ¶
type ResourceShareState struct {AllowExternalPrincipals interface{} Name interface{} Tags interface{} }
Input properties used for looking up and filtering ResourceShare resources.