Skip to content

Commit

Permalink
fix mermge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
guineveresaenger committed Nov 14, 2022
1 parent 489c77b commit 2898ead
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/dotnet/GetLogs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ public static class GetLogs
/// `docker.getLogs` provides logs from specific container
/// </summary>
public static Task<GetLogsResult> InvokeAsync(GetLogsArgs args, InvokeOptions? options = null)
=> Pulumi.Deployment.Instance.InvokeAsync<GetLogsResult>("docker:index/getLogs:getLogs", args ?? new GetLogsArgs(), options.WithDefaults());
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetLogsResult>("docker:index/getLogs:getLogs", args ?? new GetLogsArgs(), options.WithDefaults());

/// <summary>
/// `docker.getLogs` provides logs from specific container
/// </summary>
public static Output<GetLogsResult> Invoke(GetLogsInvokeArgs args, InvokeOptions? options = null)
=> Pulumi.Deployment.Instance.Invoke<GetLogsResult>("docker:index/getLogs:getLogs", args ?? new GetLogsInvokeArgs(), options.WithDefaults());
=> global::Pulumi.Deployment.Instance.Invoke<GetLogsResult>("docker:index/getLogs:getLogs", args ?? new GetLogsInvokeArgs(), options.WithDefaults());
}


Expand Down
6 changes: 6 additions & 0 deletions sdk/nodejs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ export type Container = import("./container").Container;
export const Container: typeof import("./container").Container = null as any;
utilities.lazyLoad(exports, ["Container"], () => require("./container"));

export { GetLogsArgs, GetLogsResult, GetLogsOutputArgs } from "./getLogs";
export const getLogs: typeof import("./getLogs").getLogs = null as any;
export const getLogsOutput: typeof import("./getLogs").getLogsOutput = null as any;
utilities.lazyLoad(exports, ["getLogs","getLogsOutput"], () => require("./getLogs"));

export { GetNetworkArgs, GetNetworkResult, GetNetworkOutputArgs } from "./getNetwork";
export const getNetwork: typeof import("./getNetwork").getNetwork = null as any;
export const getNetworkOutput: typeof import("./getNetwork").getNetworkOutput = null as any;
Expand Down Expand Up @@ -85,6 +90,7 @@ export type Volume = import("./volume").Volume;
export const Volume: typeof import("./volume").Volume = null as any;
utilities.lazyLoad(exports, ["Volume"], () => require("./volume"));


// Export sub-modules:
import * as config from "./config";
import * as types from "./types";
Expand Down

0 comments on commit 2898ead

Please sign in to comment.