Skip to content

Commit

Permalink
build SDKs
Browse files Browse the repository at this point in the history
  • Loading branch information
kpitzen committed Mar 24, 2023
1 parent 17bbb36 commit a5edb50
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public sealed class ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmooth
public Input<Inputs.ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSettingsDestinationArgs> Destination { get; set; } = null!;

[Input("eventId")]
public Input<int>? EventId { get; set; }
public Input<string>? EventId { get; set; }

[Input("eventIdMode")]
public Input<string>? EventIdMode { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public sealed class ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmooth
public Input<Inputs.ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSettingsDestinationGetArgs> Destination { get; set; } = null!;

[Input("eventId")]
public Input<int>? EventId { get; set; }
public Input<string>? EventId { get; set; }

[Input("eventIdMode")]
public Input<string>? EventIdMode { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public sealed class ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmooth
/// A director and base filename where archive files should be written. See Destination for more details.
/// </summary>
public readonly Outputs.ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSettingsDestination Destination;
public readonly int? EventId;
public readonly string? EventId;
public readonly string? EventIdMode;
public readonly string? EventStopBehavior;
public readonly int? FilecacheDuration;
Expand Down Expand Up @@ -63,7 +63,7 @@ private ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSetting

Outputs.ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSettingsDestination destination,

int? eventId,
string? eventId,

string? eventIdMode,

Expand Down
16 changes: 8 additions & 8 deletions sdk/go/aws/medialive/pulumiTypes.go

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

Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
* .assumeRolePolicy(authenticatedPolicyDocument.applyValue(getPolicyDocumentResult -&gt; getPolicyDocumentResult).applyValue(authenticatedPolicyDocument -&gt; authenticatedPolicyDocument.applyValue(getPolicyDocumentResult -&gt; getPolicyDocumentResult.json())))
* .build());
*
* final var authenticatedRolePolicyPolicyDocument = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
* final var authenticatedRolePolicy = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
* .effect(&#34;Allow&#34;)
* .actions(
* &#34;mobileanalytics:PutEvents&#34;,
Expand All @@ -93,9 +93,9 @@
* .resources(&#34;*&#34;)
* .build());
*
* var authenticatedRolePolicy = new RolePolicy(&#34;authenticatedRolePolicy&#34;, RolePolicyArgs.builder()
* var authenticatedIam_rolePolicyRolePolicy = new RolePolicy(&#34;authenticatedIam/rolePolicyRolePolicy&#34;, RolePolicyArgs.builder()
* .role(authenticatedRole.id())
* .policy(authenticatedRolePolicyPolicyDocument.applyValue(getPolicyDocumentResult -&gt; getPolicyDocumentResult.json()))
* .policy(authenticatedRolePolicy.applyValue(getPolicyDocumentResult -&gt; getPolicyDocumentResult.json()))
* .build());
*
* var mainIdentityPoolRoleAttachment = new IdentityPoolRoleAttachment(&#34;mainIdentityPoolRoleAttachment&#34;, IdentityPoolRoleAttachmentArgs.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ public Output<ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupS
}

@Import(name="eventId")
private @Nullable Output<Integer> eventId;
private @Nullable Output<String> eventId;

public Optional<Output<Integer>> eventId() {
public Optional<Output<String>> eventId() {
return Optional.ofNullable(this.eventId);
}

Expand Down Expand Up @@ -321,12 +321,12 @@ public Builder destination(ChannelEncoderSettingsOutputGroupOutputGroupSettingsM
return destination(Output.of(destination));
}

public Builder eventId(@Nullable Output<Integer> eventId) {
public Builder eventId(@Nullable Output<String> eventId) {
$.eventId = eventId;
return this;
}

public Builder eventId(Integer eventId) {
public Builder eventId(String eventId) {
return eventId(Output.of(eventId));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public final class ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothG
*
*/
private ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSettingsDestination destination;
private @Nullable Integer eventId;
private @Nullable String eventId;
private @Nullable String eventIdMode;
private @Nullable String eventStopBehavior;
private @Nullable Integer filecacheDuration;
Expand Down Expand Up @@ -85,7 +85,7 @@ public Optional<Integer> connectionRetryInterval() {
public ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSettingsDestination destination() {
return this.destination;
}
public Optional<Integer> eventId() {
public Optional<String> eventId() {
return Optional.ofNullable(this.eventId);
}
public Optional<String> eventIdMode() {
Expand Down Expand Up @@ -154,7 +154,7 @@ public static final class Builder {
private @Nullable String certificateMode;
private @Nullable Integer connectionRetryInterval;
private ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSettingsDestination destination;
private @Nullable Integer eventId;
private @Nullable String eventId;
private @Nullable String eventIdMode;
private @Nullable String eventStopBehavior;
private @Nullable Integer filecacheDuration;
Expand Down Expand Up @@ -218,7 +218,7 @@ public Builder destination(ChannelEncoderSettingsOutputGroupOutputGroupSettingsM
return this;
}
@CustomType.Setter
public Builder eventId(@Nullable Integer eventId) {
public Builder eventId(@Nullable String eventId) {
this.eventId = eventId;
return this;
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/types/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34111,7 +34111,7 @@ export namespace medialive {
* A director and base filename where archive files should be written. See Destination for more details.
*/
destination: pulumi.Input<inputs.medialive.ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSettingsDestination>;
eventId?: pulumi.Input<number>;
eventId?: pulumi.Input<string>;
eventIdMode?: pulumi.Input<string>;
eventStopBehavior?: pulumi.Input<string>;
filecacheDuration?: pulumi.Input<number>;
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/types/output.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37858,7 +37858,7 @@ export namespace medialive {
* A director and base filename where archive files should be written. See Destination for more details.
*/
destination: outputs.medialive.ChannelEncoderSettingsOutputGroupOutputGroupSettingsMsSmoothGroupSettingsDestination;
eventId: number;
eventId: string;
eventIdMode: string;
eventStopBehavior: string;
filecacheDuration?: number;
Expand Down
6 changes: 3 additions & 3 deletions sdk/python/pulumi_aws/medialive/_inputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3539,7 +3539,7 @@ def __init__(__self__, *,
audio_only_timecode_control: Optional[pulumi.Input[str]] = None,
certificate_mode: Optional[pulumi.Input[str]] = None,
connection_retry_interval: Optional[pulumi.Input[int]] = None,
event_id: Optional[pulumi.Input[int]] = None,
event_id: Optional[pulumi.Input[str]] = None,
event_id_mode: Optional[pulumi.Input[str]] = None,
event_stop_behavior: Optional[pulumi.Input[str]] = None,
filecache_duration: Optional[pulumi.Input[int]] = None,
Expand Down Expand Up @@ -3655,11 +3655,11 @@ def connection_retry_interval(self, value: Optional[pulumi.Input[int]]):

@property
@pulumi.getter(name="eventId")
def event_id(self) -> Optional[pulumi.Input[int]]:
def event_id(self) -> Optional[pulumi.Input[str]]:
return pulumi.get(self, "event_id")

@event_id.setter
def event_id(self, value: Optional[pulumi.Input[int]]):
def event_id(self, value: Optional[pulumi.Input[str]]):
pulumi.set(self, "event_id", value)

@property
Expand Down
4 changes: 2 additions & 2 deletions sdk/python/pulumi_aws/medialive/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3796,7 +3796,7 @@ def __init__(__self__, *,
audio_only_timecode_control: Optional[str] = None,
certificate_mode: Optional[str] = None,
connection_retry_interval: Optional[int] = None,
event_id: Optional[int] = None,
event_id: Optional[str] = None,
event_id_mode: Optional[str] = None,
event_stop_behavior: Optional[str] = None,
filecache_duration: Optional[int] = None,
Expand Down Expand Up @@ -3892,7 +3892,7 @@ def connection_retry_interval(self) -> Optional[int]:

@property
@pulumi.getter(name="eventId")
def event_id(self) -> Optional[int]:
def event_id(self) -> Optional[str]:
return pulumi.get(self, "event_id")

@property
Expand Down

0 comments on commit a5edb50

Please sign in to comment.