-
Notifications
You must be signed in to change notification settings - Fork 0
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
WIP: Support namespaces #583
Conversation
This pull request is marked as WIP and cannot be merged. Please remove 'WIP' from the title to proceed. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #583 +/- ##
==========================================
+ Coverage 83.21% 83.72% +0.51%
==========================================
Files 31 35 +4
Lines 3794 3698 -96
==========================================
- Hits 3157 3096 -61
+ Misses 637 602 -35 ☔ View full report in Codecov by Sentry. |
let result = crate::bindings::pulumi::typesystem::deep_nested_module_some_function::invoke( | ||
); |
Check warning
Code scanning / clippy
this let-binding has unit value Warning
pub fn invoke( | ||
) -> SomeFunctionResult { | ||
|
||
let result = crate::bindings::pulumi::typesystem::deep_nested_module_some_function::invoke( |
Check warning
Code scanning / clippy
unused variable: result Warning
providers/pulumi_wasm_provider_typesystem_rust/src/resource/deep/nested/module/some_resource.rs
Fixed
Show fixed
Hide fixed
providers/pulumi_wasm_provider_typesystem_rust/src/resource/deep/nested/module/some_resource.rs
Fixed
Show fixed
Hide fixed
pulumi_wasm_generator_lib/src/output/rust/functions/source_code_function_code.rs
Fixed
Show fixed
Hide fixed
pulumi_wasm_generator_lib/src/output/rust/functions/source_code_function_code.rs
Fixed
Show fixed
Hide fixed
pulumi_wasm_generator_lib/src/output/rust/types/source_code_types_code.rs
Fixed
Show fixed
Hide fixed
pulumi_wasm_generator_lib/src/output/rust/types/source_code_types_code.rs
Fixed
Show fixed
Hide fixed
} | ||
|
||
#[derive(Serialize)] | ||
struct AliasType { |
Check warning
Code scanning / clippy
struct AliasType is never constructed Warning
let result = crate::bindings::pulumi::typesystem::deep_nested_module_some_resource::invoke( | ||
name, | ||
&crate::bindings::pulumi::typesystem::deep_nested_module_some_resource::Args { | ||
string_input: &args.string_input.get_inner(), | ||
} | ||
); |
Check warning
Code scanning / clippy
this let-binding has unit value Warning
args: SomeResourceArgs | ||
) -> SomeResourceResult { | ||
|
||
let result = crate::bindings::pulumi::typesystem::deep_nested_module_some_resource::invoke( |
Check warning
Code scanning / clippy
unused variable: result Warning
let result = crate::bindings::pulumi::typesystem::typesystem_server::invoke( | ||
name, | ||
&crate::bindings::pulumi::typesystem::typesystem_server::Args { | ||
optional_string_array: &args.optional_string_array.get_inner(), | ||
optional_string_input: &args.optional_string_input.get_inner(), | ||
optional_union: &args.optional_union.get_inner(), | ||
properties_collection: &args.properties_collection.get_inner(), | ||
required_string_array: &args.required_string_array.get_inner(), | ||
required_string_input: &args.required_string_input.get_inner(), | ||
required_union: &args.required_union.get_inner(), | ||
} | ||
); |
Check warning
Code scanning / clippy
this let-binding has unit value Warning
required_string_input: &args.required_string_input.get_inner(), | ||
required_union: &args.required_union.get_inner(), | ||
}); | ||
let result = crate::bindings::pulumi::typesystem::typesystem_server::invoke( |
Check warning
Code scanning / clippy
unused variable: result Warning
0bd3146
to
6869db9
Compare
Fixes #578