Skip to content

Commit

Permalink
Merge pull request #435 from pulumi/mikhailshilkov/no-nested-unions
Browse files Browse the repository at this point in the history
Update to pulumi/pulumi with no nested unions in C# gen
  • Loading branch information
mikhailshilkov authored Jan 5, 2021
2 parents f72ae73 + 4e99528 commit 3094fab
Show file tree
Hide file tree
Showing 532 changed files with 1,263 additions and 1,263 deletions.
4 changes: 2 additions & 2 deletions provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ require (
github.com/hashicorp/go-azure-helpers v0.10.0
github.com/hashicorp/hcl/v2 v2.6.0
github.com/pkg/errors v0.9.1
github.com/pulumi/pulumi/pkg/v2 v2.16.0
github.com/pulumi/pulumi/sdk/v2 v2.16.0
github.com/pulumi/pulumi/pkg/v2 v2.16.3-0.20210105101340-061950dbc277
github.com/pulumi/pulumi/sdk/v2 v2.16.3-0.20210105101340-061950dbc277
github.com/schollz/progressbar/v3 v3.5.0
github.com/sourcegraph/jsonx v0.0.0-20200629203448-1a936bd500cf
github.com/stretchr/testify v1.6.1
Expand Down
8 changes: 4 additions & 4 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -448,11 +448,11 @@ github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y8
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=
github.com/pulumi/pulumi/pkg/v2 v2.16.0 h1:Uc0PNYaCUhMaZ/K2RTTfdUZ1b87cN7F6/3KhmdgGJx8=
github.com/pulumi/pulumi/pkg/v2 v2.16.0/go.mod h1:bAbzFeU3gHu1diqcckqUqaFf5dP02BfJlP8dnHwm00k=
github.com/pulumi/pulumi/pkg/v2 v2.16.3-0.20210105101340-061950dbc277 h1:bXb4LpJllTQ9H6K3q1XACb9pFMAUGz9Hh55/kGrJBrg=
github.com/pulumi/pulumi/pkg/v2 v2.16.3-0.20210105101340-061950dbc277/go.mod h1:bAbzFeU3gHu1diqcckqUqaFf5dP02BfJlP8dnHwm00k=
github.com/pulumi/pulumi/sdk/v2 v2.2.1/go.mod h1:QNbWpL4gvf3X0lUFT7TXA2Jo1ff/Ti2l97AyFGYwvW4=
github.com/pulumi/pulumi/sdk/v2 v2.16.0 h1:dSR5GAea1FfNpYN2W5gymuEvF9OOkPaB3/Xb4hcNJL4=
github.com/pulumi/pulumi/sdk/v2 v2.16.0/go.mod h1:fCFhRV6NmidWetmgDPA76efL+s0JqLlS54JJIwfOt+o=
github.com/pulumi/pulumi/sdk/v2 v2.16.3-0.20210105101340-061950dbc277 h1:6CEVSlvgSeWnehPAnFxp50dtxoheYFMf4Jat6GB4Jvk=
github.com/pulumi/pulumi/sdk/v2 v2.16.3-0.20210105101340-061950dbc277/go.mod h1:fCFhRV6NmidWetmgDPA76efL+s0JqLlS54JJIwfOt+o=
github.com/rjeczalik/notify v0.9.2/go.mod h1:aErll2f0sUX9PXZnVNyeiObbmTlk5jnMoCa4QEjJeqM=
github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg=
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public partial class ActionRuleByName : Pulumi.CustomResource
/// action rule properties
/// </summary>
[Output("properties")]
public Output<Union<Outputs.ActionGroupResponse, Union<Outputs.DiagnosticsResponse, Outputs.SuppressionResponse>>> Properties { get; private set; } = null!;
public Output<object> Properties { get; private set; } = null!;

/// <summary>
/// Resource tags
Expand Down Expand Up @@ -110,7 +110,7 @@ public sealed class ActionRuleByNameArgs : Pulumi.ResourceArgs
/// action rule properties
/// </summary>
[Input("properties")]
public InputUnion<Inputs.ActionGroupArgs, InputUnion<Inputs.DiagnosticsArgs, Inputs.SuppressionArgs>>? Properties { get; set; }
public Input<object>? Properties { get; set; }

/// <summary>
/// Resource group name where the resource is created.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public sealed class GetActionRuleByNameResult
/// <summary>
/// action rule properties
/// </summary>
public readonly Union<Outputs.ActionGroupResponse, Union<Outputs.DiagnosticsResponse, Outputs.SuppressionResponse>> Properties;
public readonly object Properties;
/// <summary>
/// Resource tags
/// </summary>
Expand All @@ -72,7 +72,7 @@ private GetActionRuleByNameResult(

string name,

Union<Outputs.ActionGroupResponse, Union<Outputs.DiagnosticsResponse, Outputs.SuppressionResponse>> properties,
object properties,

ImmutableDictionary<string, string>? tags,

Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/BotService/Latest/Channel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public partial class Channel : Pulumi.CustomResource
/// The set of properties specific to bot channel resource
/// </summary>
[Output("properties")]
public Output<Union<Outputs.AlexaChannelResponse, Union<Outputs.DirectLineChannelResponse, Union<Outputs.DirectLineSpeechChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.LineChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>>>>>> Properties { get; private set; } = null!;
public Output<object> Properties { get; private set; } = null!;

/// <summary>
/// Gets or sets the SKU of the resource.
Expand Down Expand Up @@ -143,7 +143,7 @@ public sealed class ChannelArgs : Pulumi.ResourceArgs
/// The set of properties specific to bot channel resource
/// </summary>
[Input("properties")]
public InputUnion<Inputs.AlexaChannelArgs, InputUnion<Inputs.DirectLineChannelArgs, InputUnion<Inputs.DirectLineSpeechChannelArgs, InputUnion<Inputs.EmailChannelArgs, InputUnion<Inputs.FacebookChannelArgs, InputUnion<Inputs.KikChannelArgs, InputUnion<Inputs.LineChannelArgs, InputUnion<Inputs.MsTeamsChannelArgs, InputUnion<Inputs.SkypeChannelArgs, InputUnion<Inputs.SlackChannelArgs, InputUnion<Inputs.SmsChannelArgs, InputUnion<Inputs.TelegramChannelArgs, Inputs.WebChatChannelArgs>>>>>>>>>>>>? Properties { get; set; }
public Input<object>? Properties { get; set; }

/// <summary>
/// The name of the Bot resource group in the user subscription.
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/BotService/Latest/GetChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public sealed class GetChannelResult
/// <summary>
/// The set of properties specific to bot channel resource
/// </summary>
public readonly Union<Outputs.AlexaChannelResponse, Union<Outputs.DirectLineChannelResponse, Union<Outputs.DirectLineSpeechChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.LineChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>>>>> Properties;
public readonly object Properties;
/// <summary>
/// Gets or sets the SKU of the resource.
/// </summary>
Expand All @@ -94,7 +94,7 @@ private GetChannelResult(

string name,

Union<Outputs.AlexaChannelResponse, Union<Outputs.DirectLineChannelResponse, Union<Outputs.DirectLineSpeechChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.LineChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>>>>> properties,
object properties,

Outputs.SkuResponse? sku,

Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/BotService/Latest/ListChannelWithKeys.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public sealed class ListChannelWithKeysResult
/// <summary>
/// The set of properties specific to bot channel resource
/// </summary>
public readonly Union<Outputs.AlexaChannelResponse, Union<Outputs.DirectLineChannelResponse, Union<Outputs.DirectLineSpeechChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.LineChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>>>>> Properties;
public readonly object Properties;
/// <summary>
/// Gets or sets the SKU of the resource.
/// </summary>
Expand All @@ -94,7 +94,7 @@ private ListChannelWithKeysResult(

string name,

Union<Outputs.AlexaChannelResponse, Union<Outputs.DirectLineChannelResponse, Union<Outputs.DirectLineSpeechChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.LineChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>>>>> properties,
object properties,

Outputs.SkuResponse? sku,

Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/BotService/V20171201/Channel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public partial class Channel : Pulumi.CustomResource
/// The set of properties specific to bot channel resource
/// </summary>
[Output("properties")]
public Output<Union<Outputs.DirectLineChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>>> Properties { get; private set; } = null!;
public Output<object> Properties { get; private set; } = null!;

/// <summary>
/// Gets or sets the SKU of the resource.
Expand Down Expand Up @@ -142,7 +142,7 @@ public sealed class ChannelArgs : Pulumi.ResourceArgs
/// The set of properties specific to bot channel resource
/// </summary>
[Input("properties")]
public InputUnion<Inputs.DirectLineChannelArgs, InputUnion<Inputs.EmailChannelArgs, InputUnion<Inputs.FacebookChannelArgs, InputUnion<Inputs.KikChannelArgs, InputUnion<Inputs.MsTeamsChannelArgs, InputUnion<Inputs.SkypeChannelArgs, InputUnion<Inputs.SlackChannelArgs, InputUnion<Inputs.SmsChannelArgs, InputUnion<Inputs.TelegramChannelArgs, Inputs.WebChatChannelArgs>>>>>>>>>? Properties { get; set; }
public Input<object>? Properties { get; set; }

/// <summary>
/// The name of the Bot resource group in the user subscription.
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/BotService/V20171201/GetChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public sealed class GetChannelResult
/// <summary>
/// The set of properties specific to bot channel resource
/// </summary>
public readonly Union<Outputs.DirectLineChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>> Properties;
public readonly object Properties;
/// <summary>
/// Gets or sets the SKU of the resource.
/// </summary>
Expand All @@ -94,7 +94,7 @@ private GetChannelResult(

string name,

Union<Outputs.DirectLineChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>> properties,
object properties,

Outputs.SkuResponse? sku,

Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/BotService/V20171201/ListChannelWithKeys.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public sealed class ListChannelWithKeysResult
/// <summary>
/// The set of properties specific to bot channel resource
/// </summary>
public readonly Union<Outputs.DirectLineChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>> Properties;
public readonly object Properties;
/// <summary>
/// Gets or sets the SKU of the resource.
/// </summary>
Expand All @@ -94,7 +94,7 @@ private ListChannelWithKeysResult(

string name,

Union<Outputs.DirectLineChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>> properties,
object properties,

Outputs.SkuResponse? sku,

Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/BotService/V20180712/Channel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public partial class Channel : Pulumi.CustomResource
/// The set of properties specific to bot channel resource
/// </summary>
[Output("properties")]
public Output<Union<Outputs.DirectLineChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>>> Properties { get; private set; } = null!;
public Output<object> Properties { get; private set; } = null!;

/// <summary>
/// Gets or sets the SKU of the resource.
Expand Down Expand Up @@ -142,7 +142,7 @@ public sealed class ChannelArgs : Pulumi.ResourceArgs
/// The set of properties specific to bot channel resource
/// </summary>
[Input("properties")]
public InputUnion<Inputs.DirectLineChannelArgs, InputUnion<Inputs.EmailChannelArgs, InputUnion<Inputs.FacebookChannelArgs, InputUnion<Inputs.KikChannelArgs, InputUnion<Inputs.MsTeamsChannelArgs, InputUnion<Inputs.SkypeChannelArgs, InputUnion<Inputs.SlackChannelArgs, InputUnion<Inputs.SmsChannelArgs, InputUnion<Inputs.TelegramChannelArgs, Inputs.WebChatChannelArgs>>>>>>>>>? Properties { get; set; }
public Input<object>? Properties { get; set; }

/// <summary>
/// The name of the Bot resource group in the user subscription.
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/BotService/V20180712/GetChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public sealed class GetChannelResult
/// <summary>
/// The set of properties specific to bot channel resource
/// </summary>
public readonly Union<Outputs.DirectLineChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>> Properties;
public readonly object Properties;
/// <summary>
/// Gets or sets the SKU of the resource.
/// </summary>
Expand All @@ -94,7 +94,7 @@ private GetChannelResult(

string name,

Union<Outputs.DirectLineChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>> properties,
object properties,

Outputs.SkuResponse? sku,

Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/BotService/V20180712/ListChannelWithKeys.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public sealed class ListChannelWithKeysResult
/// <summary>
/// The set of properties specific to bot channel resource
/// </summary>
public readonly Union<Outputs.DirectLineChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>> Properties;
public readonly object Properties;
/// <summary>
/// Gets or sets the SKU of the resource.
/// </summary>
Expand All @@ -94,7 +94,7 @@ private ListChannelWithKeysResult(

string name,

Union<Outputs.DirectLineChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>> properties,
object properties,

Outputs.SkuResponse? sku,

Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/BotService/V20200602/Channel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public partial class Channel : Pulumi.CustomResource
/// The set of properties specific to bot channel resource
/// </summary>
[Output("properties")]
public Output<Union<Outputs.AlexaChannelResponse, Union<Outputs.DirectLineChannelResponse, Union<Outputs.DirectLineSpeechChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.LineChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>>>>>> Properties { get; private set; } = null!;
public Output<object> Properties { get; private set; } = null!;

/// <summary>
/// Gets or sets the SKU of the resource.
Expand Down Expand Up @@ -142,7 +142,7 @@ public sealed class ChannelArgs : Pulumi.ResourceArgs
/// The set of properties specific to bot channel resource
/// </summary>
[Input("properties")]
public InputUnion<Inputs.AlexaChannelArgs, InputUnion<Inputs.DirectLineChannelArgs, InputUnion<Inputs.DirectLineSpeechChannelArgs, InputUnion<Inputs.EmailChannelArgs, InputUnion<Inputs.FacebookChannelArgs, InputUnion<Inputs.KikChannelArgs, InputUnion<Inputs.LineChannelArgs, InputUnion<Inputs.MsTeamsChannelArgs, InputUnion<Inputs.SkypeChannelArgs, InputUnion<Inputs.SlackChannelArgs, InputUnion<Inputs.SmsChannelArgs, InputUnion<Inputs.TelegramChannelArgs, Inputs.WebChatChannelArgs>>>>>>>>>>>>? Properties { get; set; }
public Input<object>? Properties { get; set; }

/// <summary>
/// The name of the Bot resource group in the user subscription.
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/BotService/V20200602/GetChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public sealed class GetChannelResult
/// <summary>
/// The set of properties specific to bot channel resource
/// </summary>
public readonly Union<Outputs.AlexaChannelResponse, Union<Outputs.DirectLineChannelResponse, Union<Outputs.DirectLineSpeechChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.LineChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>>>>> Properties;
public readonly object Properties;
/// <summary>
/// Gets or sets the SKU of the resource.
/// </summary>
Expand All @@ -94,7 +94,7 @@ private GetChannelResult(

string name,

Union<Outputs.AlexaChannelResponse, Union<Outputs.DirectLineChannelResponse, Union<Outputs.DirectLineSpeechChannelResponse, Union<Outputs.EmailChannelResponse, Union<Outputs.FacebookChannelResponse, Union<Outputs.KikChannelResponse, Union<Outputs.LineChannelResponse, Union<Outputs.MsTeamsChannelResponse, Union<Outputs.SkypeChannelResponse, Union<Outputs.SlackChannelResponse, Union<Outputs.SmsChannelResponse, Union<Outputs.TelegramChannelResponse, Outputs.WebChatChannelResponse>>>>>>>>>>>> properties,
object properties,

Outputs.SkuResponse? sku,

Expand Down
Loading

0 comments on commit 3094fab

Please sign in to comment.