// Copyright 2016-2019, Pulumi Corporation namespace Pulumi { /// /// Options to help control the behavior of . /// public class InvokeOptions { /// /// An optional parent to use for default options for this invoke (e.g. the default provider /// to use). /// public Resource? Parent { get; set; } /// /// 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. /// public ProviderResource? Provider { get; set; } /// /// An optional version, corresponding to the version of the provider plugin that should be /// used when performing this invoke. /// public string? Version { get; set; } } }