Skip to content

Commit

Permalink
make build_sdks
Browse files Browse the repository at this point in the history
  • Loading branch information
pulumi-bot authored and guineveresaenger committed Sep 16, 2023
1 parent 99dd994 commit 9447bc7
Show file tree
Hide file tree
Showing 36 changed files with 448 additions and 114 deletions.
18 changes: 15 additions & 3 deletions sdk/dotnet/Conversation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@ namespace Pulumi.Slack
public partial class Conversation : global::Pulumi.CustomResource
{
/// <summary>
/// Either of none or archive
/// indicates whether the
/// conversation should be archived or left behind on destroy. Valid values are
/// `archive | none`. Note that when set to `none` the conversation will be left
/// as it is and as a result any subsequent runs of pulumi up with the same
/// name will fail.
/// </summary>
[Output("actionOnDestroy")]
public Output<string?> ActionOnDestroy { get; private set; } = null!;
Expand Down Expand Up @@ -262,7 +266,11 @@ public static Conversation Get(string name, Input<string> id, ConversationState?
public sealed class ConversationArgs : global::Pulumi.ResourceArgs
{
/// <summary>
/// Either of none or archive
/// indicates whether the
/// conversation should be archived or left behind on destroy. Valid values are
/// `archive | none`. Note that when set to `none` the conversation will be left
/// as it is and as a result any subsequent runs of pulumi up with the same
/// name will fail.
/// </summary>
[Input("actionOnDestroy")]
public Input<string>? ActionOnDestroy { get; set; }
Expand Down Expand Up @@ -330,7 +338,11 @@ public ConversationArgs()
public sealed class ConversationState : global::Pulumi.ResourceArgs
{
/// <summary>
/// Either of none or archive
/// indicates whether the
/// conversation should be archived or left behind on destroy. Valid values are
/// `archive | none`. Note that when set to `none` the conversation will be left
/// as it is and as a result any subsequent runs of pulumi up with the same
/// name will fail.
/// </summary>
[Input("actionOnDestroy")]
public Input<string>? ActionOnDestroy { get; set; }
Expand Down
6 changes: 6 additions & 0 deletions sdk/dotnet/GetConversation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ public sealed class GetConversationArgs : global::Pulumi.InvokeArgs

/// <summary>
/// The conversation is privileged between two or more members
///
/// Either `channel_id` or `name` must be provided. `is_private` only works in conjunction
/// with `name`.
/// </summary>
[Input("isPrivate")]
public bool? IsPrivate { get; set; }
Expand All @@ -147,6 +150,9 @@ public sealed class GetConversationInvokeArgs : global::Pulumi.InvokeArgs

/// <summary>
/// The conversation is privileged between two or more members
///
/// Either `channel_id` or `name` must be provided. `is_private` only works in conjunction
/// with `name`.
/// </summary>
[Input("isPrivate")]
public Input<bool>? IsPrivate { get; set; }
Expand Down
4 changes: 4 additions & 0 deletions sdk/dotnet/GetUser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ public sealed class GetUserArgs : global::Pulumi.InvokeArgs
{
/// <summary>
/// The email of the user
///
/// The data source expects exactly one of these fields, you can't set both.
/// </summary>
[Input("email")]
public string? Email { get; set; }
Expand All @@ -135,6 +137,8 @@ public sealed class GetUserInvokeArgs : global::Pulumi.InvokeArgs
{
/// <summary>
/// The email of the user
///
/// The data source expects exactly one of these fields, you can't set both.
/// </summary>
[Input("email")]
public Input<string>? Email { get; set; }
Expand Down
4 changes: 4 additions & 0 deletions sdk/dotnet/GetUsergroup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ public sealed class GetUsergroupArgs : global::Pulumi.InvokeArgs

/// <summary>
/// The id of the usergroup
///
/// The data source expects exactly one of these fields, you can't set both.
/// </summary>
[Input("usergroupId")]
public string? UsergroupId { get; set; }
Expand All @@ -137,6 +139,8 @@ public sealed class GetUsergroupInvokeArgs : global::Pulumi.InvokeArgs

/// <summary>
/// The id of the usergroup
///
/// The data source expects exactly one of these fields, you can't set both.
/// </summary>
[Input("usergroupId")]
public Input<string>? UsergroupId { get; set; }
Expand Down
1 change: 0 additions & 1 deletion sdk/dotnet/Pulumi.Slack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<UseSharedCompilation>false</UseSharedCompilation>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
3 changes: 3 additions & 0 deletions sdk/go/slack/config/config.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

75 changes: 69 additions & 6 deletions sdk/go/slack/conversation.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions sdk/go/slack/getConversation.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions sdk/go/slack/getUser.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9447bc7

Please sign in to comment.