Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update generated SDKs #368

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
**Api changes**

<details>
<summary>Added Property(s)</summary>

- added property `source` to type `EventBridgeDestination`
</details>


<details>
<summary>Added Method(s)</summary>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ public partial class EventBridgeDestination : IEventBridgeDestination
public string Region { get; set; }

public string AccountId { get; set; }

public string Source { get; set; }
public EventBridgeDestination()
{
this.Type = "EventBridge";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@ public partial interface IEventBridgeDestination : IDestination

string AccountId { get; set; }

string Source { get; set; }

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ public IComparisonPredicateBuilder<EventBridgeDestinationQueryBuilderDsl, string
p => new CombinationQueryPredicate<EventBridgeDestinationQueryBuilderDsl>(p, EventBridgeDestinationQueryBuilderDsl.Of),
PredicateFormatter.Format);
}
public IComparisonPredicateBuilder<EventBridgeDestinationQueryBuilderDsl, string> Source()
{
return new ComparisonPredicateBuilder<EventBridgeDestinationQueryBuilderDsl, string>(BinaryQueryPredicate.Of().Left(new ConstantQueryPredicate("source")),
p => new CombinationQueryPredicate<EventBridgeDestinationQueryBuilderDsl>(p, EventBridgeDestinationQueryBuilderDsl.Of),
PredicateFormatter.Format);
}

}
}
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -289,3 +289,4 @@ e985f4b7aa55610705ee49bd3eb645c2fd03eb6c
7b61d389a7b8bd5dac2d780c6b6fbea0b881400c
c27603f949e869148570ebb8bd3ec6db34a985b7
82bca33a98d14907ea79e2cca281625dd82cdf0d
c8c2455221baca20421082b7715eaa0a712af7f1
Loading