Show / Hide Table of Contents

Class InvokeOptions

Options to help control the behavior of InvokeAsync<T>(string, InvokeArgs, InvokeOptions).

Inheritance
object
InvokeOptions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Pulumi
Assembly: Pulumi.dll
Syntax
public class InvokeOptions

Properties

View Source

Parent

An optional parent to use for default options for this invoke (e.g. the default provider to use).

Declaration
public Resource? Parent { get; set; }
Property Value
Type Description
Resource
View Source

PluginDownloadURL

An optional URL, corresponding to the download URL of the provider plugin that should be used when performing this invoke.

Declaration
public string? PluginDownloadURL { get; set; }
Property Value
Type Description
string
View Source

Provider

An optional provider to use for this invocation. If no provider is supplied, the default provider for the invoked function's package will be used.

Declaration
public ProviderResource? Provider { get; set; }
Property Value
Type Description
ProviderResource
View Source

Version

An optional version, corresponding to the version of the provider plugin that should be used when performing this invoke.

Declaration
public string? Version { get; set; }
Property Value
Type Description
string
  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.