From fa30cac7a05c771156d4bd487c331f86791730a0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 21:43:53 +0000 Subject: [PATCH 1/5] chore(deps): update dependency cargo-component to 0.16.0 --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index afe166ce..638defb4 100644 --- a/justfile +++ b/justfile @@ -2,7 +2,7 @@ set windows-shell := ["pwsh.exe", "-c"] # renovate: datasource=crate depName=cargo-nextest packageName=cargo-nextest NEXTEST_VERSION := "0.9.72" # renovate: datasource=crate depName=cargo-component packageName=cargo-component -CARGO_COMPONENT_VERSION := "0.15.0" +CARGO_COMPONENT_VERSION := "0.16.0" # renovate: datasource=crate depName=sd packageName=sd SD_VERSION := "1.0.0" From 2bba410387c7a87b8765499318db3eeae8aba162 Mon Sep 17 00:00:00 2001 From: Andrzej Ressel Date: Fri, 6 Sep 2024 22:54:09 +0200 Subject: [PATCH 2/5] Update --- .../src/bindings.rs | 9770 ++++++++++------- .../src/bindings.rs | 1307 ++- .../src/bindings.rs | 743 +- pulumi_wasm/src/bindings.rs | 445 +- 4 files changed, 7460 insertions(+), 4805 deletions(-) diff --git a/providers/pulumi_wasm_provider_cloudflare/src/bindings.rs b/providers/pulumi_wasm_provider_cloudflare/src/bindings.rs index 5888485e..9962ef72 100644 --- a/providers/pulumi_wasm_provider_cloudflare/src/bindings.rs +++ b/providers/pulumi_wasm_provider_cloudflare/src/bindings.rs @@ -1,5 +1,3 @@ -// Generated by `wit-bindgen` 0.25.0. DO NOT EDIT! -// Options used: #[allow(dead_code)] pub mod component { #[allow(dead_code)] @@ -8,17 +6,13 @@ pub mod component { pub mod output_interface { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; - #[derive(Debug)] #[repr(transparent)] pub struct Output { handle: _rt::Resource, } - impl Output { #[doc(hidden)] pub unsafe fn from_handle(handle: u32) -> Self { @@ -26,24 +20,20 @@ pub mod component { handle: _rt::Resource::from_handle(handle), } } - #[doc(hidden)] pub fn take_handle(&self) -> u32 { _rt::Resource::take_handle(&self.handle) } - #[doc(hidden)] pub fn handle(&self) -> u32 { _rt::Resource::handle(&self.handle) } } - unsafe impl _rt::WasmResource for Output { #[inline] unsafe fn drop(_handle: u32) { #[cfg(not(target_arch = "wasm32"))] unreachable!(); - #[cfg(target_arch = "wasm32")] { #[link( @@ -53,12 +43,10 @@ pub mod component { #[link_name = "[resource-drop]output"] fn drop(_: u32); } - drop(_handle); } } } - impl Output { #[allow(unused_unsafe, clippy::all)] pub fn new(value: &str) -> Self { @@ -66,7 +54,6 @@ pub mod component { let vec0 = value; let ptr0 = vec0.as_ptr().cast::(); let len0 = vec0.len(); - #[cfg(target_arch = "wasm32")] #[link( wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" @@ -75,7 +62,6 @@ pub mod component { #[link_name = "[constructor]output"] fn wit_import(_: *mut u8, _: usize) -> i32; } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: *mut u8, _: usize) -> i32 { unreachable!() @@ -92,7 +78,6 @@ pub mod component { let vec0 = function_name; let ptr0 = vec0.as_ptr().cast::(); let len0 = vec0.len(); - #[cfg(target_arch = "wasm32")] #[link( wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" @@ -101,12 +86,15 @@ pub mod component { #[link_name = "[method]output.map"] fn wit_import(_: i32, _: *mut u8, _: usize) -> i32; } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: i32, _: *mut u8, _: usize) -> i32 { unreachable!() } - let ret = wit_import((self).handle() as i32, ptr0.cast_mut(), len0); + let ret = wit_import( + (self).handle() as i32, + ptr0.cast_mut(), + len0, + ); Output::from_handle(ret as u32) } } @@ -116,7 +104,10 @@ pub mod component { unsafe { let vec0 = outputs; let len0 = vec0.len(); - let layout0 = _rt::alloc::Layout::from_size_align_unchecked(vec0.len() * 4, 4); + let layout0 = _rt::alloc::Layout::from_size_align_unchecked( + vec0.len() * 4, + 4, + ); let result0 = if layout0.size() != 0 { let ptr = _rt::alloc::alloc(layout0).cast::(); if ptr.is_null() { @@ -124,9 +115,7 @@ pub mod component { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec0.into_iter().enumerate() { let base = result0.add(i * 4); @@ -134,14 +123,14 @@ pub mod component { *base.add(0).cast::() = (e).handle() as i32; } } - #[cfg(target_arch = "wasm32")] - #[link(wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV")] + #[link( + wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" + )] extern "C" { #[link_name = "combine"] fn wit_import(_: *mut u8, _: usize) -> i32; } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: *mut u8, _: usize) -> i32 { unreachable!() @@ -154,14 +143,11 @@ pub mod component { } } } - #[allow(dead_code, clippy::all)] pub mod register_interface { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; pub type Output = super::super::super::component::pulumi_wasm::output_interface::Output; pub struct ObjectField<'a> { @@ -169,7 +155,10 @@ pub mod component { pub value: &'a Output, } impl<'a> ::core::fmt::Debug for ObjectField<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("ObjectField") .field("name", &self.name) .field("value", &self.value) @@ -181,10 +170,11 @@ pub mod component { pub name: _rt::String, } impl ::core::fmt::Debug for ResultField { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { - f.debug_struct("ResultField") - .field("name", &self.name) - .finish() + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { + f.debug_struct("ResultField").field("name", &self.name).finish() } } pub struct RegisterResourceResultField { @@ -192,7 +182,10 @@ pub mod component { pub output: Output, } impl ::core::fmt::Debug for RegisterResourceResultField { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResultField") .field("name", &self.name) .field("output", &self.output) @@ -206,7 +199,10 @@ pub mod component { pub results: _rt::Vec, } impl<'a> ::core::fmt::Debug for RegisterResourceRequest<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceRequest") .field("type", &self.type_) .field("name", &self.name) @@ -219,14 +215,19 @@ pub mod component { pub fields: _rt::Vec, } impl ::core::fmt::Debug for RegisterResourceResult { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResult") .field("fields", &self.fields) .finish() } } #[allow(unused_unsafe, clippy::all)] - pub fn register(request: &RegisterResourceRequest<'_>) -> RegisterResourceResult { + pub fn register( + request: &RegisterResourceRequest<'_>, + ) -> RegisterResourceResult { unsafe { #[repr(align(4))] struct RetArea([::core::mem::MaybeUninit; 8]); @@ -245,7 +246,10 @@ pub mod component { let len2 = vec2.len(); let vec5 = object0; let len5 = vec5.len(); - let layout5 = _rt::alloc::Layout::from_size_align_unchecked(vec5.len() * 12, 4); + let layout5 = _rt::alloc::Layout::from_size_align_unchecked( + vec5.len() * 12, + 4, + ); let result5 = if layout5.size() != 0 { let ptr = _rt::alloc::alloc(layout5).cast::(); if ptr.is_null() { @@ -253,17 +257,12 @@ pub mod component { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec5.into_iter().enumerate() { let base = result5.add(i * 12); { - let ObjectField { - name: name3, - value: value3, - } = e; + let ObjectField { name: name3, value: value3 } = e; let vec4 = name3; let ptr4 = vec4.as_ptr().cast::(); let len4 = vec4.len(); @@ -274,7 +273,10 @@ pub mod component { } let vec8 = results0; let len8 = vec8.len(); - let layout8 = _rt::alloc::Layout::from_size_align_unchecked(vec8.len() * 8, 4); + let layout8 = _rt::alloc::Layout::from_size_align_unchecked( + vec8.len() * 8, + 4, + ); let result8 = if layout8.size() != 0 { let ptr = _rt::alloc::alloc(layout8).cast::(); if ptr.is_null() { @@ -282,9 +284,7 @@ pub mod component { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec8.into_iter().enumerate() { let base = result8.add(i * 8); @@ -316,7 +316,6 @@ pub mod component { _: *mut u8, ); } - #[cfg(not(target_arch = "wasm32"))] fn wit_import( _: *mut u8, @@ -353,13 +352,18 @@ pub mod component { let l12 = *base.add(0).cast::<*mut u8>(); let l13 = *base.add(4).cast::(); let len14 = l13; - let bytes14 = _rt::Vec::from_raw_parts(l12.cast(), len14, len14); + let bytes14 = _rt::Vec::from_raw_parts( + l12.cast(), + len14, + len14, + ); let l15 = *base.add(8).cast::(); - - RegisterResourceResultField{ - name: _rt::string_lift(bytes14), - output: super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32), - } + RegisterResourceResultField { + name: _rt::string_lift(bytes14), + output: super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ), + } }; result16.push(e16); } @@ -370,7 +374,9 @@ pub mod component { if layout8.size() != 0 { _rt::alloc::dealloc(result8.cast(), layout8); } - RegisterResourceResult { fields: result16 } + RegisterResourceResult { + fields: result16, + } } } } @@ -386,12 +392,9 @@ pub mod exports { pub mod access_application { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allow_authenticate_via_warp: &'a Output, @@ -424,7 +427,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field( @@ -434,7 +440,10 @@ pub mod exports { .field("allowed-idps", &self.allowed_idps) .field("app-launcher-logo-url", &self.app_launcher_logo_url) .field("app-launcher-visible", &self.app_launcher_visible) - .field("auto-redirect-to-identity", &self.auto_redirect_to_identity) + .field( + "auto-redirect-to-identity", + &self.auto_redirect_to_identity, + ) .field("bg-color", &self.bg_color) .field("cors-headers", &self.cors_headers) .field("custom-deny-message", &self.custom_deny_message) @@ -461,7 +470,10 @@ pub mod exports { &self.same_site_cookie_attribute, ) .field("self-hosted-domains", &self.self_hosted_domains) - .field("service-auth401-redirect", &self.service_auth401_redirect) + .field( + "service-auth401-redirect", + &self.service_auth401_redirect, + ) .field("session-duration", &self.session_duration) .field("skip-interstitial", &self.skip_interstitial) .field("tags", &self.tags) @@ -503,7 +515,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field( @@ -514,7 +529,10 @@ pub mod exports { .field("app-launcher-logo-url", &self.app_launcher_logo_url) .field("app-launcher-visible", &self.app_launcher_visible) .field("aud", &self.aud) - .field("auto-redirect-to-identity", &self.auto_redirect_to_identity) + .field( + "auto-redirect-to-identity", + &self.auto_redirect_to_identity, + ) .field("bg-color", &self.bg_color) .field("cors-headers", &self.cors_headers) .field("custom-deny-message", &self.custom_deny_message) @@ -541,7 +559,10 @@ pub mod exports { &self.same_site_cookie_attribute, ) .field("self-hosted-domains", &self.self_hosted_domains) - .field("service-auth401-redirect", &self.service_auth401_redirect) + .field( + "service-auth401-redirect", + &self.service_auth401_redirect, + ) .field("session-duration", &self.session_duration) .field("skip-interstitial", &self.skip_interstitial) .field("tags", &self.tags) @@ -553,8 +574,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -621,119 +641,177 @@ pub mod exports { _rt::string_lift(bytes2), Args { account_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, allow_authenticate_via_warp: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, allowed_idps: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, app_launcher_logo_url: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, app_launcher_visible: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, auto_redirect_to_identity: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, bg_color: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, cors_headers: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, custom_deny_message: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, custom_deny_url: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, custom_non_identity_deny_url: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, custom_pages: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, domain: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, enable_binding_cookie: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, footer_links: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, header_bg_color: { - handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l33 as u32); + handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l33 as u32, + ); &handle34 }, http_only_cookie_attribute: { - handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l35 as u32); + handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l35 as u32, + ); &handle36 }, landing_page_design: { - handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l37 as u32); + handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l37 as u32, + ); &handle38 }, logo_url: { - handle40 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l39 as u32); + handle40 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l39 as u32, + ); &handle40 }, name: { - handle42 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l41 as u32); + handle42 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l41 as u32, + ); &handle42 }, saas_app: { - handle44 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l43 as u32); + handle44 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l43 as u32, + ); &handle44 }, same_site_cookie_attribute: { - handle46 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l45 as u32); + handle46 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l45 as u32, + ); &handle46 }, self_hosted_domains: { - handle48 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l47 as u32); + handle48 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l47 as u32, + ); &handle48 }, service_auth401_redirect: { - handle50 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l49 as u32); + handle50 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l49 as u32, + ); &handle50 }, session_duration: { - handle52 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l51 as u32); + handle52 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l51 as u32, + ); &handle52 }, skip_interstitial: { - handle54 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l53 as u32); + handle54 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l53 as u32, + ); &handle54 }, tags: { - handle56 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l55 as u32); + handle56 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l55 as u32, + ); &handle56 }, type_: { - handle58 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l57 as u32); + handle58 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l57 as u32, + ); &handle58 }, zone_id: { - handle60 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l59 as u32); + handle60 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l59 as u32, + ); &handle60 }, }, @@ -773,38 +851,48 @@ pub mod exports { zone_id: zone_id63, } = result61; *ptr62.add(0).cast::() = (account_id63).take_handle() as i32; - *ptr62.add(4).cast::() = - (allow_authenticate_via_warp63).take_handle() as i32; + *ptr62.add(4).cast::() = (allow_authenticate_via_warp63) + .take_handle() as i32; *ptr62.add(8).cast::() = (allowed_idps63).take_handle() as i32; - *ptr62.add(12).cast::() = (app_launcher_logo_url63).take_handle() as i32; - *ptr62.add(16).cast::() = (app_launcher_visible63).take_handle() as i32; + *ptr62.add(12).cast::() = (app_launcher_logo_url63) + .take_handle() as i32; + *ptr62.add(16).cast::() = (app_launcher_visible63).take_handle() + as i32; *ptr62.add(20).cast::() = (aud63).take_handle() as i32; - *ptr62.add(24).cast::() = - (auto_redirect_to_identity63).take_handle() as i32; + *ptr62.add(24).cast::() = (auto_redirect_to_identity63) + .take_handle() as i32; *ptr62.add(28).cast::() = (bg_color63).take_handle() as i32; *ptr62.add(32).cast::() = (cors_headers63).take_handle() as i32; - *ptr62.add(36).cast::() = (custom_deny_message63).take_handle() as i32; - *ptr62.add(40).cast::() = (custom_deny_url63).take_handle() as i32; - *ptr62.add(44).cast::() = - (custom_non_identity_deny_url63).take_handle() as i32; + *ptr62.add(36).cast::() = (custom_deny_message63).take_handle() + as i32; + *ptr62.add(40).cast::() = (custom_deny_url63).take_handle() + as i32; + *ptr62.add(44).cast::() = (custom_non_identity_deny_url63) + .take_handle() as i32; *ptr62.add(48).cast::() = (custom_pages63).take_handle() as i32; *ptr62.add(52).cast::() = (domain63).take_handle() as i32; - *ptr62.add(56).cast::() = (enable_binding_cookie63).take_handle() as i32; + *ptr62.add(56).cast::() = (enable_binding_cookie63) + .take_handle() as i32; *ptr62.add(60).cast::() = (footer_links63).take_handle() as i32; - *ptr62.add(64).cast::() = (header_bg_color63).take_handle() as i32; - *ptr62.add(68).cast::() = - (http_only_cookie_attribute63).take_handle() as i32; - *ptr62.add(72).cast::() = (landing_page_design63).take_handle() as i32; + *ptr62.add(64).cast::() = (header_bg_color63).take_handle() + as i32; + *ptr62.add(68).cast::() = (http_only_cookie_attribute63) + .take_handle() as i32; + *ptr62.add(72).cast::() = (landing_page_design63).take_handle() + as i32; *ptr62.add(76).cast::() = (logo_url63).take_handle() as i32; *ptr62.add(80).cast::() = (name63).take_handle() as i32; *ptr62.add(84).cast::() = (saas_app63).take_handle() as i32; - *ptr62.add(88).cast::() = - (same_site_cookie_attribute63).take_handle() as i32; - *ptr62.add(92).cast::() = (self_hosted_domains63).take_handle() as i32; - *ptr62.add(96).cast::() = - (service_auth401_redirect63).take_handle() as i32; - *ptr62.add(100).cast::() = (session_duration63).take_handle() as i32; - *ptr62.add(104).cast::() = (skip_interstitial63).take_handle() as i32; + *ptr62.add(88).cast::() = (same_site_cookie_attribute63) + .take_handle() as i32; + *ptr62.add(92).cast::() = (self_hosted_domains63).take_handle() + as i32; + *ptr62.add(96).cast::() = (service_auth401_redirect63) + .take_handle() as i32; + *ptr62.add(100).cast::() = (session_duration63).take_handle() + as i32; + *ptr62.add(104).cast::() = (skip_interstitial63).take_handle() + as i32; *ptr62.add(108).cast::() = (tags63).take_handle() as i32; *ptr62.add(112).cast::() = (type_63).take_handle() as i32; *ptr62.add(116).cast::() = (zone_id63).take_handle() as i32; @@ -814,41 +902,39 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_application_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-application@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); - } + macro_rules! __export_pulumi_cloudflare_access_application_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-application@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_application_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 120]); - static mut _RET_AREA: _RetArea = - _RetArea([::core::mem::MaybeUninit::uninit(); 120]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 120], + ); } - #[allow(dead_code, clippy::all)] pub mod access_ca_certificate { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub application_id: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("application-id", &self.application_id) @@ -864,7 +950,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("application-id", &self.application_id) @@ -883,8 +972,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -894,15 +982,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, application_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -926,33 +1020,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-ca-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); - } + macro_rules! __export_pulumi_cloudflare_access_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-ca-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod access_custom_page { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub app_count: &'a Output, @@ -962,7 +1054,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("app-count", &self.app_count) @@ -982,7 +1077,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("app-count", &self.app_count) @@ -1005,8 +1103,7 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1019,27 +1116,39 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, app_count: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, custom_html: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, type_: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, zone_id: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, }, @@ -1065,33 +1174,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_custom_page_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-custom-page@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - };); - } + macro_rules! __export_pulumi_cloudflare_access_custom_page_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-custom-page@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_custom_page_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod access_group { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub excludes: &'a Output, @@ -1101,7 +1209,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("excludes", &self.excludes) @@ -1121,7 +1232,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("excludes", &self.excludes) @@ -1144,8 +1258,7 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1158,27 +1271,39 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, excludes: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, includes: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, requires: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, zone_id: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, }, @@ -1204,33 +1329,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_group_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-group@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - };); -} + macro_rules! __export_pulumi_cloudflare_access_group_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-group@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_group_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod access_identity_provider { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub configs: &'a Output, @@ -1240,7 +1364,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("configs", &self.configs) @@ -1260,7 +1387,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("configs", &self.configs) @@ -1283,8 +1413,7 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1297,27 +1426,39 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, configs: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, scim_configs: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, type_: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, zone_id: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, }, @@ -1343,39 +1484,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_identity_provider_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-identity-provider@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - };); -} + macro_rules! __export_pulumi_cloudflare_access_identity_provider_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-identity-provider@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_identity_provider_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod access_keys_configuration { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub key_rotation_interval_days: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field( @@ -1390,7 +1533,10 @@ pub mod exports { pub key_rotation_interval_days: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field( @@ -1408,8 +1554,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -1418,11 +1563,15 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, key_rotation_interval_days: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, @@ -1433,40 +1582,38 @@ pub mod exports { key_rotation_interval_days: key_rotation_interval_days5, } = result3; *ptr4.add(0).cast::() = (account_id5).take_handle() as i32; - *ptr4.add(4).cast::() = (key_rotation_interval_days5).take_handle() as i32; + *ptr4.add(4).cast::() = (key_rotation_interval_days5) + .take_handle() as i32; ptr4 } pub trait Guest { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_keys_configuration_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-keys-configuration@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_access_keys_configuration_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-keys-configuration@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_keys_configuration_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod access_mutual_tls_certificate { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub associated_hostnames: &'a Output, @@ -1475,7 +1622,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("associated-hostnames", &self.associated_hostnames) @@ -1494,7 +1644,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("associated-hostnames", &self.associated_hostnames) @@ -1516,8 +1669,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1529,23 +1681,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, associated_hostnames: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, certificate: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, zone_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -1560,7 +1722,8 @@ pub mod exports { zone_id: zone_id8, } = result6; *ptr7.add(0).cast::() = (account_id8).take_handle() as i32; - *ptr7.add(4).cast::() = (associated_hostnames8).take_handle() as i32; + *ptr7.add(4).cast::() = (associated_hostnames8).take_handle() + as i32; *ptr7.add(8).cast::() = (certificate8).take_handle() as i32; *ptr7.add(12).cast::() = (fingerprint8).take_handle() as i32; *ptr7.add(16).cast::() = (name8).take_handle() as i32; @@ -1571,40 +1734,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_mutual_tls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-mutual-tls-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_access_mutual_tls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-mutual-tls-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_mutual_tls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod access_mutual_tls_hostname_settings { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub settings: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("settings", &self.settings) @@ -1618,7 +1782,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("settings", &self.settings) @@ -1635,8 +1802,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1646,15 +1812,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, settings: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -1674,33 +1846,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_mutual_tls_hostname_settings_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-mutual-tls-hostname-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_access_mutual_tls_hostname_settings_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-mutual-tls-hostname-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_mutual_tls_hostname_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod access_organization { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allow_authenticate_via_warp: &'a Output, @@ -1717,7 +1887,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field( @@ -1725,7 +1898,10 @@ pub mod exports { &self.allow_authenticate_via_warp, ) .field("auth-domain", &self.auth_domain) - .field("auto-redirect-to-identity", &self.auto_redirect_to_identity) + .field( + "auto-redirect-to-identity", + &self.auto_redirect_to_identity, + ) .field("custom-pages", &self.custom_pages) .field("is-ui-read-only", &self.is_ui_read_only) .field("login-designs", &self.login_designs) @@ -1763,7 +1939,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field( @@ -1771,7 +1950,10 @@ pub mod exports { &self.allow_authenticate_via_warp, ) .field("auth-domain", &self.auth_domain) - .field("auto-redirect-to-identity", &self.auto_redirect_to_identity) + .field( + "auto-redirect-to-identity", + &self.auto_redirect_to_identity, + ) .field("custom-pages", &self.custom_pages) .field("is-ui-read-only", &self.is_ui_read_only) .field("login-designs", &self.login_designs) @@ -1812,8 +1994,7 @@ pub mod exports { arg13: i32, arg14: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1833,55 +2014,81 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, allow_authenticate_via_warp: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, auth_domain: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, auto_redirect_to_identity: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, custom_pages: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, is_ui_read_only: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, login_designs: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, name: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, session_duration: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, ui_read_only_toggle_reason: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, user_seat_expiration_inactive_time: { - handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg12 as u32); + handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg12 as u32, + ); &handle11 }, warp_auth_session_duration: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg13 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg13 as u32, + ); &handle12 }, zone_id: { - handle13 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg14 as u32); + handle13 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg14 as u32, + ); &handle13 }, }, @@ -1903,22 +2110,25 @@ pub mod exports { zone_id: zone_id16, } = result14; *ptr15.add(0).cast::() = (account_id16).take_handle() as i32; - *ptr15.add(4).cast::() = - (allow_authenticate_via_warp16).take_handle() as i32; + *ptr15.add(4).cast::() = (allow_authenticate_via_warp16) + .take_handle() as i32; *ptr15.add(8).cast::() = (auth_domain16).take_handle() as i32; - *ptr15.add(12).cast::() = - (auto_redirect_to_identity16).take_handle() as i32; + *ptr15.add(12).cast::() = (auto_redirect_to_identity16) + .take_handle() as i32; *ptr15.add(16).cast::() = (custom_pages16).take_handle() as i32; - *ptr15.add(20).cast::() = (is_ui_read_only16).take_handle() as i32; - *ptr15.add(24).cast::() = (login_designs16).take_handle() as i32; + *ptr15.add(20).cast::() = (is_ui_read_only16).take_handle() + as i32; + *ptr15.add(24).cast::() = (login_designs16).take_handle() + as i32; *ptr15.add(28).cast::() = (name16).take_handle() as i32; - *ptr15.add(32).cast::() = (session_duration16).take_handle() as i32; - *ptr15.add(36).cast::() = - (ui_read_only_toggle_reason16).take_handle() as i32; - *ptr15.add(40).cast::() = - (user_seat_expiration_inactive_time16).take_handle() as i32; - *ptr15.add(44).cast::() = - (warp_auth_session_duration16).take_handle() as i32; + *ptr15.add(32).cast::() = (session_duration16).take_handle() + as i32; + *ptr15.add(36).cast::() = (ui_read_only_toggle_reason16) + .take_handle() as i32; + *ptr15.add(40).cast::() = (user_seat_expiration_inactive_time16) + .take_handle() as i32; + *ptr15.add(44).cast::() = (warp_auth_session_duration16) + .take_handle() as i32; *ptr15.add(48).cast::() = (zone_id16).take_handle() as i32; ptr15 } @@ -1926,33 +2136,34 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_organization_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-organization@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,arg12: i32,arg13: i32,arg14: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14) - } - };); -} + macro_rules! __export_pulumi_cloudflare_access_organization_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-organization@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32, arg12 : + i32, arg13 : i32, arg14 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, + arg12, arg13, arg14) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_organization_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 52]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 52]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 52], + ); } - #[allow(dead_code, clippy::all)] pub mod access_policy { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub application_id: &'a Output, @@ -1971,7 +2182,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("application-id", &self.application_id) @@ -2015,7 +2229,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("application-id", &self.application_id) @@ -2044,8 +2261,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -2084,63 +2300,93 @@ pub mod exports { _rt::string_lift(bytes2), Args { account_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, application_id: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, approval_groups: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, approval_required: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, decision: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, excludes: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, includes: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, isolation_required: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, name: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, precedence: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, purpose_justification_prompt: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, purpose_justification_required: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, requires: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, session_duration: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, zone_id: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, }, @@ -2165,21 +2411,26 @@ pub mod exports { zone_id: zone_id35, } = result33; *ptr34.add(0).cast::() = (account_id35).take_handle() as i32; - *ptr34.add(4).cast::() = (application_id35).take_handle() as i32; - *ptr34.add(8).cast::() = (approval_groups35).take_handle() as i32; - *ptr34.add(12).cast::() = (approval_required35).take_handle() as i32; + *ptr34.add(4).cast::() = (application_id35).take_handle() + as i32; + *ptr34.add(8).cast::() = (approval_groups35).take_handle() + as i32; + *ptr34.add(12).cast::() = (approval_required35).take_handle() + as i32; *ptr34.add(16).cast::() = (decision35).take_handle() as i32; *ptr34.add(20).cast::() = (excludes35).take_handle() as i32; *ptr34.add(24).cast::() = (includes35).take_handle() as i32; - *ptr34.add(28).cast::() = (isolation_required35).take_handle() as i32; + *ptr34.add(28).cast::() = (isolation_required35).take_handle() + as i32; *ptr34.add(32).cast::() = (name35).take_handle() as i32; *ptr34.add(36).cast::() = (precedence35).take_handle() as i32; - *ptr34.add(40).cast::() = - (purpose_justification_prompt35).take_handle() as i32; - *ptr34.add(44).cast::() = - (purpose_justification_required35).take_handle() as i32; + *ptr34.add(40).cast::() = (purpose_justification_prompt35) + .take_handle() as i32; + *ptr34.add(44).cast::() = (purpose_justification_required35) + .take_handle() as i32; *ptr34.add(48).cast::() = (requires35).take_handle() as i32; - *ptr34.add(52).cast::() = (session_duration35).take_handle() as i32; + *ptr34.add(52).cast::() = (session_duration35).take_handle() + as i32; *ptr34.add(56).cast::() = (zone_id35).take_handle() as i32; ptr34 } @@ -2187,33 +2438,29 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_policy_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-policy@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); -} + macro_rules! __export_pulumi_cloudflare_access_policy_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-policy@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_policy_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 60]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 60]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 60], + ); } - #[allow(dead_code, clippy::all)] pub mod access_rule { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub configuration: &'a Output, @@ -2222,7 +2469,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("configuration", &self.configuration) @@ -2240,7 +2490,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("configuration", &self.configuration) @@ -2261,8 +2514,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2274,23 +2526,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, configuration: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, mode: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, notes: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, zone_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -2314,33 +2576,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_rule_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_access_rule_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod access_service_token { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub duration: &'a Output, @@ -2349,7 +2609,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("duration", &self.duration) @@ -2370,7 +2633,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("client-id", &self.client_id) @@ -2394,8 +2660,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2407,23 +2672,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, duration: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, min_days_for_renewal: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, zone_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -2444,7 +2719,8 @@ pub mod exports { *ptr7.add(8).cast::() = (client_secret8).take_handle() as i32; *ptr7.add(12).cast::() = (duration8).take_handle() as i32; *ptr7.add(16).cast::() = (expires_at8).take_handle() as i32; - *ptr7.add(20).cast::() = (min_days_for_renewal8).take_handle() as i32; + *ptr7.add(20).cast::() = (min_days_for_renewal8).take_handle() + as i32; *ptr7.add(24).cast::() = (name8).take_handle() as i32; *ptr7.add(28).cast::() = (zone_id8).take_handle() as i32; ptr7 @@ -2453,33 +2729,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_service_token_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-service-token@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_access_service_token_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-service-token@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_service_token_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 32], + ); } - #[allow(dead_code, clippy::all)] pub mod access_tag { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub app_count: &'a Output, @@ -2487,7 +2761,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("app-count", &self.app_count) @@ -2503,7 +2780,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("app-count", &self.app_count) @@ -2522,8 +2802,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2534,19 +2813,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, app_count: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, zone_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -2568,40 +2855,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_access_tag_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/access-tag@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_access_tag_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/access-tag@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_access_tag_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod account { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub enforce_twofactor: &'a Output, pub name: &'a Output, pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("enforce-twofactor", &self.enforce_twofactor) .field("name", &self.name) @@ -2615,7 +2903,10 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("enforce-twofactor", &self.enforce_twofactor) .field("name", &self.name) @@ -2632,8 +2923,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2643,15 +2933,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { enforce_twofactor: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, name: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, type_: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -2662,7 +2958,8 @@ pub mod exports { name: name6, type_: type_6, } = result4; - *ptr5.add(0).cast::() = (enforce_twofactor6).take_handle() as i32; + *ptr5.add(0).cast::() = (enforce_twofactor6).take_handle() + as i32; *ptr5.add(4).cast::() = (name6).take_handle() as i32; *ptr5.add(8).cast::() = (type_6).take_handle() as i32; ptr5 @@ -2671,33 +2968,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_account_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/account@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_account_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/account@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_account_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod account_member { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub email_address: &'a Output, @@ -2705,7 +3000,10 @@ pub mod exports { pub status: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("email-address", &self.email_address) @@ -2721,7 +3019,10 @@ pub mod exports { pub status: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("email-address", &self.email_address) @@ -2740,8 +3041,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2752,19 +3052,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, email_address: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, role_ids: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, status: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -2786,33 +3094,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_account_member_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/account-member@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_account_member_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/account-member@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_account_member_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod address_map { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub default_sni: &'a Output, @@ -2822,7 +3128,10 @@ pub mod exports { pub memberships: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("default-sni", &self.default_sni) @@ -2844,7 +3153,10 @@ pub mod exports { pub memberships: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("can-delete", &self.can_delete) @@ -2869,8 +3181,7 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2883,27 +3194,39 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, default_sni: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, description: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, enabled: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, ips: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, memberships: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, }, @@ -2933,41 +3256,46 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_address_map_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/address-map@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - };); -} + macro_rules! __export_pulumi_cloudflare_address_map_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/address-map@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_address_map_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 32], + ); } - #[allow(dead_code, clippy::all)] pub mod api_shield { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub auth_id_characteristics: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") - .field("auth-id-characteristics", &self.auth_id_characteristics) + .field( + "auth-id-characteristics", + &self.auth_id_characteristics, + ) .field("zone-id", &self.zone_id) .finish() } @@ -2977,9 +3305,15 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") - .field("auth-id-characteristics", &self.auth_id_characteristics) + .field( + "auth-id-characteristics", + &self.auth_id_characteristics, + ) .field("zone-id", &self.zone_id) .finish() } @@ -2992,8 +3326,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -3002,11 +3335,15 @@ pub mod exports { _rt::string_lift(bytes0), Args { auth_id_characteristics: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, zone_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, @@ -3016,7 +3353,8 @@ pub mod exports { auth_id_characteristics: auth_id_characteristics5, zone_id: zone_id5, } = result3; - *ptr4.add(0).cast::() = (auth_id_characteristics5).take_handle() as i32; + *ptr4.add(0).cast::() = (auth_id_characteristics5).take_handle() + as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 } @@ -3024,33 +3362,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_api_shield_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/api-shield@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_api_shield_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/api-shield@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_api_shield_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod api_shield_operation { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub endpoint: &'a Output, pub host: &'a Output, @@ -3058,7 +3393,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("endpoint", &self.endpoint) .field("host", &self.host) @@ -3074,7 +3412,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("endpoint", &self.endpoint) .field("host", &self.host) @@ -3093,8 +3434,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3105,19 +3445,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { endpoint: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, host: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, method: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, zone_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -3139,40 +3487,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_api_shield_operation_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/api-shield-operation@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_api_shield_operation_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/api-shield-operation@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_api_shield_operation_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod api_shield_operation_schema_validation_settings { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub mitigation_action: &'a Output, pub operation_id: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("mitigation-action", &self.mitigation_action) .field("operation-id", &self.operation_id) @@ -3186,7 +3535,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("mitigation-action", &self.mitigation_action) .field("operation-id", &self.operation_id) @@ -3203,8 +3555,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3214,15 +3565,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { mitigation_action: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, operation_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -3233,7 +3590,8 @@ pub mod exports { operation_id: operation_id6, zone_id: zone_id6, } = result4; - *ptr5.add(0).cast::() = (mitigation_action6).take_handle() as i32; + *ptr5.add(0).cast::() = (mitigation_action6).take_handle() + as i32; *ptr5.add(4).cast::() = (operation_id6).take_handle() as i32; *ptr5.add(8).cast::() = (zone_id6).take_handle() as i32; ptr5 @@ -3242,33 +3600,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_api_shield_operation_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/api-shield-operation-schema-validation-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_api_shield_operation_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/api-shield-operation-schema-validation-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_api_shield_operation_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod api_shield_schema { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub kind: &'a Output, pub name: &'a Output, @@ -3277,7 +3633,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("kind", &self.kind) .field("name", &self.name) @@ -3295,7 +3654,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("kind", &self.kind) .field("name", &self.name) @@ -3316,8 +3678,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3329,23 +3690,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { kind: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, name: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, source: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, validation_enabled: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, zone_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -3361,7 +3732,8 @@ pub mod exports { *ptr7.add(0).cast::() = (kind8).take_handle() as i32; *ptr7.add(4).cast::() = (name8).take_handle() as i32; *ptr7.add(8).cast::() = (source8).take_handle() as i32; - *ptr7.add(12).cast::() = (validation_enabled8).take_handle() as i32; + *ptr7.add(12).cast::() = (validation_enabled8).take_handle() + as i32; *ptr7.add(16).cast::() = (zone_id8).take_handle() as i32; ptr7 } @@ -3369,40 +3741,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_api_shield_schema_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/api-shield-schema@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_api_shield_schema_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/api-shield-schema@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_api_shield_schema_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod api_shield_schema_validation_settings { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub validation_default_mitigation_action: &'a Output, pub validation_override_mitigation_action: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field( "validation-default-mitigation-action", @@ -3422,7 +3795,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field( "validation-default-mitigation-action", @@ -3445,8 +3821,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3456,15 +3831,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { validation_default_mitigation_action: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, validation_override_mitigation_action: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -3472,14 +3853,13 @@ pub mod exports { let ptr5 = _RET_AREA.0.as_mut_ptr().cast::(); let Res { validation_default_mitigation_action: validation_default_mitigation_action6, - validation_override_mitigation_action: - validation_override_mitigation_action6, + validation_override_mitigation_action: validation_override_mitigation_action6, zone_id: zone_id6, } = result4; - *ptr5.add(0).cast::() = - (validation_default_mitigation_action6).take_handle() as i32; - *ptr5.add(4).cast::() = - (validation_override_mitigation_action6).take_handle() as i32; + *ptr5.add(0).cast::() = (validation_default_mitigation_action6) + .take_handle() as i32; + *ptr5.add(4).cast::() = (validation_override_mitigation_action6) + .take_handle() as i32; *ptr5.add(8).cast::() = (zone_id6).take_handle() as i32; ptr5 } @@ -3487,33 +3867,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_api_shield_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/api-shield-schema-validation-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_api_shield_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/api-shield-schema-validation-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_api_shield_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod api_token { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub condition: &'a Output, pub expires_on: &'a Output, @@ -3522,7 +3900,10 @@ pub mod exports { pub policies: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("condition", &self.condition) .field("expires-on", &self.expires_on) @@ -3544,7 +3925,10 @@ pub mod exports { pub value: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("condition", &self.condition) .field("expires-on", &self.expires_on) @@ -3569,8 +3953,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3582,23 +3965,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { condition: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, expires_on: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, not_before: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, policies: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -3630,40 +4023,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_api_token_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/api-token@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_api_token_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/api-token@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_api_token_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 36], + ); } - #[allow(dead_code, clippy::all)] pub mod argo { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub smart_routing: &'a Output, pub tiered_caching: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("smart-routing", &self.smart_routing) .field("tiered-caching", &self.tiered_caching) @@ -3677,7 +4071,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("smart-routing", &self.smart_routing) .field("tiered-caching", &self.tiered_caching) @@ -3694,8 +4091,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3705,15 +4101,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { smart_routing: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, tiered_caching: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -3733,33 +4135,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_argo_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/argo@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_argo_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/argo@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_argo_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod authenticated_origin_pulls { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub authenticated_origin_pulls_certificate: &'a Output, pub enabled: &'a Output, @@ -3767,7 +4167,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field( "authenticated-origin-pulls-certificate", @@ -3786,7 +4189,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field( "authenticated-origin-pulls-certificate", @@ -3808,8 +4214,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3820,33 +4225,40 @@ pub mod exports { _rt::string_lift(bytes0), Args { authenticated_origin_pulls_certificate: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, enabled: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, hostname: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, zone_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, ); let ptr6 = _RET_AREA.0.as_mut_ptr().cast::(); let Res { - authenticated_origin_pulls_certificate: - authenticated_origin_pulls_certificate7, + authenticated_origin_pulls_certificate: authenticated_origin_pulls_certificate7, enabled: enabled7, hostname: hostname7, zone_id: zone_id7, } = result5; - *ptr6.add(0).cast::() = - (authenticated_origin_pulls_certificate7).take_handle() as i32; + *ptr6.add(0).cast::() = (authenticated_origin_pulls_certificate7) + .take_handle() as i32; *ptr6.add(4).cast::() = (enabled7).take_handle() as i32; *ptr6.add(8).cast::() = (hostname7).take_handle() as i32; *ptr6.add(12).cast::() = (zone_id7).take_handle() as i32; @@ -3856,33 +4268,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_authenticated_origin_pulls_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/authenticated-origin-pulls@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_authenticated_origin_pulls_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/authenticated-origin-pulls@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_authenticated_origin_pulls_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod authenticated_origin_pulls_certificate { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub certificate: &'a Output, pub private_key: &'a Output, @@ -3890,7 +4300,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("certificate", &self.certificate) .field("private-key", &self.private_key) @@ -3912,7 +4325,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("certificate", &self.certificate) .field("expires-on", &self.expires_on) @@ -3937,8 +4353,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3949,19 +4364,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { certificate: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, private_key: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, type_: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, zone_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -3995,33 +4418,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_authenticated_origin_pulls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/authenticated-origin-pulls-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_authenticated_origin_pulls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/authenticated-origin-pulls-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_authenticated_origin_pulls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 40]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 40]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 40], + ); } - #[allow(dead_code, clippy::all)] pub mod bot_management { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub auto_update_model: &'a Output, pub enable_js: &'a Output, @@ -4035,20 +4456,29 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("auto-update-model", &self.auto_update_model) .field("enable-js", &self.enable_js) .field("fight-mode", &self.fight_mode) .field("optimize-wordpress", &self.optimize_wordpress) - .field("sbfm-definitely-automated", &self.sbfm_definitely_automated) + .field( + "sbfm-definitely-automated", + &self.sbfm_definitely_automated, + ) .field("sbfm-likely-automated", &self.sbfm_likely_automated) .field( "sbfm-static-resource-protection", &self.sbfm_static_resource_protection, ) .field("sbfm-verified-bots", &self.sbfm_verified_bots) - .field("suppress-session-score", &self.suppress_session_score) + .field( + "suppress-session-score", + &self.suppress_session_score, + ) .field("zone-id", &self.zone_id) .finish() } @@ -4067,20 +4497,29 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("auto-update-model", &self.auto_update_model) .field("enable-js", &self.enable_js) .field("fight-mode", &self.fight_mode) .field("optimize-wordpress", &self.optimize_wordpress) - .field("sbfm-definitely-automated", &self.sbfm_definitely_automated) + .field( + "sbfm-definitely-automated", + &self.sbfm_definitely_automated, + ) .field("sbfm-likely-automated", &self.sbfm_likely_automated) .field( "sbfm-static-resource-protection", &self.sbfm_static_resource_protection, ) .field("sbfm-verified-bots", &self.sbfm_verified_bots) - .field("suppress-session-score", &self.suppress_session_score) + .field( + "suppress-session-score", + &self.suppress_session_score, + ) .field("using-latest-model", &self.using_latest_model) .field("zone-id", &self.zone_id) .finish() @@ -4102,8 +4541,7 @@ pub mod exports { arg10: i32, arg11: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4120,43 +4558,63 @@ pub mod exports { _rt::string_lift(bytes0), Args { auto_update_model: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, enable_js: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, fight_mode: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, optimize_wordpress: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, sbfm_definitely_automated: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, sbfm_likely_automated: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, sbfm_static_resource_protection: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, sbfm_verified_bots: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, suppress_session_score: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, zone_id: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, }, @@ -4175,18 +4633,24 @@ pub mod exports { using_latest_model: using_latest_model13, zone_id: zone_id13, } = result11; - *ptr12.add(0).cast::() = (auto_update_model13).take_handle() as i32; + *ptr12.add(0).cast::() = (auto_update_model13).take_handle() + as i32; *ptr12.add(4).cast::() = (enable_js13).take_handle() as i32; *ptr12.add(8).cast::() = (fight_mode13).take_handle() as i32; - *ptr12.add(12).cast::() = (optimize_wordpress13).take_handle() as i32; - *ptr12.add(16).cast::() = - (sbfm_definitely_automated13).take_handle() as i32; - *ptr12.add(20).cast::() = (sbfm_likely_automated13).take_handle() as i32; - *ptr12.add(24).cast::() = - (sbfm_static_resource_protection13).take_handle() as i32; - *ptr12.add(28).cast::() = (sbfm_verified_bots13).take_handle() as i32; - *ptr12.add(32).cast::() = (suppress_session_score13).take_handle() as i32; - *ptr12.add(36).cast::() = (using_latest_model13).take_handle() as i32; + *ptr12.add(12).cast::() = (optimize_wordpress13).take_handle() + as i32; + *ptr12.add(16).cast::() = (sbfm_definitely_automated13) + .take_handle() as i32; + *ptr12.add(20).cast::() = (sbfm_likely_automated13) + .take_handle() as i32; + *ptr12.add(24).cast::() = (sbfm_static_resource_protection13) + .take_handle() as i32; + *ptr12.add(28).cast::() = (sbfm_verified_bots13).take_handle() + as i32; + *ptr12.add(32).cast::() = (suppress_session_score13) + .take_handle() as i32; + *ptr12.add(36).cast::() = (using_latest_model13).take_handle() + as i32; *ptr12.add(40).cast::() = (zone_id13).take_handle() as i32; ptr12 } @@ -4194,33 +4658,33 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_bot_management_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/bot-management@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) - } - };); -} + macro_rules! __export_pulumi_cloudflare_bot_management_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/bot-management@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, + arg11) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_bot_management_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 44]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 44]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 44], + ); } - #[allow(dead_code, clippy::all)] pub mod byo_ip_prefix { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub advertisement: &'a Output, @@ -4228,7 +4692,10 @@ pub mod exports { pub prefix_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("advertisement", &self.advertisement) @@ -4244,7 +4711,10 @@ pub mod exports { pub prefix_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("advertisement", &self.advertisement) @@ -4263,8 +4733,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4275,19 +4744,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, advertisement: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, description: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, prefix_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -4309,33 +4786,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_byo_ip_prefix_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/byo-ip-prefix@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_byo_ip_prefix_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/byo-ip-prefix@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_byo_ip_prefix_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod certificate_pack { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub certificate_authority: &'a Output, pub cloudflare_branding: &'a Output, @@ -4349,7 +4824,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("certificate-authority", &self.certificate_authority) .field("cloudflare-branding", &self.cloudflare_branding) @@ -4359,7 +4837,10 @@ pub mod exports { .field("validation-method", &self.validation_method) .field("validation-records", &self.validation_records) .field("validity-days", &self.validity_days) - .field("wait-for-active-status", &self.wait_for_active_status) + .field( + "wait-for-active-status", + &self.wait_for_active_status, + ) .field("zone-id", &self.zone_id) .finish() } @@ -4377,7 +4858,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("certificate-authority", &self.certificate_authority) .field("cloudflare-branding", &self.cloudflare_branding) @@ -4387,7 +4871,10 @@ pub mod exports { .field("validation-method", &self.validation_method) .field("validation-records", &self.validation_records) .field("validity-days", &self.validity_days) - .field("wait-for-active-status", &self.wait_for_active_status) + .field( + "wait-for-active-status", + &self.wait_for_active_status, + ) .field("zone-id", &self.zone_id) .finish() } @@ -4408,8 +4895,7 @@ pub mod exports { arg10: i32, arg11: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4426,43 +4912,63 @@ pub mod exports { _rt::string_lift(bytes0), Args { certificate_authority: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, cloudflare_branding: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, hosts: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, type_: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, validation_errors: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, validation_method: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, validation_records: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, validity_days: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, wait_for_active_status: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, zone_id: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, }, @@ -4480,15 +4986,22 @@ pub mod exports { wait_for_active_status: wait_for_active_status13, zone_id: zone_id13, } = result11; - *ptr12.add(0).cast::() = (certificate_authority13).take_handle() as i32; - *ptr12.add(4).cast::() = (cloudflare_branding13).take_handle() as i32; + *ptr12.add(0).cast::() = (certificate_authority13).take_handle() + as i32; + *ptr12.add(4).cast::() = (cloudflare_branding13).take_handle() + as i32; *ptr12.add(8).cast::() = (hosts13).take_handle() as i32; *ptr12.add(12).cast::() = (type_13).take_handle() as i32; - *ptr12.add(16).cast::() = (validation_errors13).take_handle() as i32; - *ptr12.add(20).cast::() = (validation_method13).take_handle() as i32; - *ptr12.add(24).cast::() = (validation_records13).take_handle() as i32; - *ptr12.add(28).cast::() = (validity_days13).take_handle() as i32; - *ptr12.add(32).cast::() = (wait_for_active_status13).take_handle() as i32; + *ptr12.add(16).cast::() = (validation_errors13).take_handle() + as i32; + *ptr12.add(20).cast::() = (validation_method13).take_handle() + as i32; + *ptr12.add(24).cast::() = (validation_records13).take_handle() + as i32; + *ptr12.add(28).cast::() = (validity_days13).take_handle() + as i32; + *ptr12.add(32).cast::() = (wait_for_active_status13) + .take_handle() as i32; *ptr12.add(36).cast::() = (zone_id13).take_handle() as i32; ptr12 } @@ -4496,33 +5009,33 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_certificate_pack_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/certificate-pack@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) - } - };); -} + macro_rules! __export_pulumi_cloudflare_certificate_pack_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/certificate-pack@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, + arg11) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_certificate_pack_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 40]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 40]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 40], + ); } - #[allow(dead_code, clippy::all)] pub mod custom_hostname { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub custom_metadata: &'a Output, pub custom_origin_server: &'a Output, @@ -4533,7 +5046,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("custom-metadata", &self.custom_metadata) .field("custom-origin-server", &self.custom_origin_server) @@ -4561,13 +5077,19 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("custom-metadata", &self.custom_metadata) .field("custom-origin-server", &self.custom_origin_server) .field("custom-origin-sni", &self.custom_origin_sni) .field("hostname", &self.hostname) - .field("ownership-verification", &self.ownership_verification) + .field( + "ownership-verification", + &self.ownership_verification, + ) .field( "ownership-verification-http", &self.ownership_verification_http, @@ -4595,8 +5117,7 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4610,31 +5131,45 @@ pub mod exports { _rt::string_lift(bytes0), Args { custom_metadata: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, custom_origin_server: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, custom_origin_sni: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, hostname: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, ssls: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, wait_for_ssl_pending_validation: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, zone_id: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, }, @@ -4652,17 +5187,21 @@ pub mod exports { wait_for_ssl_pending_validation: wait_for_ssl_pending_validation10, zone_id: zone_id10, } = result8; - *ptr9.add(0).cast::() = (custom_metadata10).take_handle() as i32; - *ptr9.add(4).cast::() = (custom_origin_server10).take_handle() as i32; - *ptr9.add(8).cast::() = (custom_origin_sni10).take_handle() as i32; + *ptr9.add(0).cast::() = (custom_metadata10).take_handle() + as i32; + *ptr9.add(4).cast::() = (custom_origin_server10).take_handle() + as i32; + *ptr9.add(8).cast::() = (custom_origin_sni10).take_handle() + as i32; *ptr9.add(12).cast::() = (hostname10).take_handle() as i32; - *ptr9.add(16).cast::() = (ownership_verification10).take_handle() as i32; - *ptr9.add(20).cast::() = - (ownership_verification_http10).take_handle() as i32; + *ptr9.add(16).cast::() = (ownership_verification10) + .take_handle() as i32; + *ptr9.add(20).cast::() = (ownership_verification_http10) + .take_handle() as i32; *ptr9.add(24).cast::() = (ssls10).take_handle() as i32; *ptr9.add(28).cast::() = (status10).take_handle() as i32; - *ptr9.add(32).cast::() = - (wait_for_ssl_pending_validation10).take_handle() as i32; + *ptr9.add(32).cast::() = (wait_for_ssl_pending_validation10) + .take_handle() as i32; *ptr9.add(36).cast::() = (zone_id10).take_handle() as i32; ptr9 } @@ -4670,39 +5209,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_custom_hostname_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/custom-hostname@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) - } - };); -} + macro_rules! __export_pulumi_cloudflare_custom_hostname_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/custom-hostname@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_custom_hostname_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 40]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 40]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 40], + ); } - #[allow(dead_code, clippy::all)] pub mod custom_hostname_fallback_origin { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub origin: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("origin", &self.origin) .field("zone-id", &self.zone_id) @@ -4715,7 +5256,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("origin", &self.origin) .field("status", &self.status) @@ -4731,8 +5275,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -4741,21 +5284,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { origin: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, zone_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - origin: origin5, - status: status5, - zone_id: zone_id5, - } = result3; + let Res { origin: origin5, status: status5, zone_id: zone_id5 } = result3; *ptr4.add(0).cast::() = (origin5).take_handle() as i32; *ptr4.add(4).cast::() = (status5).take_handle() as i32; *ptr4.add(8).cast::() = (zone_id5).take_handle() as i32; @@ -4765,33 +5308,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_custom_hostname_fallback_origin_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/custom-hostname-fallback-origin@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_custom_hostname_fallback_origin_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/custom-hostname-fallback-origin@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_custom_hostname_fallback_origin_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod custom_pages { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub state: &'a Output, @@ -4800,7 +5340,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("state", &self.state) @@ -4818,7 +5361,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("state", &self.state) @@ -4839,8 +5385,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4852,23 +5397,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, state: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, type_: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, url: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, zone_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -4892,40 +5447,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_custom_pages_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/custom-pages@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_custom_pages_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/custom-pages@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_custom_pages_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod custom_ssl { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub custom_ssl_options: &'a Output, pub custom_ssl_priorities: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("custom-ssl-options", &self.custom_ssl_options) .field("custom-ssl-priorities", &self.custom_ssl_priorities) @@ -4947,7 +5503,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("custom-ssl-options", &self.custom_ssl_options) .field("custom-ssl-priorities", &self.custom_ssl_priorities) @@ -4972,8 +5531,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4983,15 +5541,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { custom_ssl_options: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, custom_ssl_priorities: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -5010,8 +5574,10 @@ pub mod exports { uploaded_on: uploaded_on6, zone_id: zone_id6, } = result4; - *ptr5.add(0).cast::() = (custom_ssl_options6).take_handle() as i32; - *ptr5.add(4).cast::() = (custom_ssl_priorities6).take_handle() as i32; + *ptr5.add(0).cast::() = (custom_ssl_options6).take_handle() + as i32; + *ptr5.add(4).cast::() = (custom_ssl_priorities6).take_handle() + as i32; *ptr5.add(8).cast::() = (expires_on6).take_handle() as i32; *ptr5.add(12).cast::() = (hosts6).take_handle() as i32; *ptr5.add(16).cast::() = (issuer6).take_handle() as i32; @@ -5027,39 +5593,40 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_custom_ssl_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/custom-ssl@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_custom_ssl_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/custom-ssl@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_custom_ssl_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 44]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 44]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 44], + ); } - #[allow(dead_code, clippy::all)] pub mod d1_database { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("name", &self.name) @@ -5072,7 +5639,10 @@ pub mod exports { pub version: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("name", &self.name) @@ -5088,8 +5658,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -5098,11 +5667,15 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, name: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, @@ -5122,33 +5695,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_d1_database_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/d1-database@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_d1_database_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/d1-database@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_d1_database_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod device_dex_test { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub data: &'a Output, @@ -5158,7 +5728,10 @@ pub mod exports { pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("data", &self.data) @@ -5180,7 +5753,10 @@ pub mod exports { pub updated: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("created", &self.created) @@ -5205,8 +5781,7 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -5219,27 +5794,39 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, data: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, description: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, enabled: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, interval: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, name: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, }, @@ -5269,33 +5856,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_device_dex_test_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/device-dex-test@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - };); -} + macro_rules! __export_pulumi_cloudflare_device_dex_test_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/device-dex-test@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_device_dex_test_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 32], + ); } - #[allow(dead_code, clippy::all)] pub mod device_managed_networks { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub config: &'a Output, @@ -5303,7 +5889,10 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("config", &self.config) @@ -5319,7 +5908,10 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("config", &self.config) @@ -5338,8 +5930,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -5350,19 +5941,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, config: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, type_: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -5384,39 +5983,40 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_device_managed_networks_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/device-managed-networks@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_device_managed_networks_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/device-managed-networks@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_device_managed_networks_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod device_policy_certificates { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub enabled: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -5428,7 +6028,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -5443,8 +6046,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -5453,20 +6055,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { enabled: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, zone_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - enabled: enabled5, - zone_id: zone_id5, - } = result3; + let Res { enabled: enabled5, zone_id: zone_id5 } = result3; *ptr4.add(0).cast::() = (enabled5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 @@ -5475,33 +6078,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_device_policy_certificates_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/device-policy-certificates@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_device_policy_certificates_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/device-policy-certificates@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_device_policy_certificates_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod device_posture_integration { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub configs: &'a Output, @@ -5511,7 +6111,10 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("configs", &self.configs) @@ -5531,7 +6134,10 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("configs", &self.configs) @@ -5554,8 +6160,7 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -5568,27 +6173,39 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, configs: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, identifier: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, interval: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, name: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, type_: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, }, @@ -5614,33 +6231,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_device_posture_integration_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/device-posture-integration@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - };); -} + macro_rules! __export_pulumi_cloudflare_device_posture_integration_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/device-posture-integration@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_device_posture_integration_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod device_posture_rule { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub description: &'a Output, @@ -5652,7 +6268,10 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("description", &self.description) @@ -5676,7 +6295,10 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("description", &self.description) @@ -5703,8 +6325,7 @@ pub mod exports { arg8: i32, arg9: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -5719,35 +6340,51 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, description: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, expiration: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, inputs: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, matches: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, name: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, schedule: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, type_: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, }, @@ -5777,33 +6414,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_device_posture_rule_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/device-posture-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) - } - };); -} + macro_rules! __export_pulumi_cloudflare_device_posture_rule_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/device-posture-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_device_posture_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 32], + ); } - #[allow(dead_code, clippy::all)] pub mod device_settings_policy { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allow_mode_switch: &'a Output, @@ -5825,7 +6461,10 @@ pub mod exports { pub switch_locked: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("allow-mode-switch", &self.allow_mode_switch) @@ -5869,7 +6508,10 @@ pub mod exports { pub switch_locked: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("allow-mode-switch", &self.allow_mode_switch) @@ -5895,8 +6537,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -5941,75 +6582,111 @@ pub mod exports { _rt::string_lift(bytes2), Args { account_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, allow_mode_switch: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, allow_updates: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, allowed_to_leave: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, auto_connect: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, captive_portal: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, default: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, description: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, disable_auto_fallback: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, enabled: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, exclude_office_ips: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, match_: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, name: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, precedence: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, service_mode_v2_mode: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, service_mode_v2_port: { - handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l33 as u32); + handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l33 as u32, + ); &handle34 }, support_url: { - handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l35 as u32); + handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l35 as u32, + ); &handle36 }, switch_locked: { - handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l37 as u32); + handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l37 as u32, + ); &handle38 }, }, @@ -6037,56 +6714,60 @@ pub mod exports { switch_locked: switch_locked41, } = result39; *ptr40.add(0).cast::() = (account_id41).take_handle() as i32; - *ptr40.add(4).cast::() = (allow_mode_switch41).take_handle() as i32; + *ptr40.add(4).cast::() = (allow_mode_switch41).take_handle() + as i32; *ptr40.add(8).cast::() = (allow_updates41).take_handle() as i32; - *ptr40.add(12).cast::() = (allowed_to_leave41).take_handle() as i32; + *ptr40.add(12).cast::() = (allowed_to_leave41).take_handle() + as i32; *ptr40.add(16).cast::() = (auto_connect41).take_handle() as i32; - *ptr40.add(20).cast::() = (captive_portal41).take_handle() as i32; + *ptr40.add(20).cast::() = (captive_portal41).take_handle() + as i32; *ptr40.add(24).cast::() = (default41).take_handle() as i32; *ptr40.add(28).cast::() = (description41).take_handle() as i32; - *ptr40.add(32).cast::() = (disable_auto_fallback41).take_handle() as i32; + *ptr40.add(32).cast::() = (disable_auto_fallback41) + .take_handle() as i32; *ptr40.add(36).cast::() = (enabled41).take_handle() as i32; - *ptr40.add(40).cast::() = (exclude_office_ips41).take_handle() as i32; + *ptr40.add(40).cast::() = (exclude_office_ips41).take_handle() + as i32; *ptr40.add(44).cast::() = (match_41).take_handle() as i32; *ptr40.add(48).cast::() = (name41).take_handle() as i32; *ptr40.add(52).cast::() = (precedence41).take_handle() as i32; - *ptr40.add(56).cast::() = (service_mode_v2_mode41).take_handle() as i32; - *ptr40.add(60).cast::() = (service_mode_v2_port41).take_handle() as i32; + *ptr40.add(56).cast::() = (service_mode_v2_mode41).take_handle() + as i32; + *ptr40.add(60).cast::() = (service_mode_v2_port41).take_handle() + as i32; *ptr40.add(64).cast::() = (support_url41).take_handle() as i32; - *ptr40.add(68).cast::() = (switch_locked41).take_handle() as i32; + *ptr40.add(68).cast::() = (switch_locked41).take_handle() + as i32; ptr40 } pub trait Guest { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_device_settings_policy_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/device-settings-policy@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); -} + macro_rules! __export_pulumi_cloudflare_device_settings_policy_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/device-settings-policy@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_device_settings_policy_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 72]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 72]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 72], + ); } - #[allow(dead_code, clippy::all)] pub mod dlp_profile { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allowed_match_count: &'a Output, @@ -6097,7 +6778,10 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("allowed-match-count", &self.allowed_match_count) @@ -6119,7 +6803,10 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("allowed-match-count", &self.allowed_match_count) @@ -6144,8 +6831,7 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -6159,31 +6845,45 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, allowed_match_count: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, context_awareness: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, description: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, entries: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, name: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, type_: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, }, @@ -6199,8 +6899,10 @@ pub mod exports { type_: type_10, } = result8; *ptr9.add(0).cast::() = (account_id10).take_handle() as i32; - *ptr9.add(4).cast::() = (allowed_match_count10).take_handle() as i32; - *ptr9.add(8).cast::() = (context_awareness10).take_handle() as i32; + *ptr9.add(4).cast::() = (allowed_match_count10).take_handle() + as i32; + *ptr9.add(8).cast::() = (context_awareness10).take_handle() + as i32; *ptr9.add(12).cast::() = (description10).take_handle() as i32; *ptr9.add(16).cast::() = (entries10).take_handle() as i32; *ptr9.add(20).cast::() = (name10).take_handle() as i32; @@ -6211,39 +6913,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_dlp_profile_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/dlp-profile@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) - } - };); -} + macro_rules! __export_pulumi_cloudflare_dlp_profile_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/dlp-profile@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_dlp_profile_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 28], + ); } - #[allow(dead_code, clippy::all)] pub mod email_routing_address { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub email: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("email", &self.email) @@ -6259,7 +6963,10 @@ pub mod exports { pub verified: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("created", &self.created) @@ -6278,8 +6985,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -6288,11 +6994,15 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, email: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, @@ -6318,33 +7028,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_email_routing_address_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/email-routing-address@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_email_routing_address_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/email-routing-address@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_email_routing_address_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod email_routing_catch_all { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub actions: &'a Output, pub enabled: &'a Output, @@ -6353,7 +7060,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("actions", &self.actions) .field("enabled", &self.enabled) @@ -6372,7 +7082,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("actions", &self.actions) .field("enabled", &self.enabled) @@ -6394,8 +7107,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -6407,23 +7119,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { actions: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, enabled: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, matchers: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, zone_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -6449,33 +7171,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_email_routing_catch_all_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/email-routing-catch-all@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_email_routing_catch_all_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/email-routing-catch-all@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_email_routing_catch_all_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod email_routing_rule { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub actions: &'a Output, pub enabled: &'a Output, @@ -6485,7 +7205,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("actions", &self.actions) .field("enabled", &self.enabled) @@ -6506,7 +7229,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("actions", &self.actions) .field("enabled", &self.enabled) @@ -6530,8 +7256,7 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -6544,27 +7269,39 @@ pub mod exports { _rt::string_lift(bytes0), Args { actions: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, enabled: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, matchers: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, priority: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, zone_id: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, }, @@ -6592,40 +7329,42 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_email_routing_rule_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/email-routing-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - };); -} + macro_rules! __export_pulumi_cloudflare_email_routing_rule_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/email-routing-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_email_routing_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 28], + ); } - #[allow(dead_code, clippy::all)] pub mod email_routing_settings { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub enabled: &'a Output, pub skip_wizard: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("enabled", &self.enabled) .field("skip-wizard", &self.skip_wizard) @@ -6644,7 +7383,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("created", &self.created) .field("enabled", &self.enabled) @@ -6666,8 +7408,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -6677,15 +7418,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { enabled: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, skip_wizard: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -6715,40 +7462,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_email_routing_settings_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/email-routing-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_email_routing_settings_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/email-routing-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_email_routing_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 32], + ); } - #[allow(dead_code, clippy::all)] pub mod fallback_domain { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub domains: &'a Output, pub policy_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("domains", &self.domains) @@ -6762,7 +7510,10 @@ pub mod exports { pub policy_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("domains", &self.domains) @@ -6779,8 +7530,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -6790,15 +7540,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, domains: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, policy_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -6818,33 +7574,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_fallback_domain_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/fallback-domain@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_fallback_domain_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/fallback-domain@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_fallback_domain_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod filter { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub description: &'a Output, pub expression: &'a Output, @@ -6853,7 +7607,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("description", &self.description) .field("expression", &self.expression) @@ -6871,7 +7628,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("description", &self.description) .field("expression", &self.expression) @@ -6892,8 +7652,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -6905,23 +7664,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { description: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, expression: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, paused: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, ref_: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, zone_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -6945,33 +7714,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_filter_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/filter@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_filter_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/filter@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_filter_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod firewall_rule { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub action: &'a Output, pub description: &'a Output, @@ -6982,7 +7749,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("action", &self.action) .field("description", &self.description) @@ -7004,7 +7774,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("action", &self.action) .field("description", &self.description) @@ -7029,8 +7802,7 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -7044,31 +7816,45 @@ pub mod exports { _rt::string_lift(bytes0), Args { action: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, description: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, filter_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, paused: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, priority: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, products: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, zone_id: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, }, @@ -7096,33 +7882,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_firewall_rule_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/firewall-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) - } - };); -} + macro_rules! __export_pulumi_cloudflare_firewall_rule_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/firewall-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_firewall_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 28], + ); } - #[allow(dead_code, clippy::all)] pub mod gre_tunnel { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub cloudflare_gre_endpoint: &'a Output, @@ -7137,10 +7922,16 @@ pub mod exports { pub ttl: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) - .field("cloudflare-gre-endpoint", &self.cloudflare_gre_endpoint) + .field( + "cloudflare-gre-endpoint", + &self.cloudflare_gre_endpoint, + ) .field("customer-gre-endpoint", &self.customer_gre_endpoint) .field("description", &self.description) .field("health-check-enabled", &self.health_check_enabled) @@ -7167,10 +7958,16 @@ pub mod exports { pub ttl: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) - .field("cloudflare-gre-endpoint", &self.cloudflare_gre_endpoint) + .field( + "cloudflare-gre-endpoint", + &self.cloudflare_gre_endpoint, + ) .field("customer-gre-endpoint", &self.customer_gre_endpoint) .field("description", &self.description) .field("health-check-enabled", &self.health_check_enabled) @@ -7200,8 +7997,7 @@ pub mod exports { arg11: i32, arg12: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -7219,47 +8015,69 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, cloudflare_gre_endpoint: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, customer_gre_endpoint: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, description: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, health_check_enabled: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, health_check_target: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, health_check_type: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, interface_address: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, mtu: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, name: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, ttl: { - handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg12 as u32); + handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg12 as u32, + ); &handle11 }, }, @@ -7279,13 +8097,19 @@ pub mod exports { ttl: ttl14, } = result12; *ptr13.add(0).cast::() = (account_id14).take_handle() as i32; - *ptr13.add(4).cast::() = (cloudflare_gre_endpoint14).take_handle() as i32; - *ptr13.add(8).cast::() = (customer_gre_endpoint14).take_handle() as i32; + *ptr13.add(4).cast::() = (cloudflare_gre_endpoint14) + .take_handle() as i32; + *ptr13.add(8).cast::() = (customer_gre_endpoint14).take_handle() + as i32; *ptr13.add(12).cast::() = (description14).take_handle() as i32; - *ptr13.add(16).cast::() = (health_check_enabled14).take_handle() as i32; - *ptr13.add(20).cast::() = (health_check_target14).take_handle() as i32; - *ptr13.add(24).cast::() = (health_check_type14).take_handle() as i32; - *ptr13.add(28).cast::() = (interface_address14).take_handle() as i32; + *ptr13.add(16).cast::() = (health_check_enabled14).take_handle() + as i32; + *ptr13.add(20).cast::() = (health_check_target14).take_handle() + as i32; + *ptr13.add(24).cast::() = (health_check_type14).take_handle() + as i32; + *ptr13.add(28).cast::() = (interface_address14).take_handle() + as i32; *ptr13.add(32).cast::() = (mtu14).take_handle() as i32; *ptr13.add(36).cast::() = (name14).take_handle() as i32; *ptr13.add(40).cast::() = (ttl14).take_handle() as i32; @@ -7295,33 +8119,33 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_gre_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/gre-tunnel@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,arg12: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) - } - };); -} + macro_rules! __export_pulumi_cloudflare_gre_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/gre-tunnel@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32, arg12 : + i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8, arg9, arg10, arg11, arg12) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_gre_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 44]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 44]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 44], + ); } - #[allow(dead_code, clippy::all)] pub mod healthcheck { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub address: &'a Output, pub allow_insecure: &'a Output, @@ -7345,7 +8169,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("address", &self.address) .field("allow-insecure", &self.allow_insecure) @@ -7395,7 +8222,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("address", &self.address) .field("allow-insecure", &self.allow_insecure) @@ -7425,8 +8255,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -7475,83 +8304,123 @@ pub mod exports { _rt::string_lift(bytes2), Args { address: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, allow_insecure: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, check_regions: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, consecutive_fails: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, consecutive_successes: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, description: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, expected_body: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, expected_codes: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, follow_redirects: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, headers: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, interval: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, method: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, name: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, path: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, port: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, retries: { - handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l33 as u32); + handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l33 as u32, + ); &handle34 }, suspended: { - handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l35 as u32); + handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l35 as u32, + ); &handle36 }, timeout: { - handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l37 as u32); + handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l37 as u32, + ); &handle38 }, type_: { - handle40 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l39 as u32); + handle40 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l39 as u32, + ); &handle40 }, zone_id: { - handle42 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l41 as u32); + handle42 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l41 as u32, + ); &handle42 }, }, @@ -7583,15 +8452,21 @@ pub mod exports { zone_id: zone_id45, } = result43; *ptr44.add(0).cast::() = (address45).take_handle() as i32; - *ptr44.add(4).cast::() = (allow_insecure45).take_handle() as i32; + *ptr44.add(4).cast::() = (allow_insecure45).take_handle() + as i32; *ptr44.add(8).cast::() = (check_regions45).take_handle() as i32; - *ptr44.add(12).cast::() = (consecutive_fails45).take_handle() as i32; - *ptr44.add(16).cast::() = (consecutive_successes45).take_handle() as i32; + *ptr44.add(12).cast::() = (consecutive_fails45).take_handle() + as i32; + *ptr44.add(16).cast::() = (consecutive_successes45) + .take_handle() as i32; *ptr44.add(20).cast::() = (created_on45).take_handle() as i32; *ptr44.add(24).cast::() = (description45).take_handle() as i32; - *ptr44.add(28).cast::() = (expected_body45).take_handle() as i32; - *ptr44.add(32).cast::() = (expected_codes45).take_handle() as i32; - *ptr44.add(36).cast::() = (follow_redirects45).take_handle() as i32; + *ptr44.add(28).cast::() = (expected_body45).take_handle() + as i32; + *ptr44.add(32).cast::() = (expected_codes45).take_handle() + as i32; + *ptr44.add(36).cast::() = (follow_redirects45).take_handle() + as i32; *ptr44.add(40).cast::() = (headers45).take_handle() as i32; *ptr44.add(44).cast::() = (interval45).take_handle() as i32; *ptr44.add(48).cast::() = (method45).take_handle() as i32; @@ -7610,33 +8485,29 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_healthcheck_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/healthcheck@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); -} + macro_rules! __export_pulumi_cloudflare_healthcheck_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/healthcheck@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_healthcheck_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 88]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 88]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 88], + ); } - #[allow(dead_code, clippy::all)] pub mod hostname_tls_setting { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub hostname: &'a Output, pub setting: &'a Output, @@ -7644,7 +8515,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("hostname", &self.hostname) .field("setting", &self.setting) @@ -7662,7 +8536,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("created-at", &self.created_at) .field("hostname", &self.hostname) @@ -7683,8 +8560,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -7695,19 +8571,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { hostname: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, setting: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, value: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, zone_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -7733,33 +8617,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_hostname_tls_setting_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/hostname-tls-setting@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_hostname_tls_setting_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/hostname-tls-setting@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_hostname_tls_setting_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod hostname_tls_setting_ciphers { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub hostname: &'a Output, pub ports: &'a Output, @@ -7767,7 +8649,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("hostname", &self.hostname) .field("ports", &self.ports) @@ -7785,7 +8670,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("created-at", &self.created_at) .field("hostname", &self.hostname) @@ -7806,8 +8694,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -7818,19 +8705,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { hostname: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, ports: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, values: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, zone_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -7856,33 +8751,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_hostname_tls_setting_ciphers_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/hostname-tls-setting-ciphers@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_hostname_tls_setting_ciphers_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/hostname-tls-setting-ciphers@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_hostname_tls_setting_ciphers_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod hyperdrive_config { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub caching: &'a Output, @@ -7890,7 +8783,10 @@ pub mod exports { pub origin: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("caching", &self.caching) @@ -7906,7 +8802,10 @@ pub mod exports { pub origin: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("caching", &self.caching) @@ -7925,8 +8824,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -7937,19 +8835,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, caching: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, origin: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -7971,33 +8877,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_hyperdrive_config_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/hyperdrive-config@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_hyperdrive_config_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/hyperdrive-config@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_hyperdrive_config_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod ipsec_tunnel { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allow_null_cipher: &'a Output, @@ -8018,7 +8922,10 @@ pub mod exports { pub user_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("allow-null-cipher", &self.allow_null_cipher) @@ -8026,7 +8933,10 @@ pub mod exports { .field("customer-endpoint", &self.customer_endpoint) .field("description", &self.description) .field("fqdn-id", &self.fqdn_id) - .field("health-check-direction", &self.health_check_direction) + .field( + "health-check-direction", + &self.health_check_direction, + ) .field("health-check-enabled", &self.health_check_enabled) .field("health-check-rate", &self.health_check_rate) .field("health-check-target", &self.health_check_target) @@ -8060,7 +8970,10 @@ pub mod exports { pub user_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("allow-null-cipher", &self.allow_null_cipher) @@ -8068,7 +8981,10 @@ pub mod exports { .field("customer-endpoint", &self.customer_endpoint) .field("description", &self.description) .field("fqdn-id", &self.fqdn_id) - .field("health-check-direction", &self.health_check_direction) + .field( + "health-check-direction", + &self.health_check_direction, + ) .field("health-check-enabled", &self.health_check_enabled) .field("health-check-rate", &self.health_check_rate) .field("health-check-target", &self.health_check_target) @@ -8085,8 +9001,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -8129,71 +9044,105 @@ pub mod exports { _rt::string_lift(bytes2), Args { account_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, allow_null_cipher: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, cloudflare_endpoint: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, customer_endpoint: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, description: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, fqdn_id: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, health_check_direction: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, health_check_enabled: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, health_check_rate: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, health_check_target: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, health_check_type: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, hex_id: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, interface_address: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, name: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, psk: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, remote_id: { - handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l33 as u32); + handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l33 as u32, + ); &handle34 }, user_id: { - handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l35 as u32); + handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l35 as u32, + ); &handle36 }, }, @@ -8220,18 +9169,27 @@ pub mod exports { user_id: user_id39, } = result37; *ptr38.add(0).cast::() = (account_id39).take_handle() as i32; - *ptr38.add(4).cast::() = (allow_null_cipher39).take_handle() as i32; - *ptr38.add(8).cast::() = (cloudflare_endpoint39).take_handle() as i32; - *ptr38.add(12).cast::() = (customer_endpoint39).take_handle() as i32; + *ptr38.add(4).cast::() = (allow_null_cipher39).take_handle() + as i32; + *ptr38.add(8).cast::() = (cloudflare_endpoint39).take_handle() + as i32; + *ptr38.add(12).cast::() = (customer_endpoint39).take_handle() + as i32; *ptr38.add(16).cast::() = (description39).take_handle() as i32; *ptr38.add(20).cast::() = (fqdn_id39).take_handle() as i32; - *ptr38.add(24).cast::() = (health_check_direction39).take_handle() as i32; - *ptr38.add(28).cast::() = (health_check_enabled39).take_handle() as i32; - *ptr38.add(32).cast::() = (health_check_rate39).take_handle() as i32; - *ptr38.add(36).cast::() = (health_check_target39).take_handle() as i32; - *ptr38.add(40).cast::() = (health_check_type39).take_handle() as i32; + *ptr38.add(24).cast::() = (health_check_direction39) + .take_handle() as i32; + *ptr38.add(28).cast::() = (health_check_enabled39).take_handle() + as i32; + *ptr38.add(32).cast::() = (health_check_rate39).take_handle() + as i32; + *ptr38.add(36).cast::() = (health_check_target39).take_handle() + as i32; + *ptr38.add(40).cast::() = (health_check_type39).take_handle() + as i32; *ptr38.add(44).cast::() = (hex_id39).take_handle() as i32; - *ptr38.add(48).cast::() = (interface_address39).take_handle() as i32; + *ptr38.add(48).cast::() = (interface_address39).take_handle() + as i32; *ptr38.add(52).cast::() = (name39).take_handle() as i32; *ptr38.add(56).cast::() = (psk39).take_handle() as i32; *ptr38.add(60).cast::() = (remote_id39).take_handle() as i32; @@ -8242,33 +9200,29 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_ipsec_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/ipsec-tunnel@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); -} + macro_rules! __export_pulumi_cloudflare_ipsec_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/ipsec-tunnel@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_ipsec_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 68]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 68]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 68], + ); } - #[allow(dead_code, clippy::all)] pub mod keyless_certificate { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub bundle_method: &'a Output, pub certificate: &'a Output, @@ -8279,7 +9233,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("bundle-method", &self.bundle_method) .field("certificate", &self.certificate) @@ -8302,7 +9259,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("bundle-method", &self.bundle_method) .field("certificate", &self.certificate) @@ -8328,8 +9288,7 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -8343,31 +9302,45 @@ pub mod exports { _rt::string_lift(bytes0), Args { bundle_method: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, certificate: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, enabled: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, host: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, name: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, port: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, zone_id: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, }, @@ -8397,33 +9370,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_keyless_certificate_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/keyless-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) - } - };); -} + macro_rules! __export_pulumi_cloudflare_keyless_certificate_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/keyless-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_keyless_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 32], + ); } - #[allow(dead_code, clippy::all)] pub mod list { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub description: &'a Output, @@ -8432,7 +9404,10 @@ pub mod exports { pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("description", &self.description) @@ -8450,7 +9425,10 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("description", &self.description) @@ -8471,8 +9449,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -8484,23 +9461,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, description: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, items: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, kind: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, name: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -8524,33 +9511,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_list_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/list@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_list_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/list@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_list_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod list_item { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub asn: &'a Output, @@ -8561,7 +9546,10 @@ pub mod exports { pub redirect: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("asn", &self.asn) @@ -8583,7 +9571,10 @@ pub mod exports { pub redirect: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("asn", &self.asn) @@ -8608,8 +9599,7 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -8623,31 +9613,45 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, asn: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, comment: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, hostname: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, ip: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, list_id: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, redirect: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, }, @@ -8675,33 +9679,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_list_item_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/list-item@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) - } - };); -} + macro_rules! __export_pulumi_cloudflare_list_item_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/list-item@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_list_item_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 28], + ); } - #[allow(dead_code, clippy::all)] pub mod load_balancer { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub adaptive_routings: &'a Output, pub country_pools: &'a Output, @@ -8724,7 +9727,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("adaptive-routings", &self.adaptive_routings) .field("country-pools", &self.country_pools) @@ -8775,7 +9781,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("adaptive-routings", &self.adaptive_routings) .field("country-pools", &self.country_pools) @@ -8807,8 +9816,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -8855,79 +9863,117 @@ pub mod exports { _rt::string_lift(bytes2), Args { adaptive_routings: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, country_pools: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, default_pool_ids: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, description: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, enabled: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, fallback_pool_id: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, location_strategies: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, name: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, pop_pools: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, proxied: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, random_steerings: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, region_pools: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, rules: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, session_affinity: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, session_affinity_attributes: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, session_affinity_ttl: { - handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l33 as u32); + handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l33 as u32, + ); &handle34 }, steering_policy: { - handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l35 as u32); + handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l35 as u32, + ); &handle36 }, ttl: { - handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l37 as u32); + handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l37 as u32, + ); &handle38 }, zone_id: { - handle40 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l39 as u32); + handle40 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l39 as u32, + ); &handle40 }, }, @@ -8957,26 +10003,34 @@ pub mod exports { ttl: ttl43, zone_id: zone_id43, } = result41; - *ptr42.add(0).cast::() = (adaptive_routings43).take_handle() as i32; + *ptr42.add(0).cast::() = (adaptive_routings43).take_handle() + as i32; *ptr42.add(4).cast::() = (country_pools43).take_handle() as i32; *ptr42.add(8).cast::() = (created_on43).take_handle() as i32; - *ptr42.add(12).cast::() = (default_pool_ids43).take_handle() as i32; + *ptr42.add(12).cast::() = (default_pool_ids43).take_handle() + as i32; *ptr42.add(16).cast::() = (description43).take_handle() as i32; *ptr42.add(20).cast::() = (enabled43).take_handle() as i32; - *ptr42.add(24).cast::() = (fallback_pool_id43).take_handle() as i32; - *ptr42.add(28).cast::() = (location_strategies43).take_handle() as i32; + *ptr42.add(24).cast::() = (fallback_pool_id43).take_handle() + as i32; + *ptr42.add(28).cast::() = (location_strategies43).take_handle() + as i32; *ptr42.add(32).cast::() = (modified_on43).take_handle() as i32; *ptr42.add(36).cast::() = (name43).take_handle() as i32; *ptr42.add(40).cast::() = (pop_pools43).take_handle() as i32; *ptr42.add(44).cast::() = (proxied43).take_handle() as i32; - *ptr42.add(48).cast::() = (random_steerings43).take_handle() as i32; + *ptr42.add(48).cast::() = (random_steerings43).take_handle() + as i32; *ptr42.add(52).cast::() = (region_pools43).take_handle() as i32; *ptr42.add(56).cast::() = (rules43).take_handle() as i32; - *ptr42.add(60).cast::() = (session_affinity43).take_handle() as i32; - *ptr42.add(64).cast::() = - (session_affinity_attributes43).take_handle() as i32; - *ptr42.add(68).cast::() = (session_affinity_ttl43).take_handle() as i32; - *ptr42.add(72).cast::() = (steering_policy43).take_handle() as i32; + *ptr42.add(60).cast::() = (session_affinity43).take_handle() + as i32; + *ptr42.add(64).cast::() = (session_affinity_attributes43) + .take_handle() as i32; + *ptr42.add(68).cast::() = (session_affinity_ttl43).take_handle() + as i32; + *ptr42.add(72).cast::() = (steering_policy43).take_handle() + as i32; *ptr42.add(76).cast::() = (ttl43).take_handle() as i32; *ptr42.add(80).cast::() = (zone_id43).take_handle() as i32; ptr42 @@ -8985,33 +10039,29 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_load_balancer_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/load-balancer@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); -} + macro_rules! __export_pulumi_cloudflare_load_balancer_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/load-balancer@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_load_balancer_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 84]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 84]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 84], + ); } - #[allow(dead_code, clippy::all)] pub mod load_balancer_monitor { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allow_insecure: &'a Output, @@ -9032,7 +10082,10 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("allow-insecure", &self.allow_insecure) @@ -9076,7 +10129,10 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("allow-insecure", &self.allow_insecure) @@ -9103,8 +10159,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -9147,71 +10202,105 @@ pub mod exports { _rt::string_lift(bytes2), Args { account_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, allow_insecure: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, consecutive_down: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, consecutive_up: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, description: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, expected_body: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, expected_codes: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, follow_redirects: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, headers: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, interval: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, method: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, path: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, port: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, probe_zone: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, retries: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, timeout: { - handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l33 as u32); + handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l33 as u32, + ); &handle34 }, type_: { - handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l35 as u32); + handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l35 as u32, + ); &handle36 }, }, @@ -9240,14 +10329,20 @@ pub mod exports { type_: type_39, } = result37; *ptr38.add(0).cast::() = (account_id39).take_handle() as i32; - *ptr38.add(4).cast::() = (allow_insecure39).take_handle() as i32; - *ptr38.add(8).cast::() = (consecutive_down39).take_handle() as i32; - *ptr38.add(12).cast::() = (consecutive_up39).take_handle() as i32; + *ptr38.add(4).cast::() = (allow_insecure39).take_handle() + as i32; + *ptr38.add(8).cast::() = (consecutive_down39).take_handle() + as i32; + *ptr38.add(12).cast::() = (consecutive_up39).take_handle() + as i32; *ptr38.add(16).cast::() = (created_on39).take_handle() as i32; *ptr38.add(20).cast::() = (description39).take_handle() as i32; - *ptr38.add(24).cast::() = (expected_body39).take_handle() as i32; - *ptr38.add(28).cast::() = (expected_codes39).take_handle() as i32; - *ptr38.add(32).cast::() = (follow_redirects39).take_handle() as i32; + *ptr38.add(24).cast::() = (expected_body39).take_handle() + as i32; + *ptr38.add(28).cast::() = (expected_codes39).take_handle() + as i32; + *ptr38.add(32).cast::() = (follow_redirects39).take_handle() + as i32; *ptr38.add(36).cast::() = (headers39).take_handle() as i32; *ptr38.add(40).cast::() = (interval39).take_handle() as i32; *ptr38.add(44).cast::() = (method39).take_handle() as i32; @@ -9264,33 +10359,29 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_load_balancer_monitor_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/load-balancer-monitor@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); -} + macro_rules! __export_pulumi_cloudflare_load_balancer_monitor_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/load-balancer-monitor@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_load_balancer_monitor_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 76]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 76]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 76], + ); } - #[allow(dead_code, clippy::all)] pub mod load_balancer_pool { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub check_regions: &'a Output, @@ -9307,7 +10398,10 @@ pub mod exports { pub origins: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("check-regions", &self.check_regions) @@ -9343,7 +10437,10 @@ pub mod exports { pub origins: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("check-regions", &self.check_regions) @@ -9382,8 +10479,7 @@ pub mod exports { arg13: i32, arg14: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -9403,55 +10499,81 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, check_regions: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, description: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, enabled: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, latitude: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, load_sheddings: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, longitude: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, minimum_origins: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, monitor: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, name: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, notification_email: { - handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg12 as u32); + handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg12 as u32, + ); &handle11 }, origin_steerings: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg13 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg13 as u32, + ); &handle12 }, origins: { - handle13 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg14 as u32); + handle13 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg14 as u32, + ); &handle13 }, }, @@ -9480,14 +10602,18 @@ pub mod exports { *ptr15.add(12).cast::() = (description16).take_handle() as i32; *ptr15.add(16).cast::() = (enabled16).take_handle() as i32; *ptr15.add(20).cast::() = (latitude16).take_handle() as i32; - *ptr15.add(24).cast::() = (load_sheddings16).take_handle() as i32; + *ptr15.add(24).cast::() = (load_sheddings16).take_handle() + as i32; *ptr15.add(28).cast::() = (longitude16).take_handle() as i32; - *ptr15.add(32).cast::() = (minimum_origins16).take_handle() as i32; + *ptr15.add(32).cast::() = (minimum_origins16).take_handle() + as i32; *ptr15.add(36).cast::() = (modified_on16).take_handle() as i32; *ptr15.add(40).cast::() = (monitor16).take_handle() as i32; *ptr15.add(44).cast::() = (name16).take_handle() as i32; - *ptr15.add(48).cast::() = (notification_email16).take_handle() as i32; - *ptr15.add(52).cast::() = (origin_steerings16).take_handle() as i32; + *ptr15.add(48).cast::() = (notification_email16).take_handle() + as i32; + *ptr15.add(52).cast::() = (origin_steerings16).take_handle() + as i32; *ptr15.add(56).cast::() = (origins16).take_handle() as i32; ptr15 } @@ -9495,39 +10621,43 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_load_balancer_pool_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/load-balancer-pool@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,arg12: i32,arg13: i32,arg14: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14) - } - };); -} + macro_rules! __export_pulumi_cloudflare_load_balancer_pool_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/load-balancer-pool@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32, arg12 : + i32, arg13 : i32, arg14 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, + arg12, arg13, arg14) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_load_balancer_pool_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 60]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 60]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 60], + ); } - #[allow(dead_code, clippy::all)] pub mod logpull_retention { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub enabled: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -9539,7 +10669,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -9554,8 +10687,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -9564,20 +10696,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { enabled: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, zone_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - enabled: enabled5, - zone_id: zone_id5, - } = result3; + let Res { enabled: enabled5, zone_id: zone_id5 } = result3; *ptr4.add(0).cast::() = (enabled5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 @@ -9586,33 +10719,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_logpull_retention_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/logpull-retention@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_logpull_retention_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/logpull-retention@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_logpull_retention_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod logpush_job { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub dataset: &'a Output, @@ -9631,7 +10761,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("dataset", &self.dataset) @@ -9672,7 +10805,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("dataset", &self.dataset) @@ -9698,8 +10834,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -9738,63 +10873,93 @@ pub mod exports { _rt::string_lift(bytes2), Args { account_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, dataset: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, destination_conf: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, enabled: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, filter: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, frequency: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, kind: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, logpull_options: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, max_upload_bytes: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, max_upload_interval_seconds: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, max_upload_records: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, name: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, output_options: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, ownership_challenge: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, zone_id: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, }, @@ -9820,19 +10985,25 @@ pub mod exports { } = result33; *ptr34.add(0).cast::() = (account_id35).take_handle() as i32; *ptr34.add(4).cast::() = (dataset35).take_handle() as i32; - *ptr34.add(8).cast::() = (destination_conf35).take_handle() as i32; + *ptr34.add(8).cast::() = (destination_conf35).take_handle() + as i32; *ptr34.add(12).cast::() = (enabled35).take_handle() as i32; *ptr34.add(16).cast::() = (filter35).take_handle() as i32; *ptr34.add(20).cast::() = (frequency35).take_handle() as i32; *ptr34.add(24).cast::() = (kind35).take_handle() as i32; - *ptr34.add(28).cast::() = (logpull_options35).take_handle() as i32; - *ptr34.add(32).cast::() = (max_upload_bytes35).take_handle() as i32; - *ptr34.add(36).cast::() = - (max_upload_interval_seconds35).take_handle() as i32; - *ptr34.add(40).cast::() = (max_upload_records35).take_handle() as i32; + *ptr34.add(28).cast::() = (logpull_options35).take_handle() + as i32; + *ptr34.add(32).cast::() = (max_upload_bytes35).take_handle() + as i32; + *ptr34.add(36).cast::() = (max_upload_interval_seconds35) + .take_handle() as i32; + *ptr34.add(40).cast::() = (max_upload_records35).take_handle() + as i32; *ptr34.add(44).cast::() = (name35).take_handle() as i32; - *ptr34.add(48).cast::() = (output_options35).take_handle() as i32; - *ptr34.add(52).cast::() = (ownership_challenge35).take_handle() as i32; + *ptr34.add(48).cast::() = (output_options35).take_handle() + as i32; + *ptr34.add(52).cast::() = (ownership_challenge35).take_handle() + as i32; *ptr34.add(56).cast::() = (zone_id35).take_handle() as i32; ptr34 } @@ -9840,40 +11011,39 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_logpush_job_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/logpush-job@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); -} + macro_rules! __export_pulumi_cloudflare_logpush_job_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/logpush-job@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_logpush_job_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 60]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 60]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 60], + ); } - #[allow(dead_code, clippy::all)] pub mod logpush_ownership_challenge { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub destination_conf: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("destination-conf", &self.destination_conf) @@ -9888,7 +11058,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("destination-conf", &self.destination_conf) @@ -9909,8 +11082,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -9920,15 +11092,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, destination_conf: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -9941,9 +11119,10 @@ pub mod exports { zone_id: zone_id6, } = result4; *ptr5.add(0).cast::() = (account_id6).take_handle() as i32; - *ptr5.add(4).cast::() = (destination_conf6).take_handle() as i32; - *ptr5.add(8).cast::() = - (ownership_challenge_filename6).take_handle() as i32; + *ptr5.add(4).cast::() = (destination_conf6).take_handle() + as i32; + *ptr5.add(8).cast::() = (ownership_challenge_filename6) + .take_handle() as i32; *ptr5.add(12).cast::() = (zone_id6).take_handle() as i32; ptr5 } @@ -9951,33 +11130,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_logpush_ownership_challenge_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/logpush-ownership-challenge@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_logpush_ownership_challenge_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/logpush-ownership-challenge@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_logpush_ownership_challenge_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod magic_firewall_ruleset { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub description: &'a Output, @@ -9985,7 +11162,10 @@ pub mod exports { pub rules: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("description", &self.description) @@ -10001,7 +11181,10 @@ pub mod exports { pub rules: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("description", &self.description) @@ -10020,8 +11203,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -10032,19 +11214,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, description: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, rules: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -10066,43 +11256,50 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_magic_firewall_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/magic-firewall-ruleset@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_magic_firewall_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/magic-firewall-ruleset@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_magic_firewall_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod managed_headers { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub managed_request_headers: &'a Output, pub managed_response_headers: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") - .field("managed-request-headers", &self.managed_request_headers) - .field("managed-response-headers", &self.managed_response_headers) + .field( + "managed-request-headers", + &self.managed_request_headers, + ) + .field( + "managed-response-headers", + &self.managed_response_headers, + ) .field("zone-id", &self.zone_id) .finish() } @@ -10113,10 +11310,19 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") - .field("managed-request-headers", &self.managed_request_headers) - .field("managed-response-headers", &self.managed_response_headers) + .field( + "managed-request-headers", + &self.managed_request_headers, + ) + .field( + "managed-response-headers", + &self.managed_response_headers, + ) .field("zone-id", &self.zone_id) .finish() } @@ -10130,8 +11336,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -10141,15 +11346,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { managed_request_headers: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, managed_response_headers: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -10160,8 +11371,10 @@ pub mod exports { managed_response_headers: managed_response_headers6, zone_id: zone_id6, } = result4; - *ptr5.add(0).cast::() = (managed_request_headers6).take_handle() as i32; - *ptr5.add(4).cast::() = (managed_response_headers6).take_handle() as i32; + *ptr5.add(0).cast::() = (managed_request_headers6).take_handle() + as i32; + *ptr5.add(4).cast::() = (managed_response_headers6) + .take_handle() as i32; *ptr5.add(8).cast::() = (zone_id6).take_handle() as i32; ptr5 } @@ -10169,33 +11382,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_managed_headers_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/managed-headers@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_managed_headers_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/managed-headers@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_managed_headers_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod mtls_certificate { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub ca: &'a Output, @@ -10204,7 +11415,10 @@ pub mod exports { pub private_key: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("ca", &self.ca) @@ -10227,7 +11441,10 @@ pub mod exports { pub uploaded_on: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("ca", &self.ca) @@ -10253,8 +11470,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -10266,23 +11482,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, ca: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, certificates: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, private_key: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -10316,33 +11542,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_mtls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/mtls-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_mtls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/mtls-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_mtls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 40]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 40]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 40], + ); } - #[allow(dead_code, clippy::all)] pub mod notification_policy { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub alert_type: &'a Output, @@ -10355,7 +11579,10 @@ pub mod exports { pub webhooks_integrations: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("alert-type", &self.alert_type) @@ -10364,7 +11591,10 @@ pub mod exports { .field("enabled", &self.enabled) .field("filters", &self.filters) .field("name", &self.name) - .field("pagerduty-integrations", &self.pagerduty_integrations) + .field( + "pagerduty-integrations", + &self.pagerduty_integrations, + ) .field("webhooks-integrations", &self.webhooks_integrations) .finish() } @@ -10383,7 +11613,10 @@ pub mod exports { pub webhooks_integrations: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("alert-type", &self.alert_type) @@ -10394,7 +11627,10 @@ pub mod exports { .field("filters", &self.filters) .field("modified", &self.modified) .field("name", &self.name) - .field("pagerduty-integrations", &self.pagerduty_integrations) + .field( + "pagerduty-integrations", + &self.pagerduty_integrations, + ) .field("webhooks-integrations", &self.webhooks_integrations) .finish() } @@ -10414,8 +11650,7 @@ pub mod exports { arg9: i32, arg10: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -10431,39 +11666,57 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, alert_type: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, description: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, email_integrations: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, enabled: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, filters: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, name: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, pagerduty_integrations: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, webhooks_integrations: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, }, @@ -10486,46 +11739,48 @@ pub mod exports { *ptr11.add(4).cast::() = (alert_type12).take_handle() as i32; *ptr11.add(8).cast::() = (created12).take_handle() as i32; *ptr11.add(12).cast::() = (description12).take_handle() as i32; - *ptr11.add(16).cast::() = (email_integrations12).take_handle() as i32; + *ptr11.add(16).cast::() = (email_integrations12).take_handle() + as i32; *ptr11.add(20).cast::() = (enabled12).take_handle() as i32; *ptr11.add(24).cast::() = (filters12).take_handle() as i32; *ptr11.add(28).cast::() = (modified12).take_handle() as i32; *ptr11.add(32).cast::() = (name12).take_handle() as i32; - *ptr11.add(36).cast::() = (pagerduty_integrations12).take_handle() as i32; - *ptr11.add(40).cast::() = (webhooks_integrations12).take_handle() as i32; + *ptr11.add(36).cast::() = (pagerduty_integrations12) + .take_handle() as i32; + *ptr11.add(40).cast::() = (webhooks_integrations12) + .take_handle() as i32; ptr11 } pub trait Guest { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_notification_policy_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/notification-policy@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) - } - };); -} + macro_rules! __export_pulumi_cloudflare_notification_policy_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/notification-policy@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_notification_policy_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 44]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 44]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 44], + ); } - #[allow(dead_code, clippy::all)] pub mod notification_policy_webhooks { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub name: &'a Output, @@ -10533,7 +11788,10 @@ pub mod exports { pub url: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("name", &self.name) @@ -10553,7 +11811,10 @@ pub mod exports { pub url: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("created-at", &self.created_at) @@ -10576,8 +11837,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -10588,19 +11848,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, name: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, secret: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, url: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -10630,33 +11898,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_notification_policy_webhooks_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/notification-policy-webhooks@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_notification_policy_webhooks_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/notification-policy-webhooks@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_notification_policy_webhooks_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 32], + ); } - #[allow(dead_code, clippy::all)] pub mod observatory_scheduled_test { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub frequency: &'a Output, pub region: &'a Output, @@ -10664,7 +11930,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("frequency", &self.frequency) .field("region", &self.region) @@ -10680,7 +11949,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("frequency", &self.frequency) .field("region", &self.region) @@ -10699,8 +11971,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -10711,19 +11982,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { frequency: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, region: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, url: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, zone_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -10745,33 +12024,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_observatory_scheduled_test_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/observatory-scheduled-test@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_observatory_scheduled_test_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/observatory-scheduled-test@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_observatory_scheduled_test_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod origin_ca_certificate { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub csr: &'a Output, pub hostnames: &'a Output, @@ -10780,7 +12057,10 @@ pub mod exports { pub requested_validity: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("csr", &self.csr) .field("hostnames", &self.hostnames) @@ -10800,7 +12080,10 @@ pub mod exports { pub requested_validity: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("certificate", &self.certificate) .field("csr", &self.csr) @@ -10823,8 +12106,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -10836,23 +12118,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { csr: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, hostnames: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, min_days_for_renewal: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, request_type: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, requested_validity: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -10871,42 +12163,42 @@ pub mod exports { *ptr7.add(4).cast::() = (csr8).take_handle() as i32; *ptr7.add(8).cast::() = (expires_on8).take_handle() as i32; *ptr7.add(12).cast::() = (hostnames8).take_handle() as i32; - *ptr7.add(16).cast::() = (min_days_for_renewal8).take_handle() as i32; + *ptr7.add(16).cast::() = (min_days_for_renewal8).take_handle() + as i32; *ptr7.add(20).cast::() = (request_type8).take_handle() as i32; - *ptr7.add(24).cast::() = (requested_validity8).take_handle() as i32; + *ptr7.add(24).cast::() = (requested_validity8).take_handle() + as i32; ptr7 } pub trait Guest { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_origin_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/origin-ca-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_origin_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/origin-ca-certificate@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_origin_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 28], + ); } - #[allow(dead_code, clippy::all)] pub mod page_rule { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub actions: &'a Output, pub priority: &'a Output, @@ -10915,7 +12207,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("actions", &self.actions) .field("priority", &self.priority) @@ -10933,7 +12228,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("actions", &self.actions) .field("priority", &self.priority) @@ -10954,8 +12252,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -10967,23 +12264,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { actions: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, priority: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, status: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, target: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, zone_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -11007,40 +12314,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_page_rule_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/page-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_page_rule_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/page-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_page_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod pages_domain { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub domain: &'a Output, pub project_name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("domain", &self.domain) @@ -11055,7 +12363,10 @@ pub mod exports { pub status: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("domain", &self.domain) @@ -11073,8 +12384,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11084,15 +12394,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, domain: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, project_name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -11114,33 +12430,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_pages_domain_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/pages-domain@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_pages_domain_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/pages-domain@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_pages_domain_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod pages_project { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub build_config: &'a Output, @@ -11150,7 +12464,10 @@ pub mod exports { pub source: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("build-config", &self.build_config) @@ -11173,7 +12490,10 @@ pub mod exports { pub subdomain: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("build-config", &self.build_config) @@ -11199,8 +12519,7 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11213,27 +12532,39 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, build_config: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, deployment_configs: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, production_branch: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, source: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, }, @@ -11253,10 +12584,12 @@ pub mod exports { *ptr8.add(0).cast::() = (account_id9).take_handle() as i32; *ptr8.add(4).cast::() = (build_config9).take_handle() as i32; *ptr8.add(8).cast::() = (created_on9).take_handle() as i32; - *ptr8.add(12).cast::() = (deployment_configs9).take_handle() as i32; + *ptr8.add(12).cast::() = (deployment_configs9).take_handle() + as i32; *ptr8.add(16).cast::() = (domains9).take_handle() as i32; *ptr8.add(20).cast::() = (name9).take_handle() as i32; - *ptr8.add(24).cast::() = (production_branch9).take_handle() as i32; + *ptr8.add(24).cast::() = (production_branch9).take_handle() + as i32; *ptr8.add(28).cast::() = (source9).take_handle() as i32; *ptr8.add(32).cast::() = (subdomain9).take_handle() as i32; ptr8 @@ -11265,39 +12598,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_pages_project_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/pages-project@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - };); -} + macro_rules! __export_pulumi_cloudflare_pages_project_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/pages-project@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_pages_project_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 36], + ); } - #[allow(dead_code, clippy::all)] pub mod queue { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("name", &self.name) @@ -11309,7 +12644,10 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("name", &self.name) @@ -11324,8 +12662,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -11334,20 +12671,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, name: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - account_id: account_id5, - name: name5, - } = result3; + let Res { account_id: account_id5, name: name5 } = result3; *ptr4.add(0).cast::() = (account_id5).take_handle() as i32; *ptr4.add(4).cast::() = (name5).take_handle() as i32; ptr4 @@ -11356,40 +12694,40 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_queue_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/queue@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_queue_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/queue@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_queue_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod r2_bucket { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub location: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("location", &self.location) @@ -11403,7 +12741,10 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("location", &self.location) @@ -11420,8 +12761,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11431,15 +12771,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, location: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -11459,33 +12805,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_r2_bucket_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/r2-bucket@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_r2_bucket_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/r2-bucket@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_r2_bucket_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod rate_limit { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub action: &'a Output, pub bypass_url_patterns: &'a Output, @@ -11498,7 +12842,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("action", &self.action) .field("bypass-url-patterns", &self.bypass_url_patterns) @@ -11524,7 +12871,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("action", &self.action) .field("bypass-url-patterns", &self.bypass_url_patterns) @@ -11553,8 +12903,7 @@ pub mod exports { arg9: i32, arg10: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11570,39 +12919,57 @@ pub mod exports { _rt::string_lift(bytes0), Args { action: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, bypass_url_patterns: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, correlate: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, description: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, disabled: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, match_: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, period: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, threshold: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, zone_id: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, }, @@ -11620,7 +12987,8 @@ pub mod exports { zone_id: zone_id12, } = result10; *ptr11.add(0).cast::() = (action12).take_handle() as i32; - *ptr11.add(4).cast::() = (bypass_url_patterns12).take_handle() as i32; + *ptr11.add(4).cast::() = (bypass_url_patterns12).take_handle() + as i32; *ptr11.add(8).cast::() = (correlate12).take_handle() as i32; *ptr11.add(12).cast::() = (description12).take_handle() as i32; *ptr11.add(16).cast::() = (disabled12).take_handle() as i32; @@ -11634,33 +13002,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_rate_limit_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/rate-limit@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) - } - };); -} + macro_rules! __export_pulumi_cloudflare_rate_limit_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/rate-limit@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_rate_limit_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 36], + ); } - #[allow(dead_code, clippy::all)] pub mod record { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub allow_overwrite: &'a Output, pub comment: &'a Output, @@ -11675,7 +13042,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("allow-overwrite", &self.allow_overwrite) .field("comment", &self.comment) @@ -11710,7 +13080,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("allow-overwrite", &self.allow_overwrite) .field("comment", &self.comment) @@ -11748,8 +13121,7 @@ pub mod exports { arg11: i32, arg12: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11767,47 +13139,69 @@ pub mod exports { _rt::string_lift(bytes0), Args { allow_overwrite: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, comment: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, data: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, priority: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, proxied: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, tags: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, ttl: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, type_: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, value: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, zone_id: { - handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg12 as u32); + handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg12 as u32, + ); &handle11 }, }, @@ -11831,7 +13225,8 @@ pub mod exports { value: value14, zone_id: zone_id14, } = result12; - *ptr13.add(0).cast::() = (allow_overwrite14).take_handle() as i32; + *ptr13.add(0).cast::() = (allow_overwrite14).take_handle() + as i32; *ptr13.add(4).cast::() = (comment14).take_handle() as i32; *ptr13.add(8).cast::() = (created_on14).take_handle() as i32; *ptr13.add(12).cast::() = (data14).take_handle() as i32; @@ -11853,40 +13248,43 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_record_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/record@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,arg12: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) - } - };); -} + macro_rules! __export_pulumi_cloudflare_record_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/record@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32, arg12 : + i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8, arg9, arg10, arg11, arg12) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_record_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 64]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 64]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 64], + ); } - #[allow(dead_code, clippy::all)] pub mod regional_hostname { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub hostname: &'a Output, pub region_key: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("hostname", &self.hostname) .field("region-key", &self.region_key) @@ -11901,7 +13299,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("created-on", &self.created_on) .field("hostname", &self.hostname) @@ -11919,8 +13320,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11930,15 +13330,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { hostname: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, region_key: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -11960,39 +13366,40 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_regional_hostname_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/regional-hostname@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_regional_hostname_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/regional-hostname@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_regional_hostname_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod regional_tiered_cache { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub value: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("value", &self.value) .field("zone-id", &self.zone_id) @@ -12004,7 +13411,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("value", &self.value) .field("zone-id", &self.zone_id) @@ -12019,8 +13429,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -12029,20 +13438,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { value: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, zone_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - value: value5, - zone_id: zone_id5, - } = result3; + let Res { value: value5, zone_id: zone_id5 } = result3; *ptr4.add(0).cast::() = (value5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 @@ -12051,33 +13461,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_regional_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/regional-tiered-cache@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_regional_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/regional-tiered-cache@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_regional_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod ruleset { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub description: &'a Output, @@ -12088,7 +13495,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("description", &self.description) @@ -12110,7 +13520,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("description", &self.description) @@ -12135,8 +13548,7 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -12150,31 +13562,45 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, description: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, kind: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, phase: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, rules: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, zone_id: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, }, @@ -12202,33 +13628,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/ruleset@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) - } - };); -} + macro_rules! __export_pulumi_cloudflare_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/ruleset@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 28], + ); } - #[allow(dead_code, clippy::all)] pub mod spectrum_application { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub argo_smart_routing: &'a Output, pub dns: &'a Output, @@ -12245,7 +13670,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("argo-smart-routing", &self.argo_smart_routing) .field("dns", &self.dns) @@ -12279,7 +13707,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("argo-smart-routing", &self.argo_smart_routing) .field("dns", &self.dns) @@ -12316,8 +13747,7 @@ pub mod exports { arg13: i32, arg14: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -12337,55 +13767,81 @@ pub mod exports { _rt::string_lift(bytes0), Args { argo_smart_routing: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, dns: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, edge_ips: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, ip_firewall: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, origin_directs: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, origin_dns: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, origin_port: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, origin_port_range: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, protocol: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, proxy_protocol: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, tls: { - handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg12 as u32); + handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg12 as u32, + ); &handle11 }, traffic_type: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg13 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg13 as u32, + ); &handle12 }, zone_id: { - handle13 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg14 as u32); + handle13 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg14 as u32, + ); &handle13 }, }, @@ -12406,16 +13862,20 @@ pub mod exports { traffic_type: traffic_type16, zone_id: zone_id16, } = result14; - *ptr15.add(0).cast::() = (argo_smart_routing16).take_handle() as i32; + *ptr15.add(0).cast::() = (argo_smart_routing16).take_handle() + as i32; *ptr15.add(4).cast::() = (dns16).take_handle() as i32; *ptr15.add(8).cast::() = (edge_ips16).take_handle() as i32; *ptr15.add(12).cast::() = (ip_firewall16).take_handle() as i32; - *ptr15.add(16).cast::() = (origin_directs16).take_handle() as i32; + *ptr15.add(16).cast::() = (origin_directs16).take_handle() + as i32; *ptr15.add(20).cast::() = (origin_dns16).take_handle() as i32; *ptr15.add(24).cast::() = (origin_port16).take_handle() as i32; - *ptr15.add(28).cast::() = (origin_port_range16).take_handle() as i32; + *ptr15.add(28).cast::() = (origin_port_range16).take_handle() + as i32; *ptr15.add(32).cast::() = (protocol16).take_handle() as i32; - *ptr15.add(36).cast::() = (proxy_protocol16).take_handle() as i32; + *ptr15.add(36).cast::() = (proxy_protocol16).take_handle() + as i32; *ptr15.add(40).cast::() = (tls16).take_handle() as i32; *ptr15.add(44).cast::() = (traffic_type16).take_handle() as i32; *ptr15.add(48).cast::() = (zone_id16).take_handle() as i32; @@ -12425,33 +13885,34 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_spectrum_application_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/spectrum-application@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,arg12: i32,arg13: i32,arg14: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14) - } - };); -} + macro_rules! __export_pulumi_cloudflare_spectrum_application_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/spectrum-application@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32, arg12 : + i32, arg13 : i32, arg14 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, + arg12, arg13, arg14) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_spectrum_application_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 52]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 52]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 52], + ); } - #[allow(dead_code, clippy::all)] pub mod split_tunnel { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub mode: &'a Output, @@ -12459,7 +13920,10 @@ pub mod exports { pub tunnels: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("mode", &self.mode) @@ -12475,7 +13939,10 @@ pub mod exports { pub tunnels: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("mode", &self.mode) @@ -12494,8 +13961,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -12506,19 +13972,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, mode: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, policy_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, tunnels: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -12540,33 +14014,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_split_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/split-tunnel@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_split_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/split-tunnel@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_split_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod static_route { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub colo_names: &'a Output, @@ -12578,7 +14050,10 @@ pub mod exports { pub weight: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("colo-names", &self.colo_names) @@ -12602,7 +14077,10 @@ pub mod exports { pub weight: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("colo-names", &self.colo_names) @@ -12629,8 +14107,7 @@ pub mod exports { arg8: i32, arg9: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -12645,35 +14122,51 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, colo_names: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, colo_regions: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, description: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, nexthop: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, prefix: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, priority: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, weight: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, }, @@ -12703,33 +14196,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_static_route_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/static-route@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) - } - };); -} + macro_rules! __export_pulumi_cloudflare_static_route_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/static-route@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_static_route_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 32], + ); } - #[allow(dead_code, clippy::all)] pub mod teams_account { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub activity_log_enabled: &'a Output, @@ -12748,14 +14240,20 @@ pub mod exports { pub url_browser_isolation_enabled: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("activity-log-enabled", &self.activity_log_enabled) .field("antivirus", &self.antivirus) .field("block-page", &self.block_page) .field("body-scanning", &self.body_scanning) - .field("extended-email-matching", &self.extended_email_matching) + .field( + "extended-email-matching", + &self.extended_email_matching, + ) .field("fips", &self.fips) .field("logging", &self.logging) .field( @@ -12795,14 +14293,20 @@ pub mod exports { pub url_browser_isolation_enabled: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("activity-log-enabled", &self.activity_log_enabled) .field("antivirus", &self.antivirus) .field("block-page", &self.block_page) .field("body-scanning", &self.body_scanning) - .field("extended-email-matching", &self.extended_email_matching) + .field( + "extended-email-matching", + &self.extended_email_matching, + ) .field("fips", &self.fips) .field("logging", &self.logging) .field( @@ -12827,8 +14331,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -12867,63 +14370,93 @@ pub mod exports { _rt::string_lift(bytes2), Args { account_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, activity_log_enabled: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, antivirus: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, block_page: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, body_scanning: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, extended_email_matching: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, fips: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, logging: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, non_identity_browser_isolation_enabled: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, payload_log: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, protocol_detection_enabled: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, proxy: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, ssh_session_log: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, tls_decrypt_enabled: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, url_browser_isolation_enabled: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, }, @@ -12939,8 +14472,7 @@ pub mod exports { extended_email_matching: extended_email_matching35, fips: fips35, logging: logging35, - non_identity_browser_isolation_enabled: - non_identity_browser_isolation_enabled35, + non_identity_browser_isolation_enabled: non_identity_browser_isolation_enabled35, payload_log: payload_log35, protocol_detection_enabled: protocol_detection_enabled35, proxy: proxy35, @@ -12949,56 +14481,57 @@ pub mod exports { url_browser_isolation_enabled: url_browser_isolation_enabled35, } = result33; *ptr34.add(0).cast::() = (account_id35).take_handle() as i32; - *ptr34.add(4).cast::() = (activity_log_enabled35).take_handle() as i32; + *ptr34.add(4).cast::() = (activity_log_enabled35).take_handle() + as i32; *ptr34.add(8).cast::() = (antivirus35).take_handle() as i32; *ptr34.add(12).cast::() = (block_page35).take_handle() as i32; - *ptr34.add(16).cast::() = (body_scanning35).take_handle() as i32; - *ptr34.add(20).cast::() = (extended_email_matching35).take_handle() as i32; + *ptr34.add(16).cast::() = (body_scanning35).take_handle() + as i32; + *ptr34.add(20).cast::() = (extended_email_matching35) + .take_handle() as i32; *ptr34.add(24).cast::() = (fips35).take_handle() as i32; *ptr34.add(28).cast::() = (logging35).take_handle() as i32; - *ptr34.add(32).cast::() = - (non_identity_browser_isolation_enabled35).take_handle() as i32; + *ptr34.add(32).cast::() = (non_identity_browser_isolation_enabled35) + .take_handle() as i32; *ptr34.add(36).cast::() = (payload_log35).take_handle() as i32; - *ptr34.add(40).cast::() = - (protocol_detection_enabled35).take_handle() as i32; + *ptr34.add(40).cast::() = (protocol_detection_enabled35) + .take_handle() as i32; *ptr34.add(44).cast::() = (proxy35).take_handle() as i32; - *ptr34.add(48).cast::() = (ssh_session_log35).take_handle() as i32; - *ptr34.add(52).cast::() = (tls_decrypt_enabled35).take_handle() as i32; - *ptr34.add(56).cast::() = - (url_browser_isolation_enabled35).take_handle() as i32; + *ptr34.add(48).cast::() = (ssh_session_log35).take_handle() + as i32; + *ptr34.add(52).cast::() = (tls_decrypt_enabled35).take_handle() + as i32; + *ptr34.add(56).cast::() = (url_browser_isolation_enabled35) + .take_handle() as i32; ptr34 } pub trait Guest { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_teams_account_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/teams-account@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); -} + macro_rules! __export_pulumi_cloudflare_teams_account_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/teams-account@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_teams_account_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 60]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 60]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 60], + ); } - #[allow(dead_code, clippy::all)] pub mod teams_list { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub description: &'a Output, @@ -13007,7 +14540,10 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("description", &self.description) @@ -13025,7 +14561,10 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("description", &self.description) @@ -13046,8 +14585,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -13059,23 +14597,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, description: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, items: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, type_: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -13099,33 +14647,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_teams_list_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/teams-list@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_teams_list_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/teams-list@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_teams_list_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod teams_location { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub client_default: &'a Output, @@ -13133,7 +14679,10 @@ pub mod exports { pub networks: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("client-default", &self.client_default) @@ -13154,10 +14703,16 @@ pub mod exports { pub policy_ids: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) - .field("anonymized-logs-enabled", &self.anonymized_logs_enabled) + .field( + "anonymized-logs-enabled", + &self.anonymized_logs_enabled, + ) .field("client-default", &self.client_default) .field("doh-subdomain", &self.doh_subdomain) .field("ip", &self.ip) @@ -13178,8 +14733,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -13190,19 +14744,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, client_default: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, networks: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -13220,11 +14782,13 @@ pub mod exports { policy_ids: policy_ids7, } = result5; *ptr6.add(0).cast::() = (account_id7).take_handle() as i32; - *ptr6.add(4).cast::() = (anonymized_logs_enabled7).take_handle() as i32; + *ptr6.add(4).cast::() = (anonymized_logs_enabled7).take_handle() + as i32; *ptr6.add(8).cast::() = (client_default7).take_handle() as i32; *ptr6.add(12).cast::() = (doh_subdomain7).take_handle() as i32; *ptr6.add(16).cast::() = (ip7).take_handle() as i32; - *ptr6.add(20).cast::() = (ipv4_destination7).take_handle() as i32; + *ptr6.add(20).cast::() = (ipv4_destination7).take_handle() + as i32; *ptr6.add(24).cast::() = (name7).take_handle() as i32; *ptr6.add(28).cast::() = (networks7).take_handle() as i32; *ptr6.add(32).cast::() = (policy_ids7).take_handle() as i32; @@ -13234,40 +14798,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_teams_location_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/teams-location@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_teams_location_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/teams-location@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_teams_location_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 36], + ); } - #[allow(dead_code, clippy::all)] pub mod teams_proxy_endpoint { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub ips: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("ips", &self.ips) @@ -13282,7 +14847,10 @@ pub mod exports { pub subdomain: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("ips", &self.ips) @@ -13300,8 +14868,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -13311,15 +14878,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, ips: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -13341,33 +14914,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_teams_proxy_endpoint_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/teams-proxy-endpoint@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_teams_proxy_endpoint_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/teams-proxy-endpoint@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_teams_proxy_endpoint_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod teams_rule { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub action: &'a Output, @@ -13382,7 +14953,10 @@ pub mod exports { pub traffic: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("action", &self.action) @@ -13413,7 +14987,10 @@ pub mod exports { pub version: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("action", &self.action) @@ -13447,8 +15024,7 @@ pub mod exports { arg11: i32, arg12: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -13466,47 +15042,69 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, action: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, description: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, device_posture: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, enabled: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, filters: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, identity: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, name: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, precedence: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, rule_settings: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, traffic: { - handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg12 as u32); + handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg12 as u32, + ); &handle11 }, }, @@ -13529,13 +15127,15 @@ pub mod exports { *ptr13.add(0).cast::() = (account_id14).take_handle() as i32; *ptr13.add(4).cast::() = (action14).take_handle() as i32; *ptr13.add(8).cast::() = (description14).take_handle() as i32; - *ptr13.add(12).cast::() = (device_posture14).take_handle() as i32; + *ptr13.add(12).cast::() = (device_posture14).take_handle() + as i32; *ptr13.add(16).cast::() = (enabled14).take_handle() as i32; *ptr13.add(20).cast::() = (filters14).take_handle() as i32; *ptr13.add(24).cast::() = (identity14).take_handle() as i32; *ptr13.add(28).cast::() = (name14).take_handle() as i32; *ptr13.add(32).cast::() = (precedence14).take_handle() as i32; - *ptr13.add(36).cast::() = (rule_settings14).take_handle() as i32; + *ptr13.add(36).cast::() = (rule_settings14).take_handle() + as i32; *ptr13.add(40).cast::() = (traffic14).take_handle() as i32; *ptr13.add(44).cast::() = (version14).take_handle() as i32; ptr13 @@ -13544,39 +15144,42 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_teams_rule_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/teams-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,arg12: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) - } - };); -} + macro_rules! __export_pulumi_cloudflare_teams_rule_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/teams-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32, arg12 : + i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8, arg9, arg10, arg11, arg12) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_teams_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 48]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 48]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 48], + ); } - #[allow(dead_code, clippy::all)] pub mod tiered_cache { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub cache_type: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("cache-type", &self.cache_type) .field("zone-id", &self.zone_id) @@ -13588,7 +15191,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("cache-type", &self.cache_type) .field("zone-id", &self.zone_id) @@ -13603,8 +15209,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -13613,20 +15218,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { cache_type: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, zone_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - cache_type: cache_type5, - zone_id: zone_id5, - } = result3; + let Res { cache_type: cache_type5, zone_id: zone_id5 } = result3; *ptr4.add(0).cast::() = (cache_type5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 @@ -13635,40 +15241,40 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/tiered-cache@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/tiered-cache@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod total_tls { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub certificate_authority: &'a Output, pub enabled: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("certificate-authority", &self.certificate_authority) .field("enabled", &self.enabled) @@ -13682,7 +15288,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("certificate-authority", &self.certificate_authority) .field("enabled", &self.enabled) @@ -13699,8 +15308,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -13710,15 +15318,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { certificate_authority: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, enabled: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -13729,7 +15343,8 @@ pub mod exports { enabled: enabled6, zone_id: zone_id6, } = result4; - *ptr5.add(0).cast::() = (certificate_authority6).take_handle() as i32; + *ptr5.add(0).cast::() = (certificate_authority6).take_handle() + as i32; *ptr5.add(4).cast::() = (enabled6).take_handle() as i32; *ptr5.add(8).cast::() = (zone_id6).take_handle() as i32; ptr5 @@ -13738,33 +15353,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_total_tls_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/total-tls@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_total_tls_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/total-tls@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_total_tls_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod tunnel { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub config_src: &'a Output, @@ -13772,7 +15385,10 @@ pub mod exports { pub secret: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("config-src", &self.config_src) @@ -13790,7 +15406,10 @@ pub mod exports { pub tunnel_token: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("cname", &self.cname) @@ -13811,8 +15430,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -13823,19 +15441,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, config_src: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, secret: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -13861,40 +15487,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/tunnel@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/tunnel@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod tunnel_config { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub config: &'a Output, pub tunnel_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("config", &self.config) @@ -13908,7 +15535,10 @@ pub mod exports { pub tunnel_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("config", &self.config) @@ -13925,8 +15555,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -13936,15 +15565,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, config: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, tunnel_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -13964,33 +15599,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_tunnel_config_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/tunnel-config@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_tunnel_config_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/tunnel-config@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_tunnel_config_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod tunnel_route { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub comment: &'a Output, @@ -13999,7 +15632,10 @@ pub mod exports { pub virtual_network_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("comment", &self.comment) @@ -14017,7 +15653,10 @@ pub mod exports { pub virtual_network_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("comment", &self.comment) @@ -14038,8 +15677,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -14051,23 +15689,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, comment: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, network: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, tunnel_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, virtual_network_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -14084,40 +15732,39 @@ pub mod exports { *ptr7.add(4).cast::() = (comment8).take_handle() as i32; *ptr7.add(8).cast::() = (network8).take_handle() as i32; *ptr7.add(12).cast::() = (tunnel_id8).take_handle() as i32; - *ptr7.add(16).cast::() = (virtual_network_id8).take_handle() as i32; + *ptr7.add(16).cast::() = (virtual_network_id8).take_handle() + as i32; ptr7 } pub trait Guest { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_tunnel_route_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/tunnel-route@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_tunnel_route_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/tunnel-route@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_tunnel_route_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod tunnel_virtual_network { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub comment: &'a Output, @@ -14125,7 +15772,10 @@ pub mod exports { pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("comment", &self.comment) @@ -14141,7 +15791,10 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("comment", &self.comment) @@ -14160,8 +15813,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -14172,19 +15824,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, comment: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, is_default_network: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -14198,7 +15858,8 @@ pub mod exports { } = result5; *ptr6.add(0).cast::() = (account_id7).take_handle() as i32; *ptr6.add(4).cast::() = (comment7).take_handle() as i32; - *ptr6.add(8).cast::() = (is_default_network7).take_handle() as i32; + *ptr6.add(8).cast::() = (is_default_network7).take_handle() + as i32; *ptr6.add(12).cast::() = (name7).take_handle() as i32; ptr6 } @@ -14206,33 +15867,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_tunnel_virtual_network_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/tunnel-virtual-network@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_tunnel_virtual_network_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/tunnel-virtual-network@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_tunnel_virtual_network_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod turnstile_widget { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub bot_fight_mode: &'a Output, @@ -14243,7 +15902,10 @@ pub mod exports { pub region: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("bot-fight-mode", &self.bot_fight_mode) @@ -14266,7 +15928,10 @@ pub mod exports { pub secret: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("bot-fight-mode", &self.bot_fight_mode) @@ -14292,8 +15957,7 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -14307,31 +15971,45 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, bot_fight_mode: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, domains: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, mode: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, name: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, offlabel: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, region: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, }, @@ -14361,40 +16039,42 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_turnstile_widget_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/turnstile-widget@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) - } - };); -} + macro_rules! __export_pulumi_cloudflare_turnstile_widget_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/turnstile-widget@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_turnstile_widget_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 32], + ); } - #[allow(dead_code, clippy::all)] pub mod url_normalization_settings { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub scope: &'a Output, pub type_: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("scope", &self.scope) .field("type", &self.type_) @@ -14408,7 +16088,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("scope", &self.scope) .field("type", &self.type_) @@ -14425,8 +16108,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -14436,25 +16118,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { scope: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, type_: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, ); let ptr5 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - scope: scope6, - type_: type_6, - zone_id: zone_id6, - } = result4; + let Res { scope: scope6, type_: type_6, zone_id: zone_id6 } = result4; *ptr5.add(0).cast::() = (scope6).take_handle() as i32; *ptr5.add(4).cast::() = (type_6).take_handle() as i32; *ptr5.add(8).cast::() = (zone_id6).take_handle() as i32; @@ -14464,33 +16148,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_url_normalization_settings_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/url-normalization-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_url_normalization_settings_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/url-normalization-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_url_normalization_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod user_agent_blocking_rule { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub configuration: &'a Output, pub description: &'a Output, @@ -14499,7 +16181,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("configuration", &self.configuration) .field("description", &self.description) @@ -14517,7 +16202,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("configuration", &self.configuration) .field("description", &self.description) @@ -14538,8 +16226,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -14551,23 +16238,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { configuration: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, description: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, mode: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, paused: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, zone_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -14591,33 +16288,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_user_agent_blocking_rule_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/user-agent-blocking-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_user_agent_blocking_rule_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/user-agent-blocking-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_user_agent_blocking_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod waiting_room { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub additional_routes: &'a Output, pub cookie_suffix: &'a Output, @@ -14639,14 +16334,23 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("additional-routes", &self.additional_routes) .field("cookie-suffix", &self.cookie_suffix) .field("custom-page-html", &self.custom_page_html) - .field("default-template-language", &self.default_template_language) + .field( + "default-template-language", + &self.default_template_language, + ) .field("description", &self.description) - .field("disable-session-renewal", &self.disable_session_renewal) + .field( + "disable-session-renewal", + &self.disable_session_renewal, + ) .field("host", &self.host) .field("json-response-enabled", &self.json_response_enabled) .field("name", &self.name) @@ -14683,14 +16387,23 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("additional-routes", &self.additional_routes) .field("cookie-suffix", &self.cookie_suffix) .field("custom-page-html", &self.custom_page_html) - .field("default-template-language", &self.default_template_language) + .field( + "default-template-language", + &self.default_template_language, + ) .field("description", &self.description) - .field("disable-session-renewal", &self.disable_session_renewal) + .field( + "disable-session-renewal", + &self.disable_session_renewal, + ) .field("host", &self.host) .field("json-response-enabled", &self.json_response_enabled) .field("name", &self.name) @@ -14709,8 +16422,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -14755,75 +16467,111 @@ pub mod exports { _rt::string_lift(bytes2), Args { additional_routes: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, cookie_suffix: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, custom_page_html: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, default_template_language: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, description: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, disable_session_renewal: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, host: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, json_response_enabled: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, name: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, new_users_per_minute: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, path: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, queue_all: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, queueing_method: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, queueing_status_code: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, session_duration: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, suspended: { - handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l33 as u32); + handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l33 as u32, + ); &handle34 }, total_active_users: { - handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l35 as u32); + handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l35 as u32, + ); &handle36 }, zone_id: { - handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l37 as u32); + handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l37 as u32, + ); &handle38 }, }, @@ -14850,24 +16598,33 @@ pub mod exports { total_active_users: total_active_users41, zone_id: zone_id41, } = result39; - *ptr40.add(0).cast::() = (additional_routes41).take_handle() as i32; + *ptr40.add(0).cast::() = (additional_routes41).take_handle() + as i32; *ptr40.add(4).cast::() = (cookie_suffix41).take_handle() as i32; - *ptr40.add(8).cast::() = (custom_page_html41).take_handle() as i32; - *ptr40.add(12).cast::() = - (default_template_language41).take_handle() as i32; + *ptr40.add(8).cast::() = (custom_page_html41).take_handle() + as i32; + *ptr40.add(12).cast::() = (default_template_language41) + .take_handle() as i32; *ptr40.add(16).cast::() = (description41).take_handle() as i32; - *ptr40.add(20).cast::() = (disable_session_renewal41).take_handle() as i32; + *ptr40.add(20).cast::() = (disable_session_renewal41) + .take_handle() as i32; *ptr40.add(24).cast::() = (host41).take_handle() as i32; - *ptr40.add(28).cast::() = (json_response_enabled41).take_handle() as i32; + *ptr40.add(28).cast::() = (json_response_enabled41) + .take_handle() as i32; *ptr40.add(32).cast::() = (name41).take_handle() as i32; - *ptr40.add(36).cast::() = (new_users_per_minute41).take_handle() as i32; + *ptr40.add(36).cast::() = (new_users_per_minute41).take_handle() + as i32; *ptr40.add(40).cast::() = (path41).take_handle() as i32; *ptr40.add(44).cast::() = (queue_all41).take_handle() as i32; - *ptr40.add(48).cast::() = (queueing_method41).take_handle() as i32; - *ptr40.add(52).cast::() = (queueing_status_code41).take_handle() as i32; - *ptr40.add(56).cast::() = (session_duration41).take_handle() as i32; + *ptr40.add(48).cast::() = (queueing_method41).take_handle() + as i32; + *ptr40.add(52).cast::() = (queueing_status_code41).take_handle() + as i32; + *ptr40.add(56).cast::() = (session_duration41).take_handle() + as i32; *ptr40.add(60).cast::() = (suspended41).take_handle() as i32; - *ptr40.add(64).cast::() = (total_active_users41).take_handle() as i32; + *ptr40.add(64).cast::() = (total_active_users41).take_handle() + as i32; *ptr40.add(68).cast::() = (zone_id41).take_handle() as i32; ptr40 } @@ -14875,33 +16632,29 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_waiting_room_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/waiting-room@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); -} + macro_rules! __export_pulumi_cloudflare_waiting_room_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/waiting-room@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_waiting_room_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 72]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 72]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 72], + ); } - #[allow(dead_code, clippy::all)] pub mod waiting_room_event { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub custom_page_html: &'a Output, pub description: &'a Output, @@ -14920,11 +16673,17 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("custom-page-html", &self.custom_page_html) .field("description", &self.description) - .field("disable-session-renewal", &self.disable_session_renewal) + .field( + "disable-session-renewal", + &self.disable_session_renewal, + ) .field("event-end-time", &self.event_end_time) .field("event-start-time", &self.event_start_time) .field("name", &self.name) @@ -14932,7 +16691,10 @@ pub mod exports { .field("prequeue-start-time", &self.prequeue_start_time) .field("queueing-method", &self.queueing_method) .field("session-duration", &self.session_duration) - .field("shuffle-at-event-start", &self.shuffle_at_event_start) + .field( + "shuffle-at-event-start", + &self.shuffle_at_event_start, + ) .field("suspended", &self.suspended) .field("total-active-users", &self.total_active_users) .field("waiting-room-id", &self.waiting_room_id) @@ -14960,12 +16722,18 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("created-on", &self.created_on) .field("custom-page-html", &self.custom_page_html) .field("description", &self.description) - .field("disable-session-renewal", &self.disable_session_renewal) + .field( + "disable-session-renewal", + &self.disable_session_renewal, + ) .field("event-end-time", &self.event_end_time) .field("event-start-time", &self.event_start_time) .field("modified-on", &self.modified_on) @@ -14974,7 +16742,10 @@ pub mod exports { .field("prequeue-start-time", &self.prequeue_start_time) .field("queueing-method", &self.queueing_method) .field("session-duration", &self.session_duration) - .field("shuffle-at-event-start", &self.shuffle_at_event_start) + .field( + "shuffle-at-event-start", + &self.shuffle_at_event_start, + ) .field("suspended", &self.suspended) .field("total-active-users", &self.total_active_users) .field("waiting-room-id", &self.waiting_room_id) @@ -14985,8 +16756,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -15025,63 +16795,93 @@ pub mod exports { _rt::string_lift(bytes2), Args { custom_page_html: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, description: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, disable_session_renewal: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, event_end_time: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, event_start_time: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, name: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, new_users_per_minute: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, prequeue_start_time: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, queueing_method: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, session_duration: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, shuffle_at_event_start: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, suspended: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, total_active_users: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, waiting_room_id: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, zone_id: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, }, @@ -15108,21 +16908,32 @@ pub mod exports { zone_id: zone_id35, } = result33; *ptr34.add(0).cast::() = (created_on35).take_handle() as i32; - *ptr34.add(4).cast::() = (custom_page_html35).take_handle() as i32; + *ptr34.add(4).cast::() = (custom_page_html35).take_handle() + as i32; *ptr34.add(8).cast::() = (description35).take_handle() as i32; - *ptr34.add(12).cast::() = (disable_session_renewal35).take_handle() as i32; - *ptr34.add(16).cast::() = (event_end_time35).take_handle() as i32; - *ptr34.add(20).cast::() = (event_start_time35).take_handle() as i32; + *ptr34.add(12).cast::() = (disable_session_renewal35) + .take_handle() as i32; + *ptr34.add(16).cast::() = (event_end_time35).take_handle() + as i32; + *ptr34.add(20).cast::() = (event_start_time35).take_handle() + as i32; *ptr34.add(24).cast::() = (modified_on35).take_handle() as i32; *ptr34.add(28).cast::() = (name35).take_handle() as i32; - *ptr34.add(32).cast::() = (new_users_per_minute35).take_handle() as i32; - *ptr34.add(36).cast::() = (prequeue_start_time35).take_handle() as i32; - *ptr34.add(40).cast::() = (queueing_method35).take_handle() as i32; - *ptr34.add(44).cast::() = (session_duration35).take_handle() as i32; - *ptr34.add(48).cast::() = (shuffle_at_event_start35).take_handle() as i32; + *ptr34.add(32).cast::() = (new_users_per_minute35).take_handle() + as i32; + *ptr34.add(36).cast::() = (prequeue_start_time35).take_handle() + as i32; + *ptr34.add(40).cast::() = (queueing_method35).take_handle() + as i32; + *ptr34.add(44).cast::() = (session_duration35).take_handle() + as i32; + *ptr34.add(48).cast::() = (shuffle_at_event_start35) + .take_handle() as i32; *ptr34.add(52).cast::() = (suspended35).take_handle() as i32; - *ptr34.add(56).cast::() = (total_active_users35).take_handle() as i32; - *ptr34.add(60).cast::() = (waiting_room_id35).take_handle() as i32; + *ptr34.add(56).cast::() = (total_active_users35).take_handle() + as i32; + *ptr34.add(60).cast::() = (waiting_room_id35).take_handle() + as i32; *ptr34.add(64).cast::() = (zone_id35).take_handle() as i32; ptr34 } @@ -15130,40 +16941,39 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_waiting_room_event_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/waiting-room-event@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); -} + macro_rules! __export_pulumi_cloudflare_waiting_room_event_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/waiting-room-event@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_waiting_room_event_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 68]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 68]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 68], + ); } - #[allow(dead_code, clippy::all)] pub mod waiting_room_rules { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub rules: &'a Output, pub waiting_room_id: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("rules", &self.rules) .field("waiting-room-id", &self.waiting_room_id) @@ -15177,7 +16987,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("rules", &self.rules) .field("waiting-room-id", &self.waiting_room_id) @@ -15194,8 +17007,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15205,15 +17017,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { rules: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, waiting_room_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -15233,39 +17051,40 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_waiting_room_rules_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/waiting-room-rules@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_waiting_room_rules_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/waiting-room-rules@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_waiting_room_rules_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod waiting_room_settings { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub search_engine_crawler_bypass: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field( "search-engine-crawler-bypass", @@ -15280,7 +17099,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field( "search-engine-crawler-bypass", @@ -15298,8 +17120,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -15308,11 +17129,15 @@ pub mod exports { _rt::string_lift(bytes0), Args { search_engine_crawler_bypass: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, zone_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, @@ -15322,8 +17147,8 @@ pub mod exports { search_engine_crawler_bypass: search_engine_crawler_bypass5, zone_id: zone_id5, } = result3; - *ptr4.add(0).cast::() = - (search_engine_crawler_bypass5).take_handle() as i32; + *ptr4.add(0).cast::() = (search_engine_crawler_bypass5) + .take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 } @@ -15331,33 +17156,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_waiting_room_settings_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/waiting-room-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_waiting_room_settings_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/waiting-room-settings@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_waiting_room_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod web3_hostname { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub description: &'a Output, pub dnslink: &'a Output, @@ -15366,7 +17188,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("description", &self.description) .field("dnslink", &self.dnslink) @@ -15387,7 +17212,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("created-on", &self.created_on) .field("description", &self.description) @@ -15411,8 +17239,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15424,23 +17251,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { description: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, dnslink: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, target: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, zone_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -15470,33 +17307,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_web3_hostname_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/web3-hostname@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_web3_hostname_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/web3-hostname@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_web3_hostname_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 32], + ); } - #[allow(dead_code, clippy::all)] pub mod web_analytics_rule { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub host: &'a Output, @@ -15506,7 +17341,10 @@ pub mod exports { pub ruleset_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("host", &self.host) @@ -15526,7 +17364,10 @@ pub mod exports { pub ruleset_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("host", &self.host) @@ -15549,8 +17390,7 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15563,27 +17403,39 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, host: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, inclusive: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, is_paused: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, paths: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, ruleset_id: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, }, @@ -15609,33 +17461,32 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_web_analytics_rule_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/web-analytics-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - };); -} + macro_rules! __export_pulumi_cloudflare_web_analytics_rule_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/web-analytics-rule@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_web_analytics_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod web_analytics_site { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub auto_install: &'a Output, @@ -15643,7 +17494,10 @@ pub mod exports { pub zone_tag: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("auto-install", &self.auto_install) @@ -15663,7 +17517,10 @@ pub mod exports { pub zone_tag: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("auto-install", &self.auto_install) @@ -15686,8 +17543,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15698,19 +17554,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, auto_install: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, host: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, zone_tag: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -15740,40 +17604,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_web_analytics_site_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/web-analytics-site@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_web_analytics_site_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/web-analytics-site@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_web_analytics_site_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 32], + ); } - #[allow(dead_code, clippy::all)] pub mod worker_cron_trigger { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub schedules: &'a Output, pub script_name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("schedules", &self.schedules) @@ -15787,7 +17652,10 @@ pub mod exports { pub script_name: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("schedules", &self.schedules) @@ -15804,8 +17672,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15815,15 +17682,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, schedules: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, script_name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -15843,33 +17716,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_worker_cron_trigger_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/worker-cron-trigger@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_worker_cron_trigger_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/worker-cron-trigger@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_worker_cron_trigger_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod worker_domain { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub environment: &'a Output, @@ -15878,7 +17749,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("environment", &self.environment) @@ -15896,7 +17770,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("environment", &self.environment) @@ -15917,8 +17794,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15930,23 +17806,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, environment: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, hostname: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, service: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, zone_id: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -15970,40 +17856,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_worker_domain_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/worker-domain@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); -} + macro_rules! __export_pulumi_cloudflare_worker_domain_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/worker-domain@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_worker_domain_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod worker_route { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub pattern: &'a Output, pub script_name: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("pattern", &self.pattern) .field("script-name", &self.script_name) @@ -16017,7 +17904,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("pattern", &self.pattern) .field("script-name", &self.script_name) @@ -16034,8 +17924,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -16045,15 +17934,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { pattern: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, script_name: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, zone_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -16073,33 +17968,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_worker_route_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/worker-route@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_cloudflare_worker_route_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/worker-route@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_worker_route_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod worker_script { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub analytics_engine_bindings: &'a Output, @@ -16122,10 +18015,16 @@ pub mod exports { pub webassembly_bindings: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) - .field("analytics-engine-bindings", &self.analytics_engine_bindings) + .field( + "analytics-engine-bindings", + &self.analytics_engine_bindings, + ) .field("compatibility-date", &self.compatibility_date) .field("compatibility-flags", &self.compatibility_flags) .field("content", &self.content) @@ -16168,10 +18067,16 @@ pub mod exports { pub webassembly_bindings: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) - .field("analytics-engine-bindings", &self.analytics_engine_bindings) + .field( + "analytics-engine-bindings", + &self.analytics_engine_bindings, + ) .field("compatibility-date", &self.compatibility_date) .field("compatibility-flags", &self.compatibility_flags) .field("content", &self.content) @@ -16195,8 +18100,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -16243,79 +18147,117 @@ pub mod exports { _rt::string_lift(bytes2), Args { account_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, analytics_engine_bindings: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, compatibility_date: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, compatibility_flags: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, content: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, d1_database_bindings: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, dispatch_namespace: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, kv_namespace_bindings: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, logpush: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, module: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, name: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, placements: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, plain_text_bindings: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, queue_bindings: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, r2_bucket_bindings: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, secret_text_bindings: { - handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l33 as u32); + handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l33 as u32, + ); &handle34 }, service_bindings: { - handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l35 as u32); + handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l35 as u32, + ); &handle36 }, tags: { - handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l37 as u32); + handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l37 as u32, + ); &handle38 }, webassembly_bindings: { - handle40 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l39 as u32); + handle40 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l39 as u32, + ); &handle40 }, }, @@ -16344,58 +18286,65 @@ pub mod exports { webassembly_bindings: webassembly_bindings43, } = result41; *ptr42.add(0).cast::() = (account_id43).take_handle() as i32; - *ptr42.add(4).cast::() = - (analytics_engine_bindings43).take_handle() as i32; - *ptr42.add(8).cast::() = (compatibility_date43).take_handle() as i32; - *ptr42.add(12).cast::() = (compatibility_flags43).take_handle() as i32; + *ptr42.add(4).cast::() = (analytics_engine_bindings43) + .take_handle() as i32; + *ptr42.add(8).cast::() = (compatibility_date43).take_handle() + as i32; + *ptr42.add(12).cast::() = (compatibility_flags43).take_handle() + as i32; *ptr42.add(16).cast::() = (content43).take_handle() as i32; - *ptr42.add(20).cast::() = (d1_database_bindings43).take_handle() as i32; - *ptr42.add(24).cast::() = (dispatch_namespace43).take_handle() as i32; - *ptr42.add(28).cast::() = (kv_namespace_bindings43).take_handle() as i32; + *ptr42.add(20).cast::() = (d1_database_bindings43).take_handle() + as i32; + *ptr42.add(24).cast::() = (dispatch_namespace43).take_handle() + as i32; + *ptr42.add(28).cast::() = (kv_namespace_bindings43) + .take_handle() as i32; *ptr42.add(32).cast::() = (logpush43).take_handle() as i32; *ptr42.add(36).cast::() = (module43).take_handle() as i32; *ptr42.add(40).cast::() = (name43).take_handle() as i32; *ptr42.add(44).cast::() = (placements43).take_handle() as i32; - *ptr42.add(48).cast::() = (plain_text_bindings43).take_handle() as i32; - *ptr42.add(52).cast::() = (queue_bindings43).take_handle() as i32; - *ptr42.add(56).cast::() = (r2_bucket_bindings43).take_handle() as i32; - *ptr42.add(60).cast::() = (secret_text_bindings43).take_handle() as i32; - *ptr42.add(64).cast::() = (service_bindings43).take_handle() as i32; + *ptr42.add(48).cast::() = (plain_text_bindings43).take_handle() + as i32; + *ptr42.add(52).cast::() = (queue_bindings43).take_handle() + as i32; + *ptr42.add(56).cast::() = (r2_bucket_bindings43).take_handle() + as i32; + *ptr42.add(60).cast::() = (secret_text_bindings43).take_handle() + as i32; + *ptr42.add(64).cast::() = (service_bindings43).take_handle() + as i32; *ptr42.add(68).cast::() = (tags43).take_handle() as i32; - *ptr42.add(72).cast::() = (webassembly_bindings43).take_handle() as i32; + *ptr42.add(72).cast::() = (webassembly_bindings43).take_handle() + as i32; ptr42 } pub trait Guest { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_worker_script_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/worker-script@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); -} + macro_rules! __export_pulumi_cloudflare_worker_script_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/worker-script@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_worker_script_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 76]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 76]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 76], + ); } - #[allow(dead_code, clippy::all)] pub mod worker_secret { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub name: &'a Output, @@ -16403,7 +18352,10 @@ pub mod exports { pub secret_text: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("name", &self.name) @@ -16419,7 +18371,10 @@ pub mod exports { pub secret_text: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("name", &self.name) @@ -16438,8 +18393,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -16450,19 +18404,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, name: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, script_name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, secret_text: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -16484,39 +18446,40 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_worker_secret_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/worker-secret@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_worker_secret_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/worker-secret@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_worker_secret_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod workers_for_platforms_namespace { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("name", &self.name) @@ -16528,7 +18491,10 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("name", &self.name) @@ -16543,8 +18509,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -16553,20 +18518,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, name: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - account_id: account_id5, - name: name5, - } = result3; + let Res { account_id: account_id5, name: name5 } = result3; *ptr4.add(0).cast::() = (account_id5).take_handle() as i32; *ptr4.add(4).cast::() = (name5).take_handle() as i32; ptr4 @@ -16575,33 +18541,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_workers_for_platforms_namespace_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/workers-for-platforms-namespace@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_workers_for_platforms_namespace_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/workers-for-platforms-namespace@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_workers_for_platforms_namespace_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod workers_kv { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub key: &'a Output, @@ -16609,7 +18572,10 @@ pub mod exports { pub value: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("key", &self.key) @@ -16625,7 +18591,10 @@ pub mod exports { pub value: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("key", &self.key) @@ -16644,8 +18613,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -16656,19 +18624,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, key: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, namespace_id: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, value: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -16690,39 +18666,40 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_workers_kv_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/workers-kv@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_workers_kv_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/workers-kv@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_workers_kv_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod workers_kv_namespace { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub title: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("title", &self.title) @@ -16734,7 +18711,10 @@ pub mod exports { pub title: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("title", &self.title) @@ -16749,8 +18729,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -16759,20 +18738,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, title: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - account_id: account_id5, - title: title5, - } = result3; + let Res { account_id: account_id5, title: title5 } = result3; *ptr4.add(0).cast::() = (account_id5).take_handle() as i32; *ptr4.add(4).cast::() = (title5).take_handle() as i32; ptr4 @@ -16781,33 +18761,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_workers_kv_namespace_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/workers-kv-namespace@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_workers_kv_namespace_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/workers-kv-namespace@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_workers_kv_namespace_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod zone { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub jump_start: &'a Output, @@ -16817,7 +18794,10 @@ pub mod exports { pub zone: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("jump-start", &self.jump_start) @@ -16842,7 +18822,10 @@ pub mod exports { pub zone: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("jump-start", &self.jump_start) @@ -16870,8 +18853,7 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -16884,27 +18866,39 @@ pub mod exports { _rt::string_lift(bytes0), Args { account_id: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, jump_start: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, paused: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, plan: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, type_: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, zone: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, }, @@ -16931,8 +18925,10 @@ pub mod exports { *ptr8.add(20).cast::() = (plan9).take_handle() as i32; *ptr8.add(24).cast::() = (status9).take_handle() as i32; *ptr8.add(28).cast::() = (type_9).take_handle() as i32; - *ptr8.add(32).cast::() = (vanity_name_servers9).take_handle() as i32; - *ptr8.add(36).cast::() = (verification_key9).take_handle() as i32; + *ptr8.add(32).cast::() = (vanity_name_servers9).take_handle() + as i32; + *ptr8.add(36).cast::() = (verification_key9).take_handle() + as i32; *ptr8.add(40).cast::() = (zone9).take_handle() as i32; ptr8 } @@ -16940,39 +18936,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_zone_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/zone@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - };); -} + macro_rules! __export_pulumi_cloudflare_zone_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/zone@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_zone_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 44]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 44]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 44], + ); } - #[allow(dead_code, clippy::all)] pub mod zone_cache_reserve { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub enabled: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -16984,7 +18982,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -16999,8 +19000,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -17009,20 +19009,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { enabled: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, zone_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - enabled: enabled5, - zone_id: zone_id5, - } = result3; + let Res { enabled: enabled5, zone_id: zone_id5 } = result3; *ptr4.add(0).cast::() = (enabled5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 @@ -17031,33 +19032,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_zone_cache_reserve_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/zone-cache-reserve@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_zone_cache_reserve_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/zone-cache-reserve@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_zone_cache_reserve_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod zone_cache_variants { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub avifs: &'a Output, pub bmps: &'a Output, @@ -17073,7 +19071,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("avifs", &self.avifs) .field("bmps", &self.bmps) @@ -17105,7 +19106,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("avifs", &self.avifs) .field("bmps", &self.bmps) @@ -17140,8 +19144,7 @@ pub mod exports { arg12: i32, arg13: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -17160,51 +19163,75 @@ pub mod exports { _rt::string_lift(bytes0), Args { avifs: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, bmps: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, gifs: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, jp2s: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, jpegs: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, jpg2s: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, jpgs: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, pngs: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, tiffs: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, tifs: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, webps: { - handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg12 as u32); + handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg12 as u32, + ); &handle11 }, zone_id: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg13 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg13 as u32, + ); &handle12 }, }, @@ -17242,39 +19269,42 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_zone_cache_variants_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/zone-cache-variants@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,arg12: i32,arg13: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) - } - };); -} + macro_rules! __export_pulumi_cloudflare_zone_cache_variants_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/zone-cache-variants@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32, arg12 : + i32, arg13 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_zone_cache_variants_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 48]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 48]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 48], + ); } - #[allow(dead_code, clippy::all)] pub mod zone_dnssec { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub modified_on: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("modified-on", &self.modified_on) .field("zone-id", &self.zone_id) @@ -17296,7 +19326,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("algorithm", &self.algorithm) .field("digest", &self.digest) @@ -17321,8 +19354,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -17331,11 +19363,15 @@ pub mod exports { _rt::string_lift(bytes0), Args { modified_on: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, zone_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, @@ -17357,7 +19393,8 @@ pub mod exports { } = result3; *ptr4.add(0).cast::() = (algorithm5).take_handle() as i32; *ptr4.add(4).cast::() = (digest5).take_handle() as i32; - *ptr4.add(8).cast::() = (digest_algorithm5).take_handle() as i32; + *ptr4.add(8).cast::() = (digest_algorithm5).take_handle() + as i32; *ptr4.add(12).cast::() = (digest_type5).take_handle() as i32; *ptr4.add(16).cast::() = (ds5).take_handle() as i32; *ptr4.add(20).cast::() = (flags5).take_handle() as i32; @@ -17373,33 +19410,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_zone_dnssec_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/zone-dnssec@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_zone_dnssec_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/zone-dnssec@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_zone_dnssec_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 48]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 48]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 48], + ); } - #[allow(dead_code, clippy::all)] pub mod zone_hold { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub hold: &'a Output, pub hold_after: &'a Output, @@ -17407,7 +19441,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("hold", &self.hold) .field("hold-after", &self.hold_after) @@ -17423,7 +19460,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("hold", &self.hold) .field("hold-after", &self.hold_after) @@ -17442,8 +19482,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -17454,19 +19493,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { hold: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, hold_after: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, include_subdomains: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, zone_id: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -17480,7 +19527,8 @@ pub mod exports { } = result5; *ptr6.add(0).cast::() = (hold7).take_handle() as i32; *ptr6.add(4).cast::() = (hold_after7).take_handle() as i32; - *ptr6.add(8).cast::() = (include_subdomains7).take_handle() as i32; + *ptr6.add(8).cast::() = (include_subdomains7).take_handle() + as i32; *ptr6.add(12).cast::() = (zone_id7).take_handle() as i32; ptr6 } @@ -17488,33 +19536,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_zone_hold_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/zone-hold@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_cloudflare_zone_hold_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/zone-hold@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_zone_hold_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod zone_lockdown { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub configurations: &'a Output, pub description: &'a Output, @@ -17524,7 +19570,10 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("configurations", &self.configurations) .field("description", &self.description) @@ -17544,7 +19593,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("configurations", &self.configurations) .field("description", &self.description) @@ -17567,8 +19619,7 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -17581,27 +19632,39 @@ pub mod exports { _rt::string_lift(bytes0), Args { configurations: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, description: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, paused: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, priority: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, urls: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, zone_id: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, }, @@ -17627,39 +19690,41 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_zone_lockdown_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/zone-lockdown@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - };); -} + macro_rules! __export_pulumi_cloudflare_zone_lockdown_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/zone-lockdown@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_zone_lockdown_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 24], + ); } - #[allow(dead_code, clippy::all)] pub mod zone_settings_override { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub settings: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("settings", &self.settings) .field("zone-id", &self.zone_id) @@ -17676,10 +19741,16 @@ pub mod exports { pub zone_type: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("initial-settings", &self.initial_settings) - .field("initial-settings-read-at", &self.initial_settings_read_at) + .field( + "initial-settings-read-at", + &self.initial_settings_read_at, + ) .field("readonly-settings", &self.readonly_settings) .field("settings", &self.settings) .field("zone-id", &self.zone_id) @@ -17696,8 +19767,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -17706,11 +19776,15 @@ pub mod exports { _rt::string_lift(bytes0), Args { settings: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, zone_id: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, @@ -17725,9 +19799,12 @@ pub mod exports { zone_status: zone_status5, zone_type: zone_type5, } = result3; - *ptr4.add(0).cast::() = (initial_settings5).take_handle() as i32; - *ptr4.add(4).cast::() = (initial_settings_read_at5).take_handle() as i32; - *ptr4.add(8).cast::() = (readonly_settings5).take_handle() as i32; + *ptr4.add(0).cast::() = (initial_settings5).take_handle() + as i32; + *ptr4.add(4).cast::() = (initial_settings_read_at5) + .take_handle() as i32; + *ptr4.add(8).cast::() = (readonly_settings5).take_handle() + as i32; *ptr4.add(12).cast::() = (settings5).take_handle() as i32; *ptr4.add(16).cast::() = (zone_id5).take_handle() as i32; *ptr4.add(20).cast::() = (zone_status5).take_handle() as i32; @@ -17738,31 +19815,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_cloudflare_zone_settings_override_5_24_1_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:cloudflare/zone-settings-override@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_cloudflare_zone_settings_override_5_24_1_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:cloudflare/zone-settings-override@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_cloudflare_zone_settings_override_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 28], + ); } } } } mod _rt { - use core::fmt; use core::marker; use core::sync::atomic::{AtomicU32, Ordering::Relaxed}; - /// A type which represents a component model resource, either imported or /// exported into this component. /// @@ -17777,16 +19853,9 @@ mod _rt { /// resources. #[repr(transparent)] pub struct Resource { - // NB: This would ideally be `u32` but it is not. The fact that this has - // interior mutability is not exposed in the API of this type except for the - // `take_handle` method which is supposed to in theory be private. - // - // This represents, almost all the time, a valid handle value. When it's - // invalid it's stored as `u32::MAX`. handle: AtomicU32, _marker: marker::PhantomData, } - /// A trait which all wasm resources implement, namely providing the ability to /// drop a resource. /// @@ -17796,7 +19865,6 @@ mod _rt { /// Invokes the `[resource-drop]...` intrinsic. unsafe fn drop(handle: u32); } - impl Resource { #[doc(hidden)] pub unsafe fn from_handle(handle: u32) -> Self { @@ -17806,7 +19874,6 @@ mod _rt { _marker: marker::PhantomData, } } - /// Takes ownership of the handle owned by `resource`. /// /// Note that this ideally would be `into_handle` taking `Resource` by @@ -17823,31 +19890,21 @@ mod _rt { pub fn take_handle(resource: &Resource) -> u32 { resource.handle.swap(u32::MAX, Relaxed) } - #[doc(hidden)] pub fn handle(resource: &Resource) -> u32 { resource.handle.load(Relaxed) } } - impl fmt::Debug for Resource { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_struct("Resource") - .field("handle", &self.handle) - .finish() + f.debug_struct("Resource").field("handle", &self.handle).finish() } } - impl Drop for Resource { fn drop(&mut self) { unsafe { match self.handle.load(Relaxed) { - // If this handle was "taken" then don't do anything in the - // destructor. u32::MAX => {} - - // ... but otherwise do actually destroy it with the imported - // component model intrinsic as defined through `T`. other => T::drop(other), } } @@ -17868,16 +19925,14 @@ mod _rt { return; } let layout = alloc::Layout::from_size_align_unchecked(size, align); - alloc::dealloc(ptr as *mut u8, layout); + alloc::dealloc(ptr, layout); } - #[cfg(target_arch = "wasm32")] pub fn run_ctors_once() { wit_bindgen_rt::run_ctors_once(); } extern crate alloc as alloc_crate; } - /// Generates `#[no_mangle]` functions to export the specified type as the /// root implementation of all generated traits. /// @@ -17896,135 +19951,388 @@ mod _rt { /// ``` #[allow(unused_macros)] #[doc(hidden)] - macro_rules! __export_cloudflare_pulumi_impl { - ($ty:ident) => (self::export!($ty with_types_in self);); - ($ty:ident with_types_in $($path_to_types_root:tt)*) => ( - $($path_to_types_root)*::exports::pulumi::cloudflare::access_application::__export_pulumi_cloudflare_access_application_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_application); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_ca_certificate::__export_pulumi_cloudflare_access_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_ca_certificate); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_custom_page::__export_pulumi_cloudflare_access_custom_page_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_custom_page); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_group::__export_pulumi_cloudflare_access_group_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_group); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_identity_provider::__export_pulumi_cloudflare_access_identity_provider_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_identity_provider); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_keys_configuration::__export_pulumi_cloudflare_access_keys_configuration_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_keys_configuration); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_mutual_tls_certificate::__export_pulumi_cloudflare_access_mutual_tls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_mutual_tls_certificate); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_mutual_tls_hostname_settings::__export_pulumi_cloudflare_access_mutual_tls_hostname_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_mutual_tls_hostname_settings); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_organization::__export_pulumi_cloudflare_access_organization_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_organization); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_policy::__export_pulumi_cloudflare_access_policy_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_policy); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_rule::__export_pulumi_cloudflare_access_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_rule); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_service_token::__export_pulumi_cloudflare_access_service_token_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_service_token); - $($path_to_types_root)*::exports::pulumi::cloudflare::access_tag::__export_pulumi_cloudflare_access_tag_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::access_tag); - $($path_to_types_root)*::exports::pulumi::cloudflare::account::__export_pulumi_cloudflare_account_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::account); - $($path_to_types_root)*::exports::pulumi::cloudflare::account_member::__export_pulumi_cloudflare_account_member_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::account_member); - $($path_to_types_root)*::exports::pulumi::cloudflare::address_map::__export_pulumi_cloudflare_address_map_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::address_map); - $($path_to_types_root)*::exports::pulumi::cloudflare::api_shield::__export_pulumi_cloudflare_api_shield_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::api_shield); - $($path_to_types_root)*::exports::pulumi::cloudflare::api_shield_operation::__export_pulumi_cloudflare_api_shield_operation_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::api_shield_operation); - $($path_to_types_root)*::exports::pulumi::cloudflare::api_shield_operation_schema_validation_settings::__export_pulumi_cloudflare_api_shield_operation_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::api_shield_operation_schema_validation_settings); - $($path_to_types_root)*::exports::pulumi::cloudflare::api_shield_schema::__export_pulumi_cloudflare_api_shield_schema_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::api_shield_schema); - $($path_to_types_root)*::exports::pulumi::cloudflare::api_shield_schema_validation_settings::__export_pulumi_cloudflare_api_shield_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::api_shield_schema_validation_settings); - $($path_to_types_root)*::exports::pulumi::cloudflare::api_token::__export_pulumi_cloudflare_api_token_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::api_token); - $($path_to_types_root)*::exports::pulumi::cloudflare::argo::__export_pulumi_cloudflare_argo_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::argo); - $($path_to_types_root)*::exports::pulumi::cloudflare::authenticated_origin_pulls::__export_pulumi_cloudflare_authenticated_origin_pulls_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::authenticated_origin_pulls); - $($path_to_types_root)*::exports::pulumi::cloudflare::authenticated_origin_pulls_certificate::__export_pulumi_cloudflare_authenticated_origin_pulls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::authenticated_origin_pulls_certificate); - $($path_to_types_root)*::exports::pulumi::cloudflare::bot_management::__export_pulumi_cloudflare_bot_management_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::bot_management); - $($path_to_types_root)*::exports::pulumi::cloudflare::byo_ip_prefix::__export_pulumi_cloudflare_byo_ip_prefix_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::byo_ip_prefix); - $($path_to_types_root)*::exports::pulumi::cloudflare::certificate_pack::__export_pulumi_cloudflare_certificate_pack_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::certificate_pack); - $($path_to_types_root)*::exports::pulumi::cloudflare::custom_hostname::__export_pulumi_cloudflare_custom_hostname_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::custom_hostname); - $($path_to_types_root)*::exports::pulumi::cloudflare::custom_hostname_fallback_origin::__export_pulumi_cloudflare_custom_hostname_fallback_origin_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::custom_hostname_fallback_origin); - $($path_to_types_root)*::exports::pulumi::cloudflare::custom_pages::__export_pulumi_cloudflare_custom_pages_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::custom_pages); - $($path_to_types_root)*::exports::pulumi::cloudflare::custom_ssl::__export_pulumi_cloudflare_custom_ssl_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::custom_ssl); - $($path_to_types_root)*::exports::pulumi::cloudflare::d1_database::__export_pulumi_cloudflare_d1_database_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::d1_database); - $($path_to_types_root)*::exports::pulumi::cloudflare::device_dex_test::__export_pulumi_cloudflare_device_dex_test_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::device_dex_test); - $($path_to_types_root)*::exports::pulumi::cloudflare::device_managed_networks::__export_pulumi_cloudflare_device_managed_networks_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::device_managed_networks); - $($path_to_types_root)*::exports::pulumi::cloudflare::device_policy_certificates::__export_pulumi_cloudflare_device_policy_certificates_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::device_policy_certificates); - $($path_to_types_root)*::exports::pulumi::cloudflare::device_posture_integration::__export_pulumi_cloudflare_device_posture_integration_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::device_posture_integration); - $($path_to_types_root)*::exports::pulumi::cloudflare::device_posture_rule::__export_pulumi_cloudflare_device_posture_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::device_posture_rule); - $($path_to_types_root)*::exports::pulumi::cloudflare::device_settings_policy::__export_pulumi_cloudflare_device_settings_policy_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::device_settings_policy); - $($path_to_types_root)*::exports::pulumi::cloudflare::dlp_profile::__export_pulumi_cloudflare_dlp_profile_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::dlp_profile); - $($path_to_types_root)*::exports::pulumi::cloudflare::email_routing_address::__export_pulumi_cloudflare_email_routing_address_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::email_routing_address); - $($path_to_types_root)*::exports::pulumi::cloudflare::email_routing_catch_all::__export_pulumi_cloudflare_email_routing_catch_all_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::email_routing_catch_all); - $($path_to_types_root)*::exports::pulumi::cloudflare::email_routing_rule::__export_pulumi_cloudflare_email_routing_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::email_routing_rule); - $($path_to_types_root)*::exports::pulumi::cloudflare::email_routing_settings::__export_pulumi_cloudflare_email_routing_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::email_routing_settings); - $($path_to_types_root)*::exports::pulumi::cloudflare::fallback_domain::__export_pulumi_cloudflare_fallback_domain_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::fallback_domain); - $($path_to_types_root)*::exports::pulumi::cloudflare::filter::__export_pulumi_cloudflare_filter_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::filter); - $($path_to_types_root)*::exports::pulumi::cloudflare::firewall_rule::__export_pulumi_cloudflare_firewall_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::firewall_rule); - $($path_to_types_root)*::exports::pulumi::cloudflare::gre_tunnel::__export_pulumi_cloudflare_gre_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::gre_tunnel); - $($path_to_types_root)*::exports::pulumi::cloudflare::healthcheck::__export_pulumi_cloudflare_healthcheck_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::healthcheck); - $($path_to_types_root)*::exports::pulumi::cloudflare::hostname_tls_setting::__export_pulumi_cloudflare_hostname_tls_setting_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::hostname_tls_setting); - $($path_to_types_root)*::exports::pulumi::cloudflare::hostname_tls_setting_ciphers::__export_pulumi_cloudflare_hostname_tls_setting_ciphers_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::hostname_tls_setting_ciphers); - $($path_to_types_root)*::exports::pulumi::cloudflare::hyperdrive_config::__export_pulumi_cloudflare_hyperdrive_config_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::hyperdrive_config); - $($path_to_types_root)*::exports::pulumi::cloudflare::ipsec_tunnel::__export_pulumi_cloudflare_ipsec_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::ipsec_tunnel); - $($path_to_types_root)*::exports::pulumi::cloudflare::keyless_certificate::__export_pulumi_cloudflare_keyless_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::keyless_certificate); - $($path_to_types_root)*::exports::pulumi::cloudflare::list::__export_pulumi_cloudflare_list_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::list); - $($path_to_types_root)*::exports::pulumi::cloudflare::list_item::__export_pulumi_cloudflare_list_item_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::list_item); - $($path_to_types_root)*::exports::pulumi::cloudflare::load_balancer::__export_pulumi_cloudflare_load_balancer_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::load_balancer); - $($path_to_types_root)*::exports::pulumi::cloudflare::load_balancer_monitor::__export_pulumi_cloudflare_load_balancer_monitor_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::load_balancer_monitor); - $($path_to_types_root)*::exports::pulumi::cloudflare::load_balancer_pool::__export_pulumi_cloudflare_load_balancer_pool_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::load_balancer_pool); - $($path_to_types_root)*::exports::pulumi::cloudflare::logpull_retention::__export_pulumi_cloudflare_logpull_retention_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::logpull_retention); - $($path_to_types_root)*::exports::pulumi::cloudflare::logpush_job::__export_pulumi_cloudflare_logpush_job_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::logpush_job); - $($path_to_types_root)*::exports::pulumi::cloudflare::logpush_ownership_challenge::__export_pulumi_cloudflare_logpush_ownership_challenge_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::logpush_ownership_challenge); - $($path_to_types_root)*::exports::pulumi::cloudflare::magic_firewall_ruleset::__export_pulumi_cloudflare_magic_firewall_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::magic_firewall_ruleset); - $($path_to_types_root)*::exports::pulumi::cloudflare::managed_headers::__export_pulumi_cloudflare_managed_headers_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::managed_headers); - $($path_to_types_root)*::exports::pulumi::cloudflare::mtls_certificate::__export_pulumi_cloudflare_mtls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::mtls_certificate); - $($path_to_types_root)*::exports::pulumi::cloudflare::notification_policy::__export_pulumi_cloudflare_notification_policy_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::notification_policy); - $($path_to_types_root)*::exports::pulumi::cloudflare::notification_policy_webhooks::__export_pulumi_cloudflare_notification_policy_webhooks_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::notification_policy_webhooks); - $($path_to_types_root)*::exports::pulumi::cloudflare::observatory_scheduled_test::__export_pulumi_cloudflare_observatory_scheduled_test_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::observatory_scheduled_test); - $($path_to_types_root)*::exports::pulumi::cloudflare::origin_ca_certificate::__export_pulumi_cloudflare_origin_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::origin_ca_certificate); - $($path_to_types_root)*::exports::pulumi::cloudflare::page_rule::__export_pulumi_cloudflare_page_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::page_rule); - $($path_to_types_root)*::exports::pulumi::cloudflare::pages_domain::__export_pulumi_cloudflare_pages_domain_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::pages_domain); - $($path_to_types_root)*::exports::pulumi::cloudflare::pages_project::__export_pulumi_cloudflare_pages_project_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::pages_project); - $($path_to_types_root)*::exports::pulumi::cloudflare::queue::__export_pulumi_cloudflare_queue_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::queue); - $($path_to_types_root)*::exports::pulumi::cloudflare::r2_bucket::__export_pulumi_cloudflare_r2_bucket_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::r2_bucket); - $($path_to_types_root)*::exports::pulumi::cloudflare::rate_limit::__export_pulumi_cloudflare_rate_limit_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::rate_limit); - $($path_to_types_root)*::exports::pulumi::cloudflare::record::__export_pulumi_cloudflare_record_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::record); - $($path_to_types_root)*::exports::pulumi::cloudflare::regional_hostname::__export_pulumi_cloudflare_regional_hostname_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::regional_hostname); - $($path_to_types_root)*::exports::pulumi::cloudflare::regional_tiered_cache::__export_pulumi_cloudflare_regional_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::regional_tiered_cache); - $($path_to_types_root)*::exports::pulumi::cloudflare::ruleset::__export_pulumi_cloudflare_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::ruleset); - $($path_to_types_root)*::exports::pulumi::cloudflare::spectrum_application::__export_pulumi_cloudflare_spectrum_application_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::spectrum_application); - $($path_to_types_root)*::exports::pulumi::cloudflare::split_tunnel::__export_pulumi_cloudflare_split_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::split_tunnel); - $($path_to_types_root)*::exports::pulumi::cloudflare::static_route::__export_pulumi_cloudflare_static_route_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::static_route); - $($path_to_types_root)*::exports::pulumi::cloudflare::teams_account::__export_pulumi_cloudflare_teams_account_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::teams_account); - $($path_to_types_root)*::exports::pulumi::cloudflare::teams_list::__export_pulumi_cloudflare_teams_list_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::teams_list); - $($path_to_types_root)*::exports::pulumi::cloudflare::teams_location::__export_pulumi_cloudflare_teams_location_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::teams_location); - $($path_to_types_root)*::exports::pulumi::cloudflare::teams_proxy_endpoint::__export_pulumi_cloudflare_teams_proxy_endpoint_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::teams_proxy_endpoint); - $($path_to_types_root)*::exports::pulumi::cloudflare::teams_rule::__export_pulumi_cloudflare_teams_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::teams_rule); - $($path_to_types_root)*::exports::pulumi::cloudflare::tiered_cache::__export_pulumi_cloudflare_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::tiered_cache); - $($path_to_types_root)*::exports::pulumi::cloudflare::total_tls::__export_pulumi_cloudflare_total_tls_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::total_tls); - $($path_to_types_root)*::exports::pulumi::cloudflare::tunnel::__export_pulumi_cloudflare_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::tunnel); - $($path_to_types_root)*::exports::pulumi::cloudflare::tunnel_config::__export_pulumi_cloudflare_tunnel_config_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::tunnel_config); - $($path_to_types_root)*::exports::pulumi::cloudflare::tunnel_route::__export_pulumi_cloudflare_tunnel_route_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::tunnel_route); - $($path_to_types_root)*::exports::pulumi::cloudflare::tunnel_virtual_network::__export_pulumi_cloudflare_tunnel_virtual_network_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::tunnel_virtual_network); - $($path_to_types_root)*::exports::pulumi::cloudflare::turnstile_widget::__export_pulumi_cloudflare_turnstile_widget_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::turnstile_widget); - $($path_to_types_root)*::exports::pulumi::cloudflare::url_normalization_settings::__export_pulumi_cloudflare_url_normalization_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::url_normalization_settings); - $($path_to_types_root)*::exports::pulumi::cloudflare::user_agent_blocking_rule::__export_pulumi_cloudflare_user_agent_blocking_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::user_agent_blocking_rule); - $($path_to_types_root)*::exports::pulumi::cloudflare::waiting_room::__export_pulumi_cloudflare_waiting_room_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::waiting_room); - $($path_to_types_root)*::exports::pulumi::cloudflare::waiting_room_event::__export_pulumi_cloudflare_waiting_room_event_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::waiting_room_event); - $($path_to_types_root)*::exports::pulumi::cloudflare::waiting_room_rules::__export_pulumi_cloudflare_waiting_room_rules_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::waiting_room_rules); - $($path_to_types_root)*::exports::pulumi::cloudflare::waiting_room_settings::__export_pulumi_cloudflare_waiting_room_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::waiting_room_settings); - $($path_to_types_root)*::exports::pulumi::cloudflare::web3_hostname::__export_pulumi_cloudflare_web3_hostname_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::web3_hostname); - $($path_to_types_root)*::exports::pulumi::cloudflare::web_analytics_rule::__export_pulumi_cloudflare_web_analytics_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::web_analytics_rule); - $($path_to_types_root)*::exports::pulumi::cloudflare::web_analytics_site::__export_pulumi_cloudflare_web_analytics_site_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::web_analytics_site); - $($path_to_types_root)*::exports::pulumi::cloudflare::worker_cron_trigger::__export_pulumi_cloudflare_worker_cron_trigger_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::worker_cron_trigger); - $($path_to_types_root)*::exports::pulumi::cloudflare::worker_domain::__export_pulumi_cloudflare_worker_domain_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::worker_domain); - $($path_to_types_root)*::exports::pulumi::cloudflare::worker_route::__export_pulumi_cloudflare_worker_route_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::worker_route); - $($path_to_types_root)*::exports::pulumi::cloudflare::worker_script::__export_pulumi_cloudflare_worker_script_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::worker_script); - $($path_to_types_root)*::exports::pulumi::cloudflare::worker_secret::__export_pulumi_cloudflare_worker_secret_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::worker_secret); - $($path_to_types_root)*::exports::pulumi::cloudflare::workers_for_platforms_namespace::__export_pulumi_cloudflare_workers_for_platforms_namespace_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::workers_for_platforms_namespace); - $($path_to_types_root)*::exports::pulumi::cloudflare::workers_kv::__export_pulumi_cloudflare_workers_kv_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::workers_kv); - $($path_to_types_root)*::exports::pulumi::cloudflare::workers_kv_namespace::__export_pulumi_cloudflare_workers_kv_namespace_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::workers_kv_namespace); - $($path_to_types_root)*::exports::pulumi::cloudflare::zone::__export_pulumi_cloudflare_zone_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::zone); - $($path_to_types_root)*::exports::pulumi::cloudflare::zone_cache_reserve::__export_pulumi_cloudflare_zone_cache_reserve_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::zone_cache_reserve); - $($path_to_types_root)*::exports::pulumi::cloudflare::zone_cache_variants::__export_pulumi_cloudflare_zone_cache_variants_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::zone_cache_variants); - $($path_to_types_root)*::exports::pulumi::cloudflare::zone_dnssec::__export_pulumi_cloudflare_zone_dnssec_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::zone_dnssec); - $($path_to_types_root)*::exports::pulumi::cloudflare::zone_hold::__export_pulumi_cloudflare_zone_hold_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::zone_hold); - $($path_to_types_root)*::exports::pulumi::cloudflare::zone_lockdown::__export_pulumi_cloudflare_zone_lockdown_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::zone_lockdown); - $($path_to_types_root)*::exports::pulumi::cloudflare::zone_settings_override::__export_pulumi_cloudflare_zone_settings_override_5_24_1_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::cloudflare::zone_settings_override); - ) + ($ty:ident) => { + self::export!($ty with_types_in self); + }; + ($ty:ident with_types_in $($path_to_types_root:tt)*) => { + $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_application::__export_pulumi_cloudflare_access_application_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_application); $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_ca_certificate::__export_pulumi_cloudflare_access_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_ca_certificate); $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_custom_page::__export_pulumi_cloudflare_access_custom_page_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_custom_page); $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_group::__export_pulumi_cloudflare_access_group_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_group); $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_identity_provider::__export_pulumi_cloudflare_access_identity_provider_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_identity_provider); $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_keys_configuration::__export_pulumi_cloudflare_access_keys_configuration_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_keys_configuration); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_mutual_tls_certificate::__export_pulumi_cloudflare_access_mutual_tls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_mutual_tls_certificate); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_mutual_tls_hostname_settings::__export_pulumi_cloudflare_access_mutual_tls_hostname_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_mutual_tls_hostname_settings); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_organization::__export_pulumi_cloudflare_access_organization_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_organization); $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_policy::__export_pulumi_cloudflare_access_policy_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_policy); $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_rule::__export_pulumi_cloudflare_access_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_rule); $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_service_token::__export_pulumi_cloudflare_access_service_token_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_service_token); $($path_to_types_root)*:: + exports::pulumi::cloudflare::access_tag::__export_pulumi_cloudflare_access_tag_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::access_tag); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::account::__export_pulumi_cloudflare_account_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::account); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::account_member::__export_pulumi_cloudflare_account_member_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::account_member); $($path_to_types_root)*:: + exports::pulumi::cloudflare::address_map::__export_pulumi_cloudflare_address_map_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::address_map); $($path_to_types_root)*:: + exports::pulumi::cloudflare::api_shield::__export_pulumi_cloudflare_api_shield_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::api_shield); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::api_shield_operation::__export_pulumi_cloudflare_api_shield_operation_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::api_shield_operation); $($path_to_types_root)*:: + exports::pulumi::cloudflare::api_shield_operation_schema_validation_settings::__export_pulumi_cloudflare_api_shield_operation_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::api_shield_operation_schema_validation_settings); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::api_shield_schema::__export_pulumi_cloudflare_api_shield_schema_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::api_shield_schema); $($path_to_types_root)*:: + exports::pulumi::cloudflare::api_shield_schema_validation_settings::__export_pulumi_cloudflare_api_shield_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::api_shield_schema_validation_settings); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::api_token::__export_pulumi_cloudflare_api_token_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::api_token); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::argo::__export_pulumi_cloudflare_argo_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::argo); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::authenticated_origin_pulls::__export_pulumi_cloudflare_authenticated_origin_pulls_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::authenticated_origin_pulls); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::authenticated_origin_pulls_certificate::__export_pulumi_cloudflare_authenticated_origin_pulls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::authenticated_origin_pulls_certificate); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::bot_management::__export_pulumi_cloudflare_bot_management_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::bot_management); $($path_to_types_root)*:: + exports::pulumi::cloudflare::byo_ip_prefix::__export_pulumi_cloudflare_byo_ip_prefix_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::byo_ip_prefix); $($path_to_types_root)*:: + exports::pulumi::cloudflare::certificate_pack::__export_pulumi_cloudflare_certificate_pack_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::certificate_pack); $($path_to_types_root)*:: + exports::pulumi::cloudflare::custom_hostname::__export_pulumi_cloudflare_custom_hostname_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::custom_hostname); $($path_to_types_root)*:: + exports::pulumi::cloudflare::custom_hostname_fallback_origin::__export_pulumi_cloudflare_custom_hostname_fallback_origin_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::custom_hostname_fallback_origin); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::custom_pages::__export_pulumi_cloudflare_custom_pages_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::custom_pages); $($path_to_types_root)*:: + exports::pulumi::cloudflare::custom_ssl::__export_pulumi_cloudflare_custom_ssl_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::custom_ssl); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::d1_database::__export_pulumi_cloudflare_d1_database_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::d1_database); $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_dex_test::__export_pulumi_cloudflare_device_dex_test_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_dex_test); $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_managed_networks::__export_pulumi_cloudflare_device_managed_networks_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_managed_networks); $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_policy_certificates::__export_pulumi_cloudflare_device_policy_certificates_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_policy_certificates); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_posture_integration::__export_pulumi_cloudflare_device_posture_integration_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_posture_integration); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_posture_rule::__export_pulumi_cloudflare_device_posture_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_posture_rule); $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_settings_policy::__export_pulumi_cloudflare_device_settings_policy_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::device_settings_policy); $($path_to_types_root)*:: + exports::pulumi::cloudflare::dlp_profile::__export_pulumi_cloudflare_dlp_profile_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::dlp_profile); $($path_to_types_root)*:: + exports::pulumi::cloudflare::email_routing_address::__export_pulumi_cloudflare_email_routing_address_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::email_routing_address); $($path_to_types_root)*:: + exports::pulumi::cloudflare::email_routing_catch_all::__export_pulumi_cloudflare_email_routing_catch_all_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::email_routing_catch_all); $($path_to_types_root)*:: + exports::pulumi::cloudflare::email_routing_rule::__export_pulumi_cloudflare_email_routing_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::email_routing_rule); $($path_to_types_root)*:: + exports::pulumi::cloudflare::email_routing_settings::__export_pulumi_cloudflare_email_routing_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::email_routing_settings); $($path_to_types_root)*:: + exports::pulumi::cloudflare::fallback_domain::__export_pulumi_cloudflare_fallback_domain_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::fallback_domain); $($path_to_types_root)*:: + exports::pulumi::cloudflare::filter::__export_pulumi_cloudflare_filter_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::filter); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::firewall_rule::__export_pulumi_cloudflare_firewall_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::firewall_rule); $($path_to_types_root)*:: + exports::pulumi::cloudflare::gre_tunnel::__export_pulumi_cloudflare_gre_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::gre_tunnel); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::healthcheck::__export_pulumi_cloudflare_healthcheck_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::healthcheck); $($path_to_types_root)*:: + exports::pulumi::cloudflare::hostname_tls_setting::__export_pulumi_cloudflare_hostname_tls_setting_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::hostname_tls_setting); $($path_to_types_root)*:: + exports::pulumi::cloudflare::hostname_tls_setting_ciphers::__export_pulumi_cloudflare_hostname_tls_setting_ciphers_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::hostname_tls_setting_ciphers); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::hyperdrive_config::__export_pulumi_cloudflare_hyperdrive_config_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::hyperdrive_config); $($path_to_types_root)*:: + exports::pulumi::cloudflare::ipsec_tunnel::__export_pulumi_cloudflare_ipsec_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::ipsec_tunnel); $($path_to_types_root)*:: + exports::pulumi::cloudflare::keyless_certificate::__export_pulumi_cloudflare_keyless_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::keyless_certificate); $($path_to_types_root)*:: + exports::pulumi::cloudflare::list::__export_pulumi_cloudflare_list_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::list); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::list_item::__export_pulumi_cloudflare_list_item_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::list_item); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::load_balancer::__export_pulumi_cloudflare_load_balancer_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::load_balancer); $($path_to_types_root)*:: + exports::pulumi::cloudflare::load_balancer_monitor::__export_pulumi_cloudflare_load_balancer_monitor_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::load_balancer_monitor); $($path_to_types_root)*:: + exports::pulumi::cloudflare::load_balancer_pool::__export_pulumi_cloudflare_load_balancer_pool_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::load_balancer_pool); $($path_to_types_root)*:: + exports::pulumi::cloudflare::logpull_retention::__export_pulumi_cloudflare_logpull_retention_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::logpull_retention); $($path_to_types_root)*:: + exports::pulumi::cloudflare::logpush_job::__export_pulumi_cloudflare_logpush_job_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::logpush_job); $($path_to_types_root)*:: + exports::pulumi::cloudflare::logpush_ownership_challenge::__export_pulumi_cloudflare_logpush_ownership_challenge_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::logpush_ownership_challenge); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::magic_firewall_ruleset::__export_pulumi_cloudflare_magic_firewall_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::magic_firewall_ruleset); $($path_to_types_root)*:: + exports::pulumi::cloudflare::managed_headers::__export_pulumi_cloudflare_managed_headers_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::managed_headers); $($path_to_types_root)*:: + exports::pulumi::cloudflare::mtls_certificate::__export_pulumi_cloudflare_mtls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::mtls_certificate); $($path_to_types_root)*:: + exports::pulumi::cloudflare::notification_policy::__export_pulumi_cloudflare_notification_policy_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::notification_policy); $($path_to_types_root)*:: + exports::pulumi::cloudflare::notification_policy_webhooks::__export_pulumi_cloudflare_notification_policy_webhooks_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::notification_policy_webhooks); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::observatory_scheduled_test::__export_pulumi_cloudflare_observatory_scheduled_test_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::observatory_scheduled_test); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::origin_ca_certificate::__export_pulumi_cloudflare_origin_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::origin_ca_certificate); $($path_to_types_root)*:: + exports::pulumi::cloudflare::page_rule::__export_pulumi_cloudflare_page_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::page_rule); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::pages_domain::__export_pulumi_cloudflare_pages_domain_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::pages_domain); $($path_to_types_root)*:: + exports::pulumi::cloudflare::pages_project::__export_pulumi_cloudflare_pages_project_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::pages_project); $($path_to_types_root)*:: + exports::pulumi::cloudflare::queue::__export_pulumi_cloudflare_queue_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::queue); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::r2_bucket::__export_pulumi_cloudflare_r2_bucket_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::r2_bucket); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::rate_limit::__export_pulumi_cloudflare_rate_limit_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::rate_limit); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::record::__export_pulumi_cloudflare_record_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::record); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::regional_hostname::__export_pulumi_cloudflare_regional_hostname_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::regional_hostname); $($path_to_types_root)*:: + exports::pulumi::cloudflare::regional_tiered_cache::__export_pulumi_cloudflare_regional_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::regional_tiered_cache); $($path_to_types_root)*:: + exports::pulumi::cloudflare::ruleset::__export_pulumi_cloudflare_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::ruleset); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::spectrum_application::__export_pulumi_cloudflare_spectrum_application_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::spectrum_application); $($path_to_types_root)*:: + exports::pulumi::cloudflare::split_tunnel::__export_pulumi_cloudflare_split_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::split_tunnel); $($path_to_types_root)*:: + exports::pulumi::cloudflare::static_route::__export_pulumi_cloudflare_static_route_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::static_route); $($path_to_types_root)*:: + exports::pulumi::cloudflare::teams_account::__export_pulumi_cloudflare_teams_account_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::teams_account); $($path_to_types_root)*:: + exports::pulumi::cloudflare::teams_list::__export_pulumi_cloudflare_teams_list_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::teams_list); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::teams_location::__export_pulumi_cloudflare_teams_location_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::teams_location); $($path_to_types_root)*:: + exports::pulumi::cloudflare::teams_proxy_endpoint::__export_pulumi_cloudflare_teams_proxy_endpoint_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::teams_proxy_endpoint); $($path_to_types_root)*:: + exports::pulumi::cloudflare::teams_rule::__export_pulumi_cloudflare_teams_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::teams_rule); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::tiered_cache::__export_pulumi_cloudflare_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::tiered_cache); $($path_to_types_root)*:: + exports::pulumi::cloudflare::total_tls::__export_pulumi_cloudflare_total_tls_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::total_tls); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::tunnel::__export_pulumi_cloudflare_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::tunnel); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::tunnel_config::__export_pulumi_cloudflare_tunnel_config_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::tunnel_config); $($path_to_types_root)*:: + exports::pulumi::cloudflare::tunnel_route::__export_pulumi_cloudflare_tunnel_route_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::tunnel_route); $($path_to_types_root)*:: + exports::pulumi::cloudflare::tunnel_virtual_network::__export_pulumi_cloudflare_tunnel_virtual_network_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::tunnel_virtual_network); $($path_to_types_root)*:: + exports::pulumi::cloudflare::turnstile_widget::__export_pulumi_cloudflare_turnstile_widget_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::turnstile_widget); $($path_to_types_root)*:: + exports::pulumi::cloudflare::url_normalization_settings::__export_pulumi_cloudflare_url_normalization_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::url_normalization_settings); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::user_agent_blocking_rule::__export_pulumi_cloudflare_user_agent_blocking_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::user_agent_blocking_rule); $($path_to_types_root)*:: + exports::pulumi::cloudflare::waiting_room::__export_pulumi_cloudflare_waiting_room_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::waiting_room); $($path_to_types_root)*:: + exports::pulumi::cloudflare::waiting_room_event::__export_pulumi_cloudflare_waiting_room_event_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::waiting_room_event); $($path_to_types_root)*:: + exports::pulumi::cloudflare::waiting_room_rules::__export_pulumi_cloudflare_waiting_room_rules_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::waiting_room_rules); $($path_to_types_root)*:: + exports::pulumi::cloudflare::waiting_room_settings::__export_pulumi_cloudflare_waiting_room_settings_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::waiting_room_settings); $($path_to_types_root)*:: + exports::pulumi::cloudflare::web3_hostname::__export_pulumi_cloudflare_web3_hostname_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::web3_hostname); $($path_to_types_root)*:: + exports::pulumi::cloudflare::web_analytics_rule::__export_pulumi_cloudflare_web_analytics_rule_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::web_analytics_rule); $($path_to_types_root)*:: + exports::pulumi::cloudflare::web_analytics_site::__export_pulumi_cloudflare_web_analytics_site_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::web_analytics_site); $($path_to_types_root)*:: + exports::pulumi::cloudflare::worker_cron_trigger::__export_pulumi_cloudflare_worker_cron_trigger_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::worker_cron_trigger); $($path_to_types_root)*:: + exports::pulumi::cloudflare::worker_domain::__export_pulumi_cloudflare_worker_domain_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::worker_domain); $($path_to_types_root)*:: + exports::pulumi::cloudflare::worker_route::__export_pulumi_cloudflare_worker_route_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::worker_route); $($path_to_types_root)*:: + exports::pulumi::cloudflare::worker_script::__export_pulumi_cloudflare_worker_script_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::worker_script); $($path_to_types_root)*:: + exports::pulumi::cloudflare::worker_secret::__export_pulumi_cloudflare_worker_secret_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::worker_secret); $($path_to_types_root)*:: + exports::pulumi::cloudflare::workers_for_platforms_namespace::__export_pulumi_cloudflare_workers_for_platforms_namespace_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::workers_for_platforms_namespace); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::workers_kv::__export_pulumi_cloudflare_workers_kv_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::workers_kv); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::workers_kv_namespace::__export_pulumi_cloudflare_workers_kv_namespace_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::workers_kv_namespace); $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone::__export_pulumi_cloudflare_zone_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::zone); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone_cache_reserve::__export_pulumi_cloudflare_zone_cache_reserve_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone_cache_reserve); $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone_cache_variants::__export_pulumi_cloudflare_zone_cache_variants_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone_cache_variants); $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone_dnssec::__export_pulumi_cloudflare_zone_dnssec_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone_dnssec); $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone_hold::__export_pulumi_cloudflare_zone_hold_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::cloudflare::zone_hold); + $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone_lockdown::__export_pulumi_cloudflare_zone_lockdown_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone_lockdown); $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone_settings_override::__export_pulumi_cloudflare_zone_settings_override_5_24_1_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::cloudflare::zone_settings_override); + }; } #[doc(inline)] pub(crate) use __export_cloudflare_pulumi_impl as export; - #[cfg(target_arch = "wasm32")] -#[link_section = "component-type:wit-bindgen:0.25.0:cloudflare-pulumi:encoded world"] +#[link_section = "component-type:wit-bindgen:0.30.0:cloudflare-pulumi:encoded world"] #[doc(hidden)] pub static __WIT_BINDGEN_COMPONENT_TYPE: [u8; 38405] = *b"\ \0asm\x0d\0\x01\0\0\x19\x16wit-component-encoding\x04\0\x07\xfc\xaa\x02\x01A\x02\ @@ -18811,11 +21119,9 @@ s\x04args\x04\0\x07\x04\0\x06invoke\x01\x08\x04\x01Jpulumi:cloudflare/zone-setti ngs-override@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV\x05x\x04\x01Epulumi:cloudflare/cl\ oudflare-pulumi@5.24.1-DIVIDER-ZERO.ZERO.ZERO-DEV\x04\0\x0b\x17\x01\0\x11cloudfl\ are-pulumi\x03\0\0\0G\x09producers\x01\x0cprocessed-by\x02\x0dwit-component\x070\ -.208.1\x10wit-bindgen-rust\x060.25.0"; - +.215.0\x10wit-bindgen-rust\x060.30.0"; #[inline(never)] #[doc(hidden)] -#[cfg(target_arch = "wasm32")] pub fn __link_custom_section_describing_imports() { wit_bindgen_rt::maybe_link_cabi_realloc(); } diff --git a/providers/pulumi_wasm_provider_docker/src/bindings.rs b/providers/pulumi_wasm_provider_docker/src/bindings.rs index 61587feb..20f2f5dc 100644 --- a/providers/pulumi_wasm_provider_docker/src/bindings.rs +++ b/providers/pulumi_wasm_provider_docker/src/bindings.rs @@ -1,5 +1,3 @@ -// Generated by `wit-bindgen` 0.25.0. DO NOT EDIT! -// Options used: #[allow(dead_code)] pub mod component { #[allow(dead_code)] @@ -8,17 +6,13 @@ pub mod component { pub mod output_interface { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; - #[derive(Debug)] #[repr(transparent)] pub struct Output { handle: _rt::Resource, } - impl Output { #[doc(hidden)] pub unsafe fn from_handle(handle: u32) -> Self { @@ -26,24 +20,20 @@ pub mod component { handle: _rt::Resource::from_handle(handle), } } - #[doc(hidden)] pub fn take_handle(&self) -> u32 { _rt::Resource::take_handle(&self.handle) } - #[doc(hidden)] pub fn handle(&self) -> u32 { _rt::Resource::handle(&self.handle) } } - unsafe impl _rt::WasmResource for Output { #[inline] unsafe fn drop(_handle: u32) { #[cfg(not(target_arch = "wasm32"))] unreachable!(); - #[cfg(target_arch = "wasm32")] { #[link( @@ -53,12 +43,10 @@ pub mod component { #[link_name = "[resource-drop]output"] fn drop(_: u32); } - drop(_handle); } } } - impl Output { #[allow(unused_unsafe, clippy::all)] pub fn new(value: &str) -> Self { @@ -66,7 +54,6 @@ pub mod component { let vec0 = value; let ptr0 = vec0.as_ptr().cast::(); let len0 = vec0.len(); - #[cfg(target_arch = "wasm32")] #[link( wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" @@ -75,7 +62,6 @@ pub mod component { #[link_name = "[constructor]output"] fn wit_import(_: *mut u8, _: usize) -> i32; } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: *mut u8, _: usize) -> i32 { unreachable!() @@ -92,7 +78,6 @@ pub mod component { let vec0 = function_name; let ptr0 = vec0.as_ptr().cast::(); let len0 = vec0.len(); - #[cfg(target_arch = "wasm32")] #[link( wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" @@ -101,12 +86,15 @@ pub mod component { #[link_name = "[method]output.map"] fn wit_import(_: i32, _: *mut u8, _: usize) -> i32; } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: i32, _: *mut u8, _: usize) -> i32 { unreachable!() } - let ret = wit_import((self).handle() as i32, ptr0.cast_mut(), len0); + let ret = wit_import( + (self).handle() as i32, + ptr0.cast_mut(), + len0, + ); Output::from_handle(ret as u32) } } @@ -116,7 +104,10 @@ pub mod component { unsafe { let vec0 = outputs; let len0 = vec0.len(); - let layout0 = _rt::alloc::Layout::from_size_align_unchecked(vec0.len() * 4, 4); + let layout0 = _rt::alloc::Layout::from_size_align_unchecked( + vec0.len() * 4, + 4, + ); let result0 = if layout0.size() != 0 { let ptr = _rt::alloc::alloc(layout0).cast::(); if ptr.is_null() { @@ -124,9 +115,7 @@ pub mod component { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec0.into_iter().enumerate() { let base = result0.add(i * 4); @@ -134,14 +123,14 @@ pub mod component { *base.add(0).cast::() = (e).handle() as i32; } } - #[cfg(target_arch = "wasm32")] - #[link(wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV")] + #[link( + wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" + )] extern "C" { #[link_name = "combine"] fn wit_import(_: *mut u8, _: usize) -> i32; } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: *mut u8, _: usize) -> i32 { unreachable!() @@ -154,14 +143,11 @@ pub mod component { } } } - #[allow(dead_code, clippy::all)] pub mod register_interface { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; pub type Output = super::super::super::component::pulumi_wasm::output_interface::Output; pub struct ObjectField<'a> { @@ -169,7 +155,10 @@ pub mod component { pub value: &'a Output, } impl<'a> ::core::fmt::Debug for ObjectField<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("ObjectField") .field("name", &self.name) .field("value", &self.value) @@ -181,10 +170,11 @@ pub mod component { pub name: _rt::String, } impl ::core::fmt::Debug for ResultField { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { - f.debug_struct("ResultField") - .field("name", &self.name) - .finish() + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { + f.debug_struct("ResultField").field("name", &self.name).finish() } } pub struct RegisterResourceResultField { @@ -192,7 +182,10 @@ pub mod component { pub output: Output, } impl ::core::fmt::Debug for RegisterResourceResultField { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResultField") .field("name", &self.name) .field("output", &self.output) @@ -206,7 +199,10 @@ pub mod component { pub results: _rt::Vec, } impl<'a> ::core::fmt::Debug for RegisterResourceRequest<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceRequest") .field("type", &self.type_) .field("name", &self.name) @@ -219,14 +215,19 @@ pub mod component { pub fields: _rt::Vec, } impl ::core::fmt::Debug for RegisterResourceResult { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResult") .field("fields", &self.fields) .finish() } } #[allow(unused_unsafe, clippy::all)] - pub fn register(request: &RegisterResourceRequest<'_>) -> RegisterResourceResult { + pub fn register( + request: &RegisterResourceRequest<'_>, + ) -> RegisterResourceResult { unsafe { #[repr(align(4))] struct RetArea([::core::mem::MaybeUninit; 8]); @@ -245,7 +246,10 @@ pub mod component { let len2 = vec2.len(); let vec5 = object0; let len5 = vec5.len(); - let layout5 = _rt::alloc::Layout::from_size_align_unchecked(vec5.len() * 12, 4); + let layout5 = _rt::alloc::Layout::from_size_align_unchecked( + vec5.len() * 12, + 4, + ); let result5 = if layout5.size() != 0 { let ptr = _rt::alloc::alloc(layout5).cast::(); if ptr.is_null() { @@ -253,17 +257,12 @@ pub mod component { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec5.into_iter().enumerate() { let base = result5.add(i * 12); { - let ObjectField { - name: name3, - value: value3, - } = e; + let ObjectField { name: name3, value: value3 } = e; let vec4 = name3; let ptr4 = vec4.as_ptr().cast::(); let len4 = vec4.len(); @@ -274,7 +273,10 @@ pub mod component { } let vec8 = results0; let len8 = vec8.len(); - let layout8 = _rt::alloc::Layout::from_size_align_unchecked(vec8.len() * 8, 4); + let layout8 = _rt::alloc::Layout::from_size_align_unchecked( + vec8.len() * 8, + 4, + ); let result8 = if layout8.size() != 0 { let ptr = _rt::alloc::alloc(layout8).cast::(); if ptr.is_null() { @@ -282,9 +284,7 @@ pub mod component { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec8.into_iter().enumerate() { let base = result8.add(i * 8); @@ -316,7 +316,6 @@ pub mod component { _: *mut u8, ); } - #[cfg(not(target_arch = "wasm32"))] fn wit_import( _: *mut u8, @@ -353,13 +352,18 @@ pub mod component { let l12 = *base.add(0).cast::<*mut u8>(); let l13 = *base.add(4).cast::(); let len14 = l13; - let bytes14 = _rt::Vec::from_raw_parts(l12.cast(), len14, len14); + let bytes14 = _rt::Vec::from_raw_parts( + l12.cast(), + len14, + len14, + ); let l15 = *base.add(8).cast::(); - - RegisterResourceResultField{ - name: _rt::string_lift(bytes14), - output: super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32), - } + RegisterResourceResultField { + name: _rt::string_lift(bytes14), + output: super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ), + } }; result16.push(e16); } @@ -370,7 +374,9 @@ pub mod component { if layout8.size() != 0 { _rt::alloc::dealloc(result8.cast(), layout8); } - RegisterResourceResult { fields: result16 } + RegisterResourceResult { + fields: result16, + } } } } @@ -386,12 +392,9 @@ pub mod exports { pub mod container { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub attach: &'a Output, pub capabilities: &'a Output, @@ -457,7 +460,10 @@ pub mod exports { pub working_dir: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("attach", &self.attach) .field("capabilities", &self.capabilities) @@ -596,7 +602,10 @@ pub mod exports { pub working_dir: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("attach", &self.attach) .field("bridge", &self.bridge) @@ -673,8 +682,7 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -807,251 +815,375 @@ pub mod exports { _rt::string_lift(bytes2), Args { attach: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l3 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l3 as u32, + ); &handle4 }, capabilities: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l5 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l5 as u32, + ); &handle6 }, cgroupns_mode: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l7 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l7 as u32, + ); &handle8 }, command: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l9 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l9 as u32, + ); &handle10 }, container_read_refresh_timeout_milliseconds: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l11 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l11 as u32, + ); &handle12 }, cpu_set: { - handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l13 as u32); + handle14 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l13 as u32, + ); &handle14 }, cpu_shares: { - handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32); + handle16 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ); &handle16 }, destroy_grace_seconds: { - handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l17 as u32); + handle18 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l17 as u32, + ); &handle18 }, devices: { - handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l19 as u32); + handle20 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l19 as u32, + ); &handle20 }, dns: { - handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l21 as u32); + handle22 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l21 as u32, + ); &handle22 }, dns_opts: { - handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l23 as u32); + handle24 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l23 as u32, + ); &handle24 }, dns_searches: { - handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l25 as u32); + handle26 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l25 as u32, + ); &handle26 }, domainname: { - handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l27 as u32); + handle28 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l27 as u32, + ); &handle28 }, entrypoints: { - handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l29 as u32); + handle30 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l29 as u32, + ); &handle30 }, envs: { - handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l31 as u32); + handle32 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l31 as u32, + ); &handle32 }, gpus: { - handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l33 as u32); + handle34 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l33 as u32, + ); &handle34 }, group_adds: { - handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l35 as u32); + handle36 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l35 as u32, + ); &handle36 }, healthcheck: { - handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l37 as u32); + handle38 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l37 as u32, + ); &handle38 }, hostname: { - handle40 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l39 as u32); + handle40 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l39 as u32, + ); &handle40 }, hosts: { - handle42 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l41 as u32); + handle42 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l41 as u32, + ); &handle42 }, image: { - handle44 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l43 as u32); + handle44 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l43 as u32, + ); &handle44 }, init: { - handle46 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l45 as u32); + handle46 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l45 as u32, + ); &handle46 }, ipc_mode: { - handle48 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l47 as u32); + handle48 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l47 as u32, + ); &handle48 }, labels: { - handle50 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l49 as u32); + handle50 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l49 as u32, + ); &handle50 }, log_driver: { - handle52 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l51 as u32); + handle52 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l51 as u32, + ); &handle52 }, log_opts: { - handle54 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l53 as u32); + handle54 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l53 as u32, + ); &handle54 }, logs: { - handle56 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l55 as u32); + handle56 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l55 as u32, + ); &handle56 }, max_retry_count: { - handle58 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l57 as u32); + handle58 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l57 as u32, + ); &handle58 }, memory: { - handle60 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l59 as u32); + handle60 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l59 as u32, + ); &handle60 }, memory_swap: { - handle62 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l61 as u32); + handle62 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l61 as u32, + ); &handle62 }, mounts: { - handle64 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l63 as u32); + handle64 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l63 as u32, + ); &handle64 }, must_run: { - handle66 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l65 as u32); + handle66 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l65 as u32, + ); &handle66 }, name: { - handle68 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l67 as u32); + handle68 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l67 as u32, + ); &handle68 }, network_mode: { - handle70 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l69 as u32); + handle70 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l69 as u32, + ); &handle70 }, networks_advanced: { - handle72 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l71 as u32); + handle72 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l71 as u32, + ); &handle72 }, pid_mode: { - handle74 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l73 as u32); + handle74 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l73 as u32, + ); &handle74 }, ports: { - handle76 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l75 as u32); + handle76 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l75 as u32, + ); &handle76 }, privileged: { - handle78 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l77 as u32); + handle78 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l77 as u32, + ); &handle78 }, publish_all_ports: { - handle80 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l79 as u32); + handle80 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l79 as u32, + ); &handle80 }, read_only: { - handle82 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l81 as u32); + handle82 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l81 as u32, + ); &handle82 }, remove_volumes: { - handle84 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l83 as u32); + handle84 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l83 as u32, + ); &handle84 }, restart: { - handle86 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l85 as u32); + handle86 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l85 as u32, + ); &handle86 }, rm: { - handle88 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l87 as u32); + handle88 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l87 as u32, + ); &handle88 }, runtime: { - handle90 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l89 as u32); + handle90 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l89 as u32, + ); &handle90 }, security_opts: { - handle92 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l91 as u32); + handle92 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l91 as u32, + ); &handle92 }, shm_size: { - handle94 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l93 as u32); + handle94 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l93 as u32, + ); &handle94 }, start: { - handle96 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l95 as u32); + handle96 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l95 as u32, + ); &handle96 }, stdin_open: { - handle98 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l97 as u32); + handle98 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l97 as u32, + ); &handle98 }, stop_signal: { - handle100 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l99 as u32); + handle100 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l99 as u32, + ); &handle100 }, stop_timeout: { - handle102 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l101 as u32); + handle102 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l101 as u32, + ); &handle102 }, storage_opts: { - handle104 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l103 as u32); + handle104 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l103 as u32, + ); &handle104 }, sysctls: { - handle106 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l105 as u32); + handle106 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l105 as u32, + ); &handle106 }, tmpfs: { - handle108 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l107 as u32); + handle108 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l107 as u32, + ); &handle108 }, tty: { - handle110 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l109 as u32); + handle110 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l109 as u32, + ); &handle110 }, ulimits: { - handle112 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l111 as u32); + handle112 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l111 as u32, + ); &handle112 }, uploads: { - handle114 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l113 as u32); + handle114 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l113 as u32, + ); &handle114 }, user: { - handle116 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l115 as u32); + handle116 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l115 as u32, + ); &handle116 }, userns_mode: { - handle118 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l117 as u32); + handle118 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l117 as u32, + ); &handle118 }, volumes: { - handle120 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l119 as u32); + handle120 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l119 as u32, + ); &handle120 }, wait: { - handle122 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l121 as u32); + handle122 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l121 as u32, + ); &handle122 }, wait_timeout: { - handle124 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l123 as u32); + handle124 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l123 as u32, + ); &handle124 }, working_dir: { - handle126 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l125 as u32); + handle126 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l125 as u32, + ); &handle126 }, }, @@ -1065,8 +1197,7 @@ pub mod exports { cgroupns_mode: cgroupns_mode129, command: command129, container_logs: container_logs129, - container_read_refresh_timeout_milliseconds: - container_read_refresh_timeout_milliseconds129, + container_read_refresh_timeout_milliseconds: container_read_refresh_timeout_milliseconds129, cpu_set: cpu_set129, cpu_shares: cpu_shares129, destroy_grace_seconds: destroy_grace_seconds129, @@ -1129,105 +1260,124 @@ pub mod exports { } = result127; *ptr128.add(0).cast::() = (attach129).take_handle() as i32; *ptr128.add(4).cast::() = (bridge129).take_handle() as i32; - *ptr128.add(8).cast::() = (capabilities129).take_handle() as i32; - *ptr128.add(12).cast::() = (cgroupns_mode129).take_handle() as i32; + *ptr128.add(8).cast::() = (capabilities129).take_handle() + as i32; + *ptr128.add(12).cast::() = (cgroupns_mode129).take_handle() + as i32; *ptr128.add(16).cast::() = (command129).take_handle() as i32; - *ptr128.add(20).cast::() = (container_logs129).take_handle() as i32; - *ptr128.add(24).cast::() = - (container_read_refresh_timeout_milliseconds129).take_handle() as i32; + *ptr128.add(20).cast::() = (container_logs129).take_handle() + as i32; + *ptr128.add(24).cast::() = (container_read_refresh_timeout_milliseconds129) + .take_handle() as i32; *ptr128.add(28).cast::() = (cpu_set129).take_handle() as i32; *ptr128.add(32).cast::() = (cpu_shares129).take_handle() as i32; - *ptr128.add(36).cast::() = (destroy_grace_seconds129).take_handle() as i32; + *ptr128.add(36).cast::() = (destroy_grace_seconds129) + .take_handle() as i32; *ptr128.add(40).cast::() = (devices129).take_handle() as i32; *ptr128.add(44).cast::() = (dns129).take_handle() as i32; *ptr128.add(48).cast::() = (dns_opts129).take_handle() as i32; - *ptr128.add(52).cast::() = (dns_searches129).take_handle() as i32; + *ptr128.add(52).cast::() = (dns_searches129).take_handle() + as i32; *ptr128.add(56).cast::() = (domainname129).take_handle() as i32; - *ptr128.add(60).cast::() = (entrypoints129).take_handle() as i32; + *ptr128.add(60).cast::() = (entrypoints129).take_handle() + as i32; *ptr128.add(64).cast::() = (envs129).take_handle() as i32; *ptr128.add(68).cast::() = (exit_code129).take_handle() as i32; *ptr128.add(72).cast::() = (gpus129).take_handle() as i32; *ptr128.add(76).cast::() = (group_adds129).take_handle() as i32; - *ptr128.add(80).cast::() = (healthcheck129).take_handle() as i32; + *ptr128.add(80).cast::() = (healthcheck129).take_handle() + as i32; *ptr128.add(84).cast::() = (hostname129).take_handle() as i32; *ptr128.add(88).cast::() = (hosts129).take_handle() as i32; *ptr128.add(92).cast::() = (image129).take_handle() as i32; *ptr128.add(96).cast::() = (init129).take_handle() as i32; *ptr128.add(100).cast::() = (ipc_mode129).take_handle() as i32; *ptr128.add(104).cast::() = (labels129).take_handle() as i32; - *ptr128.add(108).cast::() = (log_driver129).take_handle() as i32; + *ptr128.add(108).cast::() = (log_driver129).take_handle() + as i32; *ptr128.add(112).cast::() = (log_opts129).take_handle() as i32; *ptr128.add(116).cast::() = (logs129).take_handle() as i32; - *ptr128.add(120).cast::() = (max_retry_count129).take_handle() as i32; + *ptr128.add(120).cast::() = (max_retry_count129).take_handle() + as i32; *ptr128.add(124).cast::() = (memory129).take_handle() as i32; - *ptr128.add(128).cast::() = (memory_swap129).take_handle() as i32; + *ptr128.add(128).cast::() = (memory_swap129).take_handle() + as i32; *ptr128.add(132).cast::() = (mounts129).take_handle() as i32; *ptr128.add(136).cast::() = (must_run129).take_handle() as i32; *ptr128.add(140).cast::() = (name129).take_handle() as i32; - *ptr128.add(144).cast::() = (network_datas129).take_handle() as i32; - *ptr128.add(148).cast::() = (network_mode129).take_handle() as i32; - *ptr128.add(152).cast::() = (networks_advanced129).take_handle() as i32; + *ptr128.add(144).cast::() = (network_datas129).take_handle() + as i32; + *ptr128.add(148).cast::() = (network_mode129).take_handle() + as i32; + *ptr128.add(152).cast::() = (networks_advanced129).take_handle() + as i32; *ptr128.add(156).cast::() = (pid_mode129).take_handle() as i32; *ptr128.add(160).cast::() = (ports129).take_handle() as i32; - *ptr128.add(164).cast::() = (privileged129).take_handle() as i32; - *ptr128.add(168).cast::() = (publish_all_ports129).take_handle() as i32; + *ptr128.add(164).cast::() = (privileged129).take_handle() + as i32; + *ptr128.add(168).cast::() = (publish_all_ports129).take_handle() + as i32; *ptr128.add(172).cast::() = (read_only129).take_handle() as i32; - *ptr128.add(176).cast::() = (remove_volumes129).take_handle() as i32; + *ptr128.add(176).cast::() = (remove_volumes129).take_handle() + as i32; *ptr128.add(180).cast::() = (restart129).take_handle() as i32; *ptr128.add(184).cast::() = (rm129).take_handle() as i32; *ptr128.add(188).cast::() = (runtime129).take_handle() as i32; - *ptr128.add(192).cast::() = (security_opts129).take_handle() as i32; + *ptr128.add(192).cast::() = (security_opts129).take_handle() + as i32; *ptr128.add(196).cast::() = (shm_size129).take_handle() as i32; *ptr128.add(200).cast::() = (start129).take_handle() as i32; - *ptr128.add(204).cast::() = (stdin_open129).take_handle() as i32; - *ptr128.add(208).cast::() = (stop_signal129).take_handle() as i32; - *ptr128.add(212).cast::() = (stop_timeout129).take_handle() as i32; - *ptr128.add(216).cast::() = (storage_opts129).take_handle() as i32; + *ptr128.add(204).cast::() = (stdin_open129).take_handle() + as i32; + *ptr128.add(208).cast::() = (stop_signal129).take_handle() + as i32; + *ptr128.add(212).cast::() = (stop_timeout129).take_handle() + as i32; + *ptr128.add(216).cast::() = (storage_opts129).take_handle() + as i32; *ptr128.add(220).cast::() = (sysctls129).take_handle() as i32; *ptr128.add(224).cast::() = (tmpfs129).take_handle() as i32; *ptr128.add(228).cast::() = (tty129).take_handle() as i32; *ptr128.add(232).cast::() = (ulimits129).take_handle() as i32; *ptr128.add(236).cast::() = (uploads129).take_handle() as i32; *ptr128.add(240).cast::() = (user129).take_handle() as i32; - *ptr128.add(244).cast::() = (userns_mode129).take_handle() as i32; + *ptr128.add(244).cast::() = (userns_mode129).take_handle() + as i32; *ptr128.add(248).cast::() = (volumes129).take_handle() as i32; *ptr128.add(252).cast::() = (wait129).take_handle() as i32; - *ptr128.add(256).cast::() = (wait_timeout129).take_handle() as i32; - *ptr128.add(260).cast::() = (working_dir129).take_handle() as i32; + *ptr128.add(256).cast::() = (wait_timeout129).take_handle() + as i32; + *ptr128.add(260).cast::() = (working_dir129).take_handle() + as i32; ptr128 } pub trait Guest { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_docker_container_4_5_3_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:docker/container@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0) - } - };); - } + macro_rules! __export_pulumi_docker_container_4_5_3_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:docker/container@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8,) -> * mut u8 + { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_docker_container_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 264]); - static mut _RET_AREA: _RetArea = - _RetArea([::core::mem::MaybeUninit::uninit(); 264]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 264], + ); } - #[allow(dead_code, clippy::all)] pub mod image { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub build: &'a Output, pub build_on_preview: &'a Output, @@ -1236,7 +1386,10 @@ pub mod exports { pub skip_push: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("build", &self.build) .field("build-on-preview", &self.build_on_preview) @@ -1256,7 +1409,10 @@ pub mod exports { pub repo_digest: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("base-image-name", &self.base_image_name) .field("context", &self.context) @@ -1279,8 +1435,7 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1292,23 +1447,33 @@ pub mod exports { _rt::string_lift(bytes0), Args { build: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, build_on_preview: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, image_name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, registry: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, skip_push: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, }, @@ -1328,7 +1493,8 @@ pub mod exports { *ptr7.add(8).cast::() = (dockerfile8).take_handle() as i32; *ptr7.add(12).cast::() = (image_name8).take_handle() as i32; *ptr7.add(16).cast::() = (platform8).take_handle() as i32; - *ptr7.add(20).cast::() = (registry_server8).take_handle() as i32; + *ptr7.add(20).cast::() = (registry_server8).take_handle() + as i32; *ptr7.add(24).cast::() = (repo_digest8).take_handle() as i32; ptr7 } @@ -1336,33 +1502,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_docker_image_4_5_3_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:docker/image@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6) - } - };); - } + macro_rules! __export_pulumi_docker_image_4_5_3_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:docker/image@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32,) -> * + mut u8 { $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, + arg1, arg2, arg3, arg4, arg5, arg6) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_docker_image_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 28], + ); } - #[allow(dead_code, clippy::all)] pub mod network { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub attachable: &'a Output, pub check_duplicate: &'a Output, @@ -1378,7 +1542,10 @@ pub mod exports { pub options: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("attachable", &self.attachable) .field("check-duplicate", &self.check_duplicate) @@ -1411,7 +1578,10 @@ pub mod exports { pub scope: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("attachable", &self.attachable) .field("check-duplicate", &self.check_duplicate) @@ -1447,8 +1617,7 @@ pub mod exports { arg12: i32, arg13: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1467,51 +1636,75 @@ pub mod exports { _rt::string_lift(bytes0), Args { attachable: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, check_duplicate: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, driver: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, ingress: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, internal: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, ipam_configs: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, ipam_driver: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, ipam_options: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, ipv6: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, labels: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, name: { - handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg12 as u32); + handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg12 as u32, + ); &handle11 }, options: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg13 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg13 as u32, + ); &handle12 }, }, @@ -1533,7 +1726,8 @@ pub mod exports { scope: scope15, } = result13; *ptr14.add(0).cast::() = (attachable15).take_handle() as i32; - *ptr14.add(4).cast::() = (check_duplicate15).take_handle() as i32; + *ptr14.add(4).cast::() = (check_duplicate15).take_handle() + as i32; *ptr14.add(8).cast::() = (driver15).take_handle() as i32; *ptr14.add(12).cast::() = (ingress15).take_handle() as i32; *ptr14.add(16).cast::() = (internal15).take_handle() as i32; @@ -1551,33 +1745,33 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_docker_network_4_5_3_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:docker/network@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,arg12: i32,arg13: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) - } - };); - } + macro_rules! __export_pulumi_docker_network_4_5_3_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:docker/network@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32, arg12 : + i32, arg13 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_docker_network_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 52]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 52]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 52], + ); } - #[allow(dead_code, clippy::all)] pub mod plugin { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub alias: &'a Output, pub enable_timeout: &'a Output, @@ -1590,7 +1784,10 @@ pub mod exports { pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("alias", &self.alias) .field("enable-timeout", &self.enable_timeout) @@ -1617,7 +1814,10 @@ pub mod exports { pub plugin_reference: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("alias", &self.alias) .field("enable-timeout", &self.enable_timeout) @@ -1647,8 +1847,7 @@ pub mod exports { arg9: i32, arg10: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1664,39 +1863,57 @@ pub mod exports { _rt::string_lift(bytes0), Args { alias: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, enable_timeout: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, enabled: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, envs: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, force_destroy: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, force_disable: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, grant_all_permissions: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, grant_permissions: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, name: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, }, @@ -1715,48 +1932,53 @@ pub mod exports { plugin_reference: plugin_reference12, } = result10; *ptr11.add(0).cast::() = (alias12).take_handle() as i32; - *ptr11.add(4).cast::() = (enable_timeout12).take_handle() as i32; + *ptr11.add(4).cast::() = (enable_timeout12).take_handle() + as i32; *ptr11.add(8).cast::() = (enabled12).take_handle() as i32; *ptr11.add(12).cast::() = (envs12).take_handle() as i32; - *ptr11.add(16).cast::() = (force_destroy12).take_handle() as i32; - *ptr11.add(20).cast::() = (force_disable12).take_handle() as i32; - *ptr11.add(24).cast::() = (grant_all_permissions12).take_handle() as i32; - *ptr11.add(28).cast::() = (grant_permissions12).take_handle() as i32; + *ptr11.add(16).cast::() = (force_destroy12).take_handle() + as i32; + *ptr11.add(20).cast::() = (force_disable12).take_handle() + as i32; + *ptr11.add(24).cast::() = (grant_all_permissions12) + .take_handle() as i32; + *ptr11.add(28).cast::() = (grant_permissions12).take_handle() + as i32; *ptr11.add(32).cast::() = (name12).take_handle() as i32; - *ptr11.add(36).cast::() = (plugin_reference12).take_handle() as i32; + *ptr11.add(36).cast::() = (plugin_reference12).take_handle() + as i32; ptr11 } pub trait Guest { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_docker_plugin_4_5_3_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:docker/plugin@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) - } - };); -} + macro_rules! __export_pulumi_docker_plugin_4_5_3_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:docker/plugin@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_docker_plugin_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 40]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 40]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 40], + ); } - #[allow(dead_code, clippy::all)] pub mod registry_image { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub insecure_skip_verify: &'a Output, pub keep_remotely: &'a Output, @@ -1764,7 +1986,10 @@ pub mod exports { pub triggers: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("insecure-skip-verify", &self.insecure_skip_verify) .field("keep-remotely", &self.keep_remotely) @@ -1781,7 +2006,10 @@ pub mod exports { pub triggers: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("insecure-skip-verify", &self.insecure_skip_verify) .field("keep-remotely", &self.keep_remotely) @@ -1801,8 +2029,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1813,19 +2040,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { insecure_skip_verify: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, keep_remotely: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, triggers: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -1838,7 +2073,8 @@ pub mod exports { sha256_digest: sha256_digest7, triggers: triggers7, } = result5; - *ptr6.add(0).cast::() = (insecure_skip_verify7).take_handle() as i32; + *ptr6.add(0).cast::() = (insecure_skip_verify7).take_handle() + as i32; *ptr6.add(4).cast::() = (keep_remotely7).take_handle() as i32; *ptr6.add(8).cast::() = (name7).take_handle() as i32; *ptr6.add(12).cast::() = (sha256_digest7).take_handle() as i32; @@ -1849,33 +2085,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_docker_registry_image_4_5_3_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:docker/registry-image@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_docker_registry_image_4_5_3_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:docker/registry-image@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_docker_registry_image_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod remote_image { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub build: &'a Output, pub force_remove: &'a Output, @@ -1886,7 +2120,10 @@ pub mod exports { pub triggers: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("build", &self.build) .field("force-remove", &self.force_remove) @@ -1910,7 +2147,10 @@ pub mod exports { pub triggers: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("build", &self.build) .field("force-remove", &self.force_remove) @@ -1937,8 +2177,7 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1952,31 +2191,45 @@ pub mod exports { _rt::string_lift(bytes0), Args { build: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, force_remove: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, keep_locally: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, platform: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, pull_triggers: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, triggers: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, }, @@ -2008,40 +2261,42 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_docker_remote_image_4_5_3_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:docker/remote-image@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) - } - };); -} + macro_rules! __export_pulumi_docker_remote_image_4_5_3_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:docker/remote-image@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_docker_remote_image_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 36], + ); } - #[allow(dead_code, clippy::all)] pub mod secret { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub data: &'a Output, pub labels: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("data", &self.data) .field("labels", &self.labels) @@ -2055,7 +2310,10 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("data", &self.data) .field("labels", &self.labels) @@ -2072,8 +2330,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2083,25 +2340,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { data: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, labels: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, name: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, ); let ptr5 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - data: data6, - labels: labels6, - name: name6, - } = result4; + let Res { data: data6, labels: labels6, name: name6 } = result4; *ptr5.add(0).cast::() = (data6).take_handle() as i32; *ptr5.add(4).cast::() = (labels6).take_handle() as i32; *ptr5.add(8).cast::() = (name6).take_handle() as i32; @@ -2111,33 +2370,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_docker_secret_4_5_3_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:docker/secret@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); -} + macro_rules! __export_pulumi_docker_secret_4_5_3_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:docker/secret@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_docker_secret_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod service { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub auth: &'a Output, pub converge_config: &'a Output, @@ -2150,7 +2407,10 @@ pub mod exports { pub update_config: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("auth", &self.auth) .field("converge-config", &self.converge_config) @@ -2176,7 +2436,10 @@ pub mod exports { pub update_config: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("auth", &self.auth) .field("converge-config", &self.converge_config) @@ -2205,8 +2468,7 @@ pub mod exports { arg9: i32, arg10: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2222,39 +2484,57 @@ pub mod exports { _rt::string_lift(bytes0), Args { auth: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, converge_config: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, endpoint_spec: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, labels: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, mode: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, name: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, rollback_config: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, task_spec: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, update_config: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, }, @@ -2272,53 +2552,58 @@ pub mod exports { update_config: update_config12, } = result10; *ptr11.add(0).cast::() = (auth12).take_handle() as i32; - *ptr11.add(4).cast::() = (converge_config12).take_handle() as i32; + *ptr11.add(4).cast::() = (converge_config12).take_handle() + as i32; *ptr11.add(8).cast::() = (endpoint_spec12).take_handle() as i32; *ptr11.add(12).cast::() = (labels12).take_handle() as i32; *ptr11.add(16).cast::() = (mode12).take_handle() as i32; *ptr11.add(20).cast::() = (name12).take_handle() as i32; - *ptr11.add(24).cast::() = (rollback_config12).take_handle() as i32; + *ptr11.add(24).cast::() = (rollback_config12).take_handle() + as i32; *ptr11.add(28).cast::() = (task_spec12).take_handle() as i32; - *ptr11.add(32).cast::() = (update_config12).take_handle() as i32; + *ptr11.add(32).cast::() = (update_config12).take_handle() + as i32; ptr11 } pub trait Guest { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_docker_service_4_5_3_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:docker/service@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) - } - };); -} + macro_rules! __export_pulumi_docker_service_4_5_3_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:docker/service@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_docker_service_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 36], + ); } - #[allow(dead_code, clippy::all)] pub mod service_config { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub data: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("data", &self.data) .field("name", &self.name) @@ -2330,7 +2615,10 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("data", &self.data) .field("name", &self.name) @@ -2345,8 +2633,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -2355,20 +2642,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { data: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, name: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - data: data5, - name: name5, - } = result3; + let Res { data: data5, name: name5 } = result3; *ptr4.add(0).cast::() = (data5).take_handle() as i32; *ptr4.add(4).cast::() = (name5).take_handle() as i32; ptr4 @@ -2377,39 +2665,39 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_docker_service_config_4_5_3_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:docker/service-config@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_docker_service_config_4_5_3_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:docker/service-config@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_docker_service_config_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod tag { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub source_image: &'a Output, pub target_image: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("source-image", &self.source_image) .field("target-image", &self.target_image) @@ -2422,7 +2710,10 @@ pub mod exports { pub target_image: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("source-image", &self.source_image) .field("source-image-id", &self.source_image_id) @@ -2438,8 +2729,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -2448,11 +2738,15 @@ pub mod exports { _rt::string_lift(bytes0), Args { source_image: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, target_image: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, @@ -2472,33 +2766,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_docker_tag_4_5_3_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:docker/tag@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); -} + macro_rules! __export_pulumi_docker_tag_4_5_3_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:docker/tag@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_docker_tag_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 12], + ); } - #[allow(dead_code, clippy::all)] pub mod volume { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub driver: &'a Output, pub driver_opts: &'a Output, @@ -2506,7 +2797,10 @@ pub mod exports { pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("driver", &self.driver) .field("driver-opts", &self.driver_opts) @@ -2523,7 +2817,10 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("driver", &self.driver) .field("driver-opts", &self.driver_opts) @@ -2543,8 +2840,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2555,19 +2851,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { driver: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, driver_opts: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, labels: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, name: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -2591,31 +2895,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_docker_volume_4_5_3_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:docker/volume@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_docker_volume_4_5_3_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:docker/volume@4.5.3-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_docker_volume_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } } } } mod _rt { - use core::fmt; use core::marker; use core::sync::atomic::{AtomicU32, Ordering::Relaxed}; - /// A type which represents a component model resource, either imported or /// exported into this component. /// @@ -2630,16 +2934,9 @@ mod _rt { /// resources. #[repr(transparent)] pub struct Resource { - // NB: This would ideally be `u32` but it is not. The fact that this has - // interior mutability is not exposed in the API of this type except for the - // `take_handle` method which is supposed to in theory be private. - // - // This represents, almost all the time, a valid handle value. When it's - // invalid it's stored as `u32::MAX`. handle: AtomicU32, _marker: marker::PhantomData, } - /// A trait which all wasm resources implement, namely providing the ability to /// drop a resource. /// @@ -2649,7 +2946,6 @@ mod _rt { /// Invokes the `[resource-drop]...` intrinsic. unsafe fn drop(handle: u32); } - impl Resource { #[doc(hidden)] pub unsafe fn from_handle(handle: u32) -> Self { @@ -2659,7 +2955,6 @@ mod _rt { _marker: marker::PhantomData, } } - /// Takes ownership of the handle owned by `resource`. /// /// Note that this ideally would be `into_handle` taking `Resource` by @@ -2676,31 +2971,21 @@ mod _rt { pub fn take_handle(resource: &Resource) -> u32 { resource.handle.swap(u32::MAX, Relaxed) } - #[doc(hidden)] pub fn handle(resource: &Resource) -> u32 { resource.handle.load(Relaxed) } } - impl fmt::Debug for Resource { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_struct("Resource") - .field("handle", &self.handle) - .finish() + f.debug_struct("Resource").field("handle", &self.handle).finish() } } - impl Drop for Resource { fn drop(&mut self) { unsafe { match self.handle.load(Relaxed) { - // If this handle was "taken" then don't do anything in the - // destructor. u32::MAX => {} - - // ... but otherwise do actually destroy it with the imported - // component model intrinsic as defined through `T`. other => T::drop(other), } } @@ -2721,16 +3006,14 @@ mod _rt { return; } let layout = alloc::Layout::from_size_align_unchecked(size, align); - alloc::dealloc(ptr as *mut u8, layout); + alloc::dealloc(ptr, layout); } - #[cfg(target_arch = "wasm32")] pub fn run_ctors_once() { wit_bindgen_rt::run_ctors_once(); } extern crate alloc as alloc_crate; } - /// Generates `#[no_mangle]` functions to export the specified type as the /// root implementation of all generated traits. /// @@ -2749,28 +3032,50 @@ mod _rt { /// ``` #[allow(unused_macros)] #[doc(hidden)] - macro_rules! __export_docker_pulumi_impl { - ($ty:ident) => (self::export!($ty with_types_in self);); - ($ty:ident with_types_in $($path_to_types_root:tt)*) => ( - $($path_to_types_root)*::exports::pulumi::docker::container::__export_pulumi_docker_container_4_5_3_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::docker::container); - $($path_to_types_root)*::exports::pulumi::docker::image::__export_pulumi_docker_image_4_5_3_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::docker::image); - $($path_to_types_root)*::exports::pulumi::docker::network::__export_pulumi_docker_network_4_5_3_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::docker::network); - $($path_to_types_root)*::exports::pulumi::docker::plugin::__export_pulumi_docker_plugin_4_5_3_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::docker::plugin); - $($path_to_types_root)*::exports::pulumi::docker::registry_image::__export_pulumi_docker_registry_image_4_5_3_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::docker::registry_image); - $($path_to_types_root)*::exports::pulumi::docker::remote_image::__export_pulumi_docker_remote_image_4_5_3_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::docker::remote_image); - $($path_to_types_root)*::exports::pulumi::docker::secret::__export_pulumi_docker_secret_4_5_3_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::docker::secret); - $($path_to_types_root)*::exports::pulumi::docker::service::__export_pulumi_docker_service_4_5_3_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::docker::service); - $($path_to_types_root)*::exports::pulumi::docker::service_config::__export_pulumi_docker_service_config_4_5_3_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::docker::service_config); - $($path_to_types_root)*::exports::pulumi::docker::tag::__export_pulumi_docker_tag_4_5_3_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::docker::tag); - $($path_to_types_root)*::exports::pulumi::docker::volume::__export_pulumi_docker_volume_4_5_3_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::docker::volume); - ) + ($ty:ident) => { + self::export!($ty with_types_in self); + }; + ($ty:ident with_types_in $($path_to_types_root:tt)*) => { + $($path_to_types_root)*:: + exports::pulumi::docker::container::__export_pulumi_docker_container_4_5_3_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::docker::container); + $($path_to_types_root)*:: + exports::pulumi::docker::image::__export_pulumi_docker_image_4_5_3_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::docker::image); + $($path_to_types_root)*:: + exports::pulumi::docker::network::__export_pulumi_docker_network_4_5_3_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::docker::network); + $($path_to_types_root)*:: + exports::pulumi::docker::plugin::__export_pulumi_docker_plugin_4_5_3_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::docker::plugin); + $($path_to_types_root)*:: + exports::pulumi::docker::registry_image::__export_pulumi_docker_registry_image_4_5_3_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::docker::registry_image); + $($path_to_types_root)*:: + exports::pulumi::docker::remote_image::__export_pulumi_docker_remote_image_4_5_3_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::docker::remote_image); + $($path_to_types_root)*:: + exports::pulumi::docker::secret::__export_pulumi_docker_secret_4_5_3_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::docker::secret); + $($path_to_types_root)*:: + exports::pulumi::docker::service::__export_pulumi_docker_service_4_5_3_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::docker::service); + $($path_to_types_root)*:: + exports::pulumi::docker::service_config::__export_pulumi_docker_service_config_4_5_3_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::docker::service_config); + $($path_to_types_root)*:: + exports::pulumi::docker::tag::__export_pulumi_docker_tag_4_5_3_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::docker::tag); + $($path_to_types_root)*:: + exports::pulumi::docker::volume::__export_pulumi_docker_volume_4_5_3_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::docker::volume); + }; } #[doc(inline)] pub(crate) use __export_docker_pulumi_impl as export; - #[cfg(target_arch = "wasm32")] -#[link_section = "component-type:wit-bindgen:0.25.0:docker-pulumi:encoded world"] +#[link_section = "component-type:wit-bindgen:0.30.0:docker-pulumi:encoded world"] #[doc(hidden)] pub static __WIT_BINDGEN_COMPONENT_TYPE: [u8; 5066] = *b"\ \0asm\x0d\0\x01\0\0\x19\x16wit-component-encoding\x04\0\x07\xc6&\x01A\x02\x01A\x1b\ @@ -2877,11 +3182,9 @@ point\x05\x04name\x05\x04\0\x03res\x03\0\x06\x01@\x02\x04names\x04args\x04\0\x07 \x04\0\x06invoke\x01\x08\x04\x015pulumi:docker/volume@4.5.3-DIVIDER-ZERO.ZERO.ZE\ RO-DEV\x05\x0d\x04\x01, } - impl Output { #[doc(hidden)] pub unsafe fn from_handle(handle: u32) -> Self { @@ -26,24 +20,20 @@ pub mod component { handle: _rt::Resource::from_handle(handle), } } - #[doc(hidden)] pub fn take_handle(&self) -> u32 { _rt::Resource::take_handle(&self.handle) } - #[doc(hidden)] pub fn handle(&self) -> u32 { _rt::Resource::handle(&self.handle) } } - unsafe impl _rt::WasmResource for Output { #[inline] unsafe fn drop(_handle: u32) { #[cfg(not(target_arch = "wasm32"))] unreachable!(); - #[cfg(target_arch = "wasm32")] { #[link( @@ -53,12 +43,10 @@ pub mod component { #[link_name = "[resource-drop]output"] fn drop(_: u32); } - drop(_handle); } } } - impl Output { #[allow(unused_unsafe, clippy::all)] pub fn new(value: &str) -> Self { @@ -66,7 +54,6 @@ pub mod component { let vec0 = value; let ptr0 = vec0.as_ptr().cast::(); let len0 = vec0.len(); - #[cfg(target_arch = "wasm32")] #[link( wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" @@ -75,7 +62,6 @@ pub mod component { #[link_name = "[constructor]output"] fn wit_import(_: *mut u8, _: usize) -> i32; } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: *mut u8, _: usize) -> i32 { unreachable!() @@ -92,7 +78,6 @@ pub mod component { let vec0 = function_name; let ptr0 = vec0.as_ptr().cast::(); let len0 = vec0.len(); - #[cfg(target_arch = "wasm32")] #[link( wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" @@ -101,12 +86,15 @@ pub mod component { #[link_name = "[method]output.map"] fn wit_import(_: i32, _: *mut u8, _: usize) -> i32; } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: i32, _: *mut u8, _: usize) -> i32 { unreachable!() } - let ret = wit_import((self).handle() as i32, ptr0.cast_mut(), len0); + let ret = wit_import( + (self).handle() as i32, + ptr0.cast_mut(), + len0, + ); Output::from_handle(ret as u32) } } @@ -116,7 +104,10 @@ pub mod component { unsafe { let vec0 = outputs; let len0 = vec0.len(); - let layout0 = _rt::alloc::Layout::from_size_align_unchecked(vec0.len() * 4, 4); + let layout0 = _rt::alloc::Layout::from_size_align_unchecked( + vec0.len() * 4, + 4, + ); let result0 = if layout0.size() != 0 { let ptr = _rt::alloc::alloc(layout0).cast::(); if ptr.is_null() { @@ -124,9 +115,7 @@ pub mod component { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec0.into_iter().enumerate() { let base = result0.add(i * 4); @@ -134,14 +123,14 @@ pub mod component { *base.add(0).cast::() = (e).handle() as i32; } } - #[cfg(target_arch = "wasm32")] - #[link(wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV")] + #[link( + wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" + )] extern "C" { #[link_name = "combine"] fn wit_import(_: *mut u8, _: usize) -> i32; } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: *mut u8, _: usize) -> i32 { unreachable!() @@ -154,14 +143,11 @@ pub mod component { } } } - #[allow(dead_code, clippy::all)] pub mod register_interface { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; pub type Output = super::super::super::component::pulumi_wasm::output_interface::Output; pub struct ObjectField<'a> { @@ -169,7 +155,10 @@ pub mod component { pub value: &'a Output, } impl<'a> ::core::fmt::Debug for ObjectField<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("ObjectField") .field("name", &self.name) .field("value", &self.value) @@ -181,10 +170,11 @@ pub mod component { pub name: _rt::String, } impl ::core::fmt::Debug for ResultField { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { - f.debug_struct("ResultField") - .field("name", &self.name) - .finish() + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { + f.debug_struct("ResultField").field("name", &self.name).finish() } } pub struct RegisterResourceResultField { @@ -192,7 +182,10 @@ pub mod component { pub output: Output, } impl ::core::fmt::Debug for RegisterResourceResultField { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResultField") .field("name", &self.name) .field("output", &self.output) @@ -206,7 +199,10 @@ pub mod component { pub results: _rt::Vec, } impl<'a> ::core::fmt::Debug for RegisterResourceRequest<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceRequest") .field("type", &self.type_) .field("name", &self.name) @@ -219,14 +215,19 @@ pub mod component { pub fields: _rt::Vec, } impl ::core::fmt::Debug for RegisterResourceResult { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResult") .field("fields", &self.fields) .finish() } } #[allow(unused_unsafe, clippy::all)] - pub fn register(request: &RegisterResourceRequest<'_>) -> RegisterResourceResult { + pub fn register( + request: &RegisterResourceRequest<'_>, + ) -> RegisterResourceResult { unsafe { #[repr(align(4))] struct RetArea([::core::mem::MaybeUninit; 8]); @@ -245,7 +246,10 @@ pub mod component { let len2 = vec2.len(); let vec5 = object0; let len5 = vec5.len(); - let layout5 = _rt::alloc::Layout::from_size_align_unchecked(vec5.len() * 12, 4); + let layout5 = _rt::alloc::Layout::from_size_align_unchecked( + vec5.len() * 12, + 4, + ); let result5 = if layout5.size() != 0 { let ptr = _rt::alloc::alloc(layout5).cast::(); if ptr.is_null() { @@ -253,17 +257,12 @@ pub mod component { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec5.into_iter().enumerate() { let base = result5.add(i * 12); { - let ObjectField { - name: name3, - value: value3, - } = e; + let ObjectField { name: name3, value: value3 } = e; let vec4 = name3; let ptr4 = vec4.as_ptr().cast::(); let len4 = vec4.len(); @@ -274,7 +273,10 @@ pub mod component { } let vec8 = results0; let len8 = vec8.len(); - let layout8 = _rt::alloc::Layout::from_size_align_unchecked(vec8.len() * 8, 4); + let layout8 = _rt::alloc::Layout::from_size_align_unchecked( + vec8.len() * 8, + 4, + ); let result8 = if layout8.size() != 0 { let ptr = _rt::alloc::alloc(layout8).cast::(); if ptr.is_null() { @@ -282,9 +284,7 @@ pub mod component { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec8.into_iter().enumerate() { let base = result8.add(i * 8); @@ -316,7 +316,6 @@ pub mod component { _: *mut u8, ); } - #[cfg(not(target_arch = "wasm32"))] fn wit_import( _: *mut u8, @@ -353,13 +352,18 @@ pub mod component { let l12 = *base.add(0).cast::<*mut u8>(); let l13 = *base.add(4).cast::(); let len14 = l13; - let bytes14 = _rt::Vec::from_raw_parts(l12.cast(), len14, len14); + let bytes14 = _rt::Vec::from_raw_parts( + l12.cast(), + len14, + len14, + ); let l15 = *base.add(8).cast::(); - - RegisterResourceResultField{ - name: _rt::string_lift(bytes14), - output: super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(l15 as u32), - } + RegisterResourceResultField { + name: _rt::string_lift(bytes14), + output: super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + l15 as u32, + ), + } }; result16.push(e16); } @@ -370,7 +374,9 @@ pub mod component { if layout8.size() != 0 { _rt::alloc::dealloc(result8.cast(), layout8); } - RegisterResourceResult { fields: result16 } + RegisterResourceResult { + fields: result16, + } } } } @@ -386,18 +392,18 @@ pub mod exports { pub mod random_bytes { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, pub length: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("keepers", &self.keepers) .field("length", &self.length) @@ -411,7 +417,10 @@ pub mod exports { pub length: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("base64", &self.base64) .field("hex", &self.hex) @@ -428,8 +437,7 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -438,11 +446,15 @@ pub mod exports { _rt::string_lift(bytes0), Args { keepers: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, length: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, }, @@ -464,40 +476,40 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_random_random_bytes_4_15_0_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:random/random-bytes@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3) - } - };); - } + macro_rules! __export_pulumi_random_random_bytes_4_15_0_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:random/random-bytes@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_random_random_bytes_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod random_id { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub byte_length: &'a Output, pub keepers: &'a Output, pub prefix: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("byte-length", &self.byte_length) .field("keepers", &self.keepers) @@ -515,7 +527,10 @@ pub mod exports { pub prefix: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("b64-std", &self.b64_std) .field("b64-url", &self.b64_url) @@ -536,8 +551,7 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -547,15 +561,21 @@ pub mod exports { _rt::string_lift(bytes0), Args { byte_length: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, keepers: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, prefix: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, }, @@ -583,33 +603,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_random_random_id_4_15_0_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:random/random-id@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4) - } - };); - } + macro_rules! __export_pulumi_random_random_id_4_15_0_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:random/random-id@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_random_random_id_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 28], + ); } - #[allow(dead_code, clippy::all)] pub mod random_integer { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, pub max: &'a Output, @@ -617,7 +635,10 @@ pub mod exports { pub seed: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("keepers", &self.keepers) .field("max", &self.max) @@ -634,7 +655,10 @@ pub mod exports { pub seed: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("keepers", &self.keepers) .field("max", &self.max) @@ -654,8 +678,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -666,19 +689,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { keepers: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, max: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, min: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, seed: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -702,33 +733,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_random_random_integer_4_15_0_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:random/random-integer@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); - } + macro_rules! __export_pulumi_random_random_integer_4_15_0_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:random/random-integer@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_random_random_integer_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod random_password { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, pub length: &'a Output, @@ -744,7 +773,10 @@ pub mod exports { pub upper: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("keepers", &self.keepers) .field("length", &self.length) @@ -778,7 +810,10 @@ pub mod exports { pub upper: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("bcrypt-hash", &self.bcrypt_hash) .field("keepers", &self.keepers) @@ -815,8 +850,7 @@ pub mod exports { arg12: i32, arg13: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -835,51 +869,75 @@ pub mod exports { _rt::string_lift(bytes0), Args { keepers: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, length: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, lower: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, min_lower: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, min_numeric: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, min_special: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, min_upper: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, number: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, numeric: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, override_special: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, special: { - handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg12 as u32); + handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg12 as u32, + ); &handle11 }, upper: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg13 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg13 as u32, + ); &handle12 }, }, @@ -911,7 +969,8 @@ pub mod exports { *ptr14.add(28).cast::() = (min_upper15).take_handle() as i32; *ptr14.add(32).cast::() = (number15).take_handle() as i32; *ptr14.add(36).cast::() = (numeric15).take_handle() as i32; - *ptr14.add(40).cast::() = (override_special15).take_handle() as i32; + *ptr14.add(40).cast::() = (override_special15).take_handle() + as i32; *ptr14.add(44).cast::() = (result15).take_handle() as i32; *ptr14.add(48).cast::() = (special15).take_handle() as i32; *ptr14.add(52).cast::() = (upper15).take_handle() as i32; @@ -921,33 +980,33 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_random_random_password_4_15_0_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:random/random-password@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,arg12: i32,arg13: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) - } - };); -} + macro_rules! __export_pulumi_random_random_password_4_15_0_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:random/random-password@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32, arg12 : + i32, arg13 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_random_random_password_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 56]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 56]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 56], + ); } - #[allow(dead_code, clippy::all)] pub mod random_pet { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, pub length: &'a Output, @@ -955,7 +1014,10 @@ pub mod exports { pub separator: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("keepers", &self.keepers) .field("length", &self.length) @@ -971,7 +1033,10 @@ pub mod exports { pub separator: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("keepers", &self.keepers) .field("length", &self.length) @@ -990,8 +1055,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1002,19 +1066,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { keepers: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, length: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, prefix: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, separator: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -1036,33 +1108,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_random_random_pet_4_15_0_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:random/random-pet@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_random_random_pet_4_15_0_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:random/random-pet@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_random_random_pet_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 16], + ); } - #[allow(dead_code, clippy::all)] pub mod random_shuffle { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub inputs: &'a Output, pub keepers: &'a Output, @@ -1070,7 +1140,10 @@ pub mod exports { pub seed: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("inputs", &self.inputs) .field("keepers", &self.keepers) @@ -1087,7 +1160,10 @@ pub mod exports { pub seed: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("inputs", &self.inputs) .field("keepers", &self.keepers) @@ -1107,8 +1183,7 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1119,19 +1194,27 @@ pub mod exports { _rt::string_lift(bytes0), Args { inputs: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, keepers: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, result_count: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, seed: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, }, @@ -1155,33 +1238,31 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_random_random_shuffle_4_15_0_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:random/random-shuffle@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5) - } - };); -} + macro_rules! __export_pulumi_random_random_shuffle_4_15_0_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:random/random-shuffle@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32,) -> * mut u8 { + $($path_to_types)*:: _export_invoke_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_random_random_shuffle_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 20], + ); } - #[allow(dead_code, clippy::all)] pub mod random_string { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, pub length: &'a Output, @@ -1197,7 +1278,10 @@ pub mod exports { pub upper: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Args") .field("keepers", &self.keepers) .field("length", &self.length) @@ -1230,7 +1314,10 @@ pub mod exports { pub upper: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("keepers", &self.keepers) .field("length", &self.length) @@ -1266,8 +1353,7 @@ pub mod exports { arg12: i32, arg13: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1286,51 +1372,75 @@ pub mod exports { _rt::string_lift(bytes0), Args { keepers: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, length: { - handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg3 as u32); + handle2 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg3 as u32, + ); &handle2 }, lower: { - handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg4 as u32); + handle3 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg4 as u32, + ); &handle3 }, min_lower: { - handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg5 as u32); + handle4 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg5 as u32, + ); &handle4 }, min_numeric: { - handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg6 as u32); + handle5 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg6 as u32, + ); &handle5 }, min_special: { - handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg7 as u32); + handle6 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg7 as u32, + ); &handle6 }, min_upper: { - handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg8 as u32); + handle7 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg8 as u32, + ); &handle7 }, number: { - handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg9 as u32); + handle8 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg9 as u32, + ); &handle8 }, numeric: { - handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg10 as u32); + handle9 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg10 as u32, + ); &handle9 }, override_special: { - handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg11 as u32); + handle10 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg11 as u32, + ); &handle10 }, special: { - handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg12 as u32); + handle11 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg12 as u32, + ); &handle11 }, upper: { - handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg13 as u32); + handle12 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg13 as u32, + ); &handle12 }, }, @@ -1360,7 +1470,8 @@ pub mod exports { *ptr14.add(24).cast::() = (min_upper15).take_handle() as i32; *ptr14.add(28).cast::() = (number15).take_handle() as i32; *ptr14.add(32).cast::() = (numeric15).take_handle() as i32; - *ptr14.add(36).cast::() = (override_special15).take_handle() as i32; + *ptr14.add(36).cast::() = (override_special15).take_handle() + as i32; *ptr14.add(40).cast::() = (result15).take_handle() as i32; *ptr14.add(44).cast::() = (special15).take_handle() as i32; *ptr14.add(48).cast::() = (upper15).take_handle() as i32; @@ -1370,41 +1481,42 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_random_random_string_4_15_0_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:random/random-string@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,arg3: i32,arg4: i32,arg5: i32,arg6: i32,arg7: i32,arg8: i32,arg9: i32,arg10: i32,arg11: i32,arg12: i32,arg13: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) - } - };); -} + macro_rules! __export_pulumi_random_random_string_4_15_0_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:random/random-string@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32, arg3 : i32, arg4 : i32, arg5 : i32, arg6 : i32, arg7 + : i32, arg8 : i32, arg9 : i32, arg10 : i32, arg11 : i32, arg12 : + i32, arg13 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2, arg3, arg4, arg5, + arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_random_random_string_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 52]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 52]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 52], + ); } - #[allow(dead_code, clippy::all)] pub mod random_uuid { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = - super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { - f.debug_struct("Args") - .field("keepers", &self.keepers) - .finish() + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { + f.debug_struct("Args").field("keepers", &self.keepers).finish() } } pub struct Res { @@ -1412,7 +1524,10 @@ pub mod exports { pub result: Output, } impl ::core::fmt::Debug for Res { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Res") .field("keepers", &self.keepers) .field("result", &self.result) @@ -1426,8 +1541,7 @@ pub mod exports { arg1: usize, arg2: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let handle1; let len0 = arg1; let bytes0 = _rt::Vec::from_raw_parts(arg0.cast(), len0, len0); @@ -1435,16 +1549,15 @@ pub mod exports { _rt::string_lift(bytes0), Args { keepers: { - handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle(arg2 as u32); + handle1 = super::super::super::super::component::pulumi_wasm::output_interface::Output::from_handle( + arg2 as u32, + ); &handle1 }, }, ); let ptr3 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { - keepers: keepers4, - result: result4, - } = result2; + let Res { keepers: keepers4, result: result4 } = result2; *ptr3.add(0).cast::() = (keepers4).take_handle() as i32; *ptr3.add(4).cast::() = (result4).take_handle() as i32; ptr3 @@ -1453,31 +1566,30 @@ pub mod exports { fn invoke(name: _rt::String, args: Args<'_>) -> Res; } #[doc(hidden)] - - macro_rules! __export_pulumi_random_random_uuid_4_15_0_divider_zero_zero_zero_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "pulumi:random/random-uuid@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] - unsafe extern "C" fn export_invoke(arg0: *mut u8,arg1: usize,arg2: i32,) -> *mut u8 { - $($path_to_types)*::_export_invoke_cabi::<$ty>(arg0, arg1, arg2) - } - };); -} + macro_rules! __export_pulumi_random_random_uuid_4_15_0_divider_zero_zero_zero_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "pulumi:random/random-uuid@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV#invoke"] + unsafe extern "C" fn export_invoke(arg0 : * mut u8, arg1 : usize, + arg2 : i32,) -> * mut u8 { $($path_to_types)*:: + _export_invoke_cabi::<$ty > (arg0, arg1, arg2) } }; + }; + } #[doc(hidden)] pub(crate) use __export_pulumi_random_random_uuid_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } } } } mod _rt { - use core::fmt; use core::marker; use core::sync::atomic::{AtomicU32, Ordering::Relaxed}; - /// A type which represents a component model resource, either imported or /// exported into this component. /// @@ -1492,16 +1604,9 @@ mod _rt { /// resources. #[repr(transparent)] pub struct Resource { - // NB: This would ideally be `u32` but it is not. The fact that this has - // interior mutability is not exposed in the API of this type except for the - // `take_handle` method which is supposed to in theory be private. - // - // This represents, almost all the time, a valid handle value. When it's - // invalid it's stored as `u32::MAX`. handle: AtomicU32, _marker: marker::PhantomData, } - /// A trait which all wasm resources implement, namely providing the ability to /// drop a resource. /// @@ -1511,7 +1616,6 @@ mod _rt { /// Invokes the `[resource-drop]...` intrinsic. unsafe fn drop(handle: u32); } - impl Resource { #[doc(hidden)] pub unsafe fn from_handle(handle: u32) -> Self { @@ -1521,7 +1625,6 @@ mod _rt { _marker: marker::PhantomData, } } - /// Takes ownership of the handle owned by `resource`. /// /// Note that this ideally would be `into_handle` taking `Resource` by @@ -1538,31 +1641,21 @@ mod _rt { pub fn take_handle(resource: &Resource) -> u32 { resource.handle.swap(u32::MAX, Relaxed) } - #[doc(hidden)] pub fn handle(resource: &Resource) -> u32 { resource.handle.load(Relaxed) } } - impl fmt::Debug for Resource { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_struct("Resource") - .field("handle", &self.handle) - .finish() + f.debug_struct("Resource").field("handle", &self.handle).finish() } } - impl Drop for Resource { fn drop(&mut self) { unsafe { match self.handle.load(Relaxed) { - // If this handle was "taken" then don't do anything in the - // destructor. u32::MAX => {} - - // ... but otherwise do actually destroy it with the imported - // component model intrinsic as defined through `T`. other => T::drop(other), } } @@ -1583,16 +1676,14 @@ mod _rt { return; } let layout = alloc::Layout::from_size_align_unchecked(size, align); - alloc::dealloc(ptr as *mut u8, layout); + alloc::dealloc(ptr, layout); } - #[cfg(target_arch = "wasm32")] pub fn run_ctors_once() { wit_bindgen_rt::run_ctors_once(); } extern crate alloc as alloc_crate; } - /// Generates `#[no_mangle]` functions to export the specified type as the /// root implementation of all generated traits. /// @@ -1611,25 +1702,41 @@ mod _rt { /// ``` #[allow(unused_macros)] #[doc(hidden)] - macro_rules! __export_random_pulumi_impl { - ($ty:ident) => (self::export!($ty with_types_in self);); - ($ty:ident with_types_in $($path_to_types_root:tt)*) => ( - $($path_to_types_root)*::exports::pulumi::random::random_bytes::__export_pulumi_random_random_bytes_4_15_0_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::random::random_bytes); - $($path_to_types_root)*::exports::pulumi::random::random_id::__export_pulumi_random_random_id_4_15_0_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::random::random_id); - $($path_to_types_root)*::exports::pulumi::random::random_integer::__export_pulumi_random_random_integer_4_15_0_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::random::random_integer); - $($path_to_types_root)*::exports::pulumi::random::random_password::__export_pulumi_random_random_password_4_15_0_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::random::random_password); - $($path_to_types_root)*::exports::pulumi::random::random_pet::__export_pulumi_random_random_pet_4_15_0_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::random::random_pet); - $($path_to_types_root)*::exports::pulumi::random::random_shuffle::__export_pulumi_random_random_shuffle_4_15_0_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::random::random_shuffle); - $($path_to_types_root)*::exports::pulumi::random::random_string::__export_pulumi_random_random_string_4_15_0_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::random::random_string); - $($path_to_types_root)*::exports::pulumi::random::random_uuid::__export_pulumi_random_random_uuid_4_15_0_divider_zero_zero_zero_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::pulumi::random::random_uuid); - ) + ($ty:ident) => { + self::export!($ty with_types_in self); + }; + ($ty:ident with_types_in $($path_to_types_root:tt)*) => { + $($path_to_types_root)*:: + exports::pulumi::random::random_bytes::__export_pulumi_random_random_bytes_4_15_0_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::random::random_bytes); + $($path_to_types_root)*:: + exports::pulumi::random::random_id::__export_pulumi_random_random_id_4_15_0_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::random::random_id); + $($path_to_types_root)*:: + exports::pulumi::random::random_integer::__export_pulumi_random_random_integer_4_15_0_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::random::random_integer); + $($path_to_types_root)*:: + exports::pulumi::random::random_password::__export_pulumi_random_random_password_4_15_0_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::pulumi::random::random_password); $($path_to_types_root)*:: + exports::pulumi::random::random_pet::__export_pulumi_random_random_pet_4_15_0_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::random::random_pet); + $($path_to_types_root)*:: + exports::pulumi::random::random_shuffle::__export_pulumi_random_random_shuffle_4_15_0_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::random::random_shuffle); + $($path_to_types_root)*:: + exports::pulumi::random::random_string::__export_pulumi_random_random_string_4_15_0_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::random::random_string); + $($path_to_types_root)*:: + exports::pulumi::random::random_uuid::__export_pulumi_random_random_uuid_4_15_0_divider_zero_zero_zero_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: exports::pulumi::random::random_uuid); + }; } #[doc(inline)] pub(crate) use __export_random_pulumi_impl as export; - #[cfg(target_arch = "wasm32")] -#[link_section = "component-type:wit-bindgen:0.25.0:random-pulumi:encoded world"] +#[link_section = "component-type:wit-bindgen:0.30.0:random-pulumi:encoded world"] #[doc(hidden)] pub static __WIT_BINDGEN_COMPONENT_TYPE: [u8; 2786] = *b"\ \0asm\x0d\0\x01\0\0\x19\x16wit-component-encoding\x04\0\x07\xde\x14\x01A\x02\x01\ @@ -1691,12 +1798,10 @@ rgs\x03\0\x03\x01i\x01\x01r\x02\x07keepers\x05\x06result\x05\x04\0\x03res\x03\0\ \x01@\x02\x04names\x04args\x04\0\x07\x04\0\x06invoke\x01\x08\x04\x01;pulumi:rand\ om/random-uuid@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV\x05\x0a\x04\x01=pulumi:random/r\ andom-pulumi@4.15.0-DIVIDER-ZERO.ZERO.ZERO-DEV\x04\0\x0b\x13\x01\0\x0drandom-pul\ -umi\x03\0\0\0G\x09producers\x01\x0cprocessed-by\x02\x0dwit-component\x070.208.1\x10\ -wit-bindgen-rust\x060.25.0"; - +umi\x03\0\0\0G\x09producers\x01\x0cprocessed-by\x02\x0dwit-component\x070.215.0\x10\ +wit-bindgen-rust\x060.30.0"; #[inline(never)] #[doc(hidden)] -#[cfg(target_arch = "wasm32")] pub fn __link_custom_section_describing_imports() { wit_bindgen_rt::maybe_link_cabi_realloc(); } diff --git a/pulumi_wasm/src/bindings.rs b/pulumi_wasm/src/bindings.rs index f69ae4dc..64ebfe0f 100644 --- a/pulumi_wasm/src/bindings.rs +++ b/pulumi_wasm/src/bindings.rs @@ -1,5 +1,3 @@ -// Generated by `wit-bindgen` 0.25.0. DO NOT EDIT! -// Options used: #[allow(dead_code)] pub mod component { #[allow(dead_code)] @@ -8,9 +6,7 @@ pub mod component { pub mod log { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; #[repr(u8)] #[derive(Clone, Copy, Eq, PartialEq)] @@ -22,7 +18,10 @@ pub mod component { Error, } impl ::core::fmt::Debug for Level { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { match self { Level::Trace => f.debug_tuple("Level::Trace").finish(), Level::Debug => f.debug_tuple("Level::Debug").finish(), @@ -32,26 +31,22 @@ pub mod component { } } } - impl Level { #[doc(hidden)] pub unsafe fn _lift(val: u8) -> Level { if !cfg!(debug_assertions) { return ::core::mem::transmute(val); } - match val { 0 => Level::Trace, 1 => Level::Debug, 2 => Level::Info, 3 => Level::Warn, 4 => Level::Error, - _ => panic!("invalid enum discriminant"), } } } - #[derive(Clone)] pub struct Content { pub level: Level, @@ -63,7 +58,10 @@ pub mod component { pub key_values: _rt::Vec<(_rt::String, _rt::String)>, } impl ::core::fmt::Debug for Content { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("Content") .field("level", &self.level) .field("target", &self.target) @@ -98,7 +96,6 @@ pub mod component { let vec3 = e; let ptr3 = vec3.as_ptr().cast::(); let len3 = vec3.len(); - (1i32, ptr3.cast_mut(), len3) } None => (0i32, ::core::ptr::null_mut(), 0usize), @@ -108,7 +105,6 @@ pub mod component { let vec5 = e; let ptr5 = vec5.as_ptr().cast::(); let len5 = vec5.len(); - (1i32, ptr5.cast_mut(), len5) } None => (0i32, ::core::ptr::null_mut(), 0usize), @@ -119,8 +115,10 @@ pub mod component { }; let vec11 = key_values0; let len11 = vec11.len(); - let layout11 = - _rt::alloc::Layout::from_size_align_unchecked(vec11.len() * 16, 4); + let layout11 = _rt::alloc::Layout::from_size_align_unchecked( + vec11.len() * 16, + 4, + ); let result11 = if layout11.size() != 0 { let ptr = _rt::alloc::alloc(layout11).cast::(); if ptr.is_null() { @@ -128,9 +126,7 @@ pub mod component { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec11.into_iter().enumerate() { let base = result11.add(i * 16); @@ -148,7 +144,6 @@ pub mod component { *base.add(8).cast::<*mut u8>() = ptr10.cast_mut(); } } - #[cfg(target_arch = "wasm32")] #[link( wasm_import_module = "component:pulumi-wasm-external/log@0.0.0-STABLE-DEV" @@ -173,7 +168,6 @@ pub mod component { _: usize, ); } - #[cfg(not(target_arch = "wasm32"))] fn wit_import( _: i32, @@ -217,14 +211,11 @@ pub mod component { } } } - #[allow(dead_code, clippy::all)] pub mod external_world { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; #[derive(Clone)] pub struct RegisterResourceRequest { @@ -232,7 +223,10 @@ pub mod component { pub body: _rt::Vec, } impl ::core::fmt::Debug for RegisterResourceRequest { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceRequest") .field("output-id", &self.output_id) .field("body", &self.body) @@ -245,7 +239,10 @@ pub mod component { pub body: _rt::Vec, } impl ::core::fmt::Debug for RegisteredResource { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisteredResource") .field("output-id", &self.output_id) .field("body", &self.body) @@ -263,7 +260,6 @@ pub mod component { #[link_name = "is-in-preview"] fn wit_import() -> i32; } - #[cfg(not(target_arch = "wasm32"))] fn wit_import() -> i32 { unreachable!() @@ -287,7 +283,6 @@ pub mod component { #[link_name = "get-root-resource"] fn wit_import(_: *mut u8); } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: *mut u8) { unreachable!() @@ -318,7 +313,6 @@ pub mod component { #[link_name = "register-resource-outputs"] fn wit_import(_: *mut u8, _: usize, _: *mut u8); } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: *mut u8, _: usize, _: *mut u8) { unreachable!() @@ -333,17 +327,13 @@ pub mod component { #[allow(unused_unsafe, clippy::all)] pub fn register_resource(request: &RegisterResourceRequest) { unsafe { - let RegisterResourceRequest { - output_id: output_id0, - body: body0, - } = request; + let RegisterResourceRequest { output_id: output_id0, body: body0 } = request; let vec1 = output_id0; let ptr1 = vec1.as_ptr().cast::(); let len1 = vec1.len(); let vec2 = body0; let ptr2 = vec2.as_ptr().cast::(); let len2 = vec2.len(); - #[cfg(target_arch = "wasm32")] #[link( wasm_import_module = "component:pulumi-wasm-external/external-world@0.0.0-STABLE-DEV" @@ -352,7 +342,6 @@ pub mod component { #[link_name = "register-resource"] fn wit_import(_: *mut u8, _: usize, _: *mut u8, _: usize); } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: *mut u8, _: usize, _: *mut u8, _: usize) { unreachable!() @@ -375,7 +364,6 @@ pub mod component { #[link_name = "wait-for-registered-resources"] fn wit_import(_: *mut u8); } - #[cfg(not(target_arch = "wasm32"))] fn wit_import(_: *mut u8) { unreachable!() @@ -396,7 +384,6 @@ pub mod component { let l6 = *base.add(8).cast::<*mut u8>(); let l7 = *base.add(12).cast::(); let len8 = l7; - RegisteredResource { output_id: _rt::string_lift(bytes5), body: _rt::Vec::from_raw_parts(l6.cast(), len8, len8), @@ -421,19 +408,14 @@ pub mod exports { pub mod output_interface { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - #[derive(Debug)] #[repr(transparent)] pub struct Output { handle: _rt::Resource, } - type _OutputRep = Option; - impl Output { /// Creates a new resource from the specified representation. /// @@ -443,77 +425,68 @@ pub mod exports { pub fn new(val: T) -> Self { Self::type_guard::(); let val: _OutputRep = Some(val); - let ptr: *mut _OutputRep = _rt::Box::into_raw(_rt::Box::new(val)); + let ptr: *mut _OutputRep = _rt::Box::into_raw( + _rt::Box::new(val), + ); unsafe { Self::from_handle(T::_resource_new(ptr.cast())) } } - /// Gets access to the underlying `T` which represents this resource. pub fn get(&self) -> &T { let ptr = unsafe { &*self.as_ptr::() }; ptr.as_ref().unwrap() } - /// Gets mutable access to the underlying `T` which represents this /// resource. pub fn get_mut(&mut self) -> &mut T { let ptr = unsafe { &mut *self.as_ptr::() }; ptr.as_mut().unwrap() } - /// Consumes this resource and returns the underlying `T`. pub fn into_inner(self) -> T { let ptr = unsafe { &mut *self.as_ptr::() }; ptr.take().unwrap() } - #[doc(hidden)] pub unsafe fn from_handle(handle: u32) -> Self { Self { handle: _rt::Resource::from_handle(handle), } } - #[doc(hidden)] pub fn take_handle(&self) -> u32 { _rt::Resource::take_handle(&self.handle) } - #[doc(hidden)] pub fn handle(&self) -> u32 { _rt::Resource::handle(&self.handle) } - - // It's theoretically possible to implement the `GuestOutput` trait twice - // so guard against using it with two different types here. #[doc(hidden)] fn type_guard() { use core::any::TypeId; static mut LAST_TYPE: Option = None; unsafe { - assert!(!cfg!(target_feature = "threads")); + assert!(! cfg!(target_feature = "atomics")); let id = TypeId::of::(); match LAST_TYPE { - Some(ty) => assert!( - ty == id, - "cannot use two types with this resource type" - ), + Some(ty) => { + assert!( + ty == id, "cannot use two types with this resource type" + ) + } None => LAST_TYPE = Some(id), } } } - #[doc(hidden)] pub unsafe fn dtor(handle: *mut u8) { Self::type_guard::(); let _ = _rt::Box::from_raw(handle as *mut _OutputRep); } - fn as_ptr(&self) -> *mut _OutputRep { Output::type_guard::(); T::_resource_rep(self.handle()).cast() } } - /// A borrowed version of [`Output`] which represents a borrowed value /// with the lifetime `'a`. #[derive(Debug)] @@ -522,7 +495,6 @@ pub mod exports { rep: *mut u8, _marker: core::marker::PhantomData<&'a Output>, } - impl<'a> OutputBorrow<'a> { #[doc(hidden)] pub unsafe fn lift(rep: usize) -> Self { @@ -531,28 +503,21 @@ pub mod exports { _marker: core::marker::PhantomData, } } - /// Gets access to the underlying `T` in this resource. pub fn get(&self) -> &T { let ptr = unsafe { &mut *self.as_ptr::() }; ptr.as_ref().unwrap() } - - // NB: mutable access is not allowed due to the component model allowing - // multiple borrows of the same resource. - fn as_ptr(&self) -> *mut _OutputRep { Output::type_guard::(); self.rep.cast() } } - unsafe impl _rt::WasmResource for Output { #[inline] unsafe fn drop(_handle: u32) { #[cfg(not(target_arch = "wasm32"))] unreachable!(); - #[cfg(target_arch = "wasm32")] { #[link( @@ -562,20 +527,17 @@ pub mod exports { #[link_name = "[resource-drop]output"] fn drop(_: u32); } - drop(_handle); } } } - #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_constructor_output_cabi( arg0: *mut u8, arg1: usize, ) -> i32 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let len0 = arg1; let bytes0 = _rt::Vec::from_raw_parts(arg0.cast(), len0, len0); let result1 = Output::new(T::new(_rt::string_lift(bytes0))); @@ -588,8 +550,7 @@ pub mod exports { arg1: *mut u8, arg2: usize, ) -> i32 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let len0 = arg2; let bytes0 = _rt::Vec::from_raw_parts(arg1.cast(), len0, len0); let result1 = T::map( @@ -600,9 +561,11 @@ pub mod exports { } #[doc(hidden)] #[allow(non_snake_case)] - pub unsafe fn _export_combine_cabi(arg0: *mut u8, arg1: usize) -> i32 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + pub unsafe fn _export_combine_cabi( + arg0: *mut u8, + arg1: usize, + ) -> i32 { + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let base1 = arg0; let len1 = arg1; let mut result1 = _rt::Vec::with_capacity(len1); @@ -610,7 +573,6 @@ pub mod exports { let base = base1.add(i * 4); let e1 = { let l0 = *base.add(0).cast::(); - OutputBorrow::lift(l0 as u32 as usize) }; result1.push(e1); @@ -634,7 +596,6 @@ pub mod exports { let _ = val; unreachable!(); } - #[cfg(target_arch = "wasm32")] { #[link( @@ -647,7 +608,6 @@ pub mod exports { new(val) } } - #[doc(hidden)] fn _resource_rep(handle: u32) -> *mut u8 where @@ -658,7 +618,6 @@ pub mod exports { let _ = handle; unreachable!(); } - #[cfg(target_arch = "wasm32")] { #[link( @@ -671,61 +630,55 @@ pub mod exports { unsafe { rep(handle) } } } - fn new(value: _rt::String) -> Self; fn map(&self, function_name: _rt::String) -> Output; } #[doc(hidden)] - - macro_rules! __export_component_pulumi_wasm_output_interface_0_0_0_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "component:pulumi-wasm/output-interface@0.0.0-DEV#[constructor]output"] - unsafe extern "C" fn export_constructor_output(arg0: *mut u8,arg1: usize,) -> i32 { - $($path_to_types)*::_export_constructor_output_cabi::<<$ty as $($path_to_types)*::Guest>::Output>(arg0, arg1) - } - #[export_name = "component:pulumi-wasm/output-interface@0.0.0-DEV#[method]output.map"] - unsafe extern "C" fn export_method_output_map(arg0: *mut u8,arg1: *mut u8,arg2: usize,) -> i32 { - $($path_to_types)*::_export_method_output_map_cabi::<<$ty as $($path_to_types)*::Guest>::Output>(arg0, arg1, arg2) - } - #[export_name = "component:pulumi-wasm/output-interface@0.0.0-DEV#combine"] - unsafe extern "C" fn export_combine(arg0: *mut u8,arg1: usize,) -> i32 { - $($path_to_types)*::_export_combine_cabi::<$ty>(arg0, arg1) - } - - const _: () = { - #[doc(hidden)] - #[export_name = "component:pulumi-wasm/output-interface@0.0.0-DEV#[dtor]output"] - #[allow(non_snake_case)] - unsafe extern "C" fn dtor(rep: *mut u8) { - $($path_to_types)*::Output::dtor::< - <$ty as $($path_to_types)*::Guest>::Output - >(rep) - } - }; - - };); - } + macro_rules! __export_component_pulumi_wasm_output_interface_0_0_0_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "component:pulumi-wasm/output-interface@0.0.0-DEV#[constructor]output"] + unsafe extern "C" fn export_constructor_output(arg0 : * mut u8, + arg1 : usize,) -> i32 { $($path_to_types)*:: + _export_constructor_output_cabi::<<$ty as $($path_to_types)*:: + Guest >::Output > (arg0, arg1) } #[export_name = + "component:pulumi-wasm/output-interface@0.0.0-DEV#[method]output.map"] + unsafe extern "C" fn export_method_output_map(arg0 : * mut u8, + arg1 : * mut u8, arg2 : usize,) -> i32 { $($path_to_types)*:: + _export_method_output_map_cabi::<<$ty as $($path_to_types)*:: + Guest >::Output > (arg0, arg1, arg2) } #[export_name = + "component:pulumi-wasm/output-interface@0.0.0-DEV#combine"] + unsafe extern "C" fn export_combine(arg0 : * mut u8, arg1 : + usize,) -> i32 { $($path_to_types)*:: _export_combine_cabi::<$ty + > (arg0, arg1) } const _ : () = { #[doc(hidden)] #[export_name = + "component:pulumi-wasm/output-interface@0.0.0-DEV#[dtor]output"] + #[allow(non_snake_case)] unsafe extern "C" fn dtor(rep : * mut + u8) { $($path_to_types)*:: Output::dtor::< <$ty as + $($path_to_types)*:: Guest >::Output > (rep) } }; }; + }; + } #[doc(hidden)] pub(crate) use __export_component_pulumi_wasm_output_interface_0_0_0_dev_cabi; } - #[allow(dead_code, clippy::all)] pub mod register_interface { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; pub type Output = super::super::super::super::exports::component::pulumi_wasm::output_interface::Output; - pub type OutputBorrow<'a> = super::super::super::super::exports::component::pulumi_wasm::output_interface::OutputBorrow<'a>; + pub type OutputBorrow<'a> = super::super::super::super::exports::component::pulumi_wasm::output_interface::OutputBorrow< + 'a, + >; pub struct ObjectField<'a> { pub name: _rt::String, pub value: OutputBorrow<'a>, } impl<'a> ::core::fmt::Debug for ObjectField<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("ObjectField") .field("name", &self.name) .field("value", &self.value) @@ -737,10 +690,11 @@ pub mod exports { pub name: _rt::String, } impl ::core::fmt::Debug for ResultField { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { - f.debug_struct("ResultField") - .field("name", &self.name) - .finish() + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { + f.debug_struct("ResultField").field("name", &self.name).finish() } } pub struct RegisterResourceResultField { @@ -748,7 +702,10 @@ pub mod exports { pub output: Output, } impl ::core::fmt::Debug for RegisterResourceResultField { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResultField") .field("name", &self.name) .field("output", &self.output) @@ -762,7 +719,10 @@ pub mod exports { pub results: _rt::Vec, } impl<'a> ::core::fmt::Debug for RegisterResourceRequest<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceRequest") .field("type", &self.type_) .field("name", &self.name) @@ -775,7 +735,10 @@ pub mod exports { pub fields: _rt::Vec, } impl ::core::fmt::Debug for RegisterResourceResult { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResult") .field("fields", &self.fields) .finish() @@ -793,8 +756,7 @@ pub mod exports { arg6: *mut u8, arg7: usize, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let len0 = arg1; let bytes0 = _rt::Vec::from_raw_parts(arg0.cast(), len0, len0); let len1 = arg3; @@ -810,7 +772,6 @@ pub mod exports { let len4 = l3; let bytes4 = _rt::Vec::from_raw_parts(l2.cast(), len4, len4); let l5 = *base.add(8).cast::(); - ObjectField { name: _rt::string_lift(bytes4), value: OutputBorrow::lift(l5 as u32 as usize), @@ -829,7 +790,6 @@ pub mod exports { let l8 = *base.add(4).cast::(); let len9 = l8; let bytes9 = _rt::Vec::from_raw_parts(l7.cast(), len9, len9); - ResultField { name: _rt::string_lift(bytes9), } @@ -847,8 +807,10 @@ pub mod exports { let RegisterResourceResult { fields: fields13 } = result11; let vec16 = fields13; let len16 = vec16.len(); - let layout16 = - _rt::alloc::Layout::from_size_align_unchecked(vec16.len() * 12, 4); + let layout16 = _rt::alloc::Layout::from_size_align_unchecked( + vec16.len() * 12, + 4, + ); let result16 = if layout16.size() != 0 { let ptr = _rt::alloc::alloc(layout16).cast::(); if ptr.is_null() { @@ -856,9 +818,7 @@ pub mod exports { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec16.into_iter().enumerate() { let base = result16.add(i * 12); @@ -883,62 +843,68 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn __post_return_register(arg0: *mut u8) { - let l2 = *arg0.add(0).cast::<*mut u8>(); - let l3 = *arg0.add(4).cast::(); - let base4 = l2; - let len4 = l3; + let l0 = *arg0.add(0).cast::<*mut u8>(); + let l1 = *arg0.add(4).cast::(); + let base4 = l0; + let len4 = l1; for i in 0..len4 { let base = base4.add(i * 12); { - let l0 = *base.add(0).cast::<*mut u8>(); - let l1 = *base.add(4).cast::(); - _rt::cabi_dealloc(l0, l1, 1); + let l2 = *base.add(0).cast::<*mut u8>(); + let l3 = *base.add(4).cast::(); + _rt::cabi_dealloc(l2, l3, 1); } } _rt::cabi_dealloc(base4, len4 * 12, 4); } pub trait Guest { - fn register(request: RegisterResourceRequest<'_>) -> RegisterResourceResult; + fn register( + request: RegisterResourceRequest<'_>, + ) -> RegisterResourceResult; } #[doc(hidden)] - - macro_rules! __export_component_pulumi_wasm_register_interface_0_0_0_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "component:pulumi-wasm/register-interface@0.0.0-DEV#register"] - unsafe extern "C" fn export_register(arg0: *mut u8,arg1: usize,arg2: *mut u8,arg3: usize,arg4: *mut u8,arg5: usize,arg6: *mut u8,arg7: usize,) -> *mut u8 { - $($path_to_types)*::_export_register_cabi::<$ty>(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) - } - #[export_name = "cabi_post_component:pulumi-wasm/register-interface@0.0.0-DEV#register"] - unsafe extern "C" fn _post_return_register(arg0: *mut u8,) { - $($path_to_types)*::__post_return_register::<$ty>(arg0) - } - };); -} + macro_rules! __export_component_pulumi_wasm_register_interface_0_0_0_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "component:pulumi-wasm/register-interface@0.0.0-DEV#register"] + unsafe extern "C" fn export_register(arg0 : * mut u8, arg1 : + usize, arg2 : * mut u8, arg3 : usize, arg4 : * mut u8, arg5 : + usize, arg6 : * mut u8, arg7 : usize,) -> * mut u8 { + $($path_to_types)*:: _export_register_cabi::<$ty > (arg0, arg1, + arg2, arg3, arg4, arg5, arg6, arg7) } #[export_name = + "cabi_post_component:pulumi-wasm/register-interface@0.0.0-DEV#register"] + unsafe extern "C" fn _post_return_register(arg0 : * mut u8,) { + $($path_to_types)*:: __post_return_register::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_component_pulumi_wasm_register_interface_0_0_0_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } - #[allow(dead_code, clippy::all)] pub mod stack_interface { #[used] #[doc(hidden)] - #[cfg(target_arch = "wasm32")] - static __FORCE_SECTION_REF: fn() = - super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; pub type Output = super::super::super::super::exports::component::pulumi_wasm::output_interface::Output; - pub type OutputBorrow<'a> = super::super::super::super::exports::component::pulumi_wasm::output_interface::OutputBorrow<'a>; + pub type OutputBorrow<'a> = super::super::super::super::exports::component::pulumi_wasm::output_interface::OutputBorrow< + 'a, + >; pub struct FunctionInvocationRequest { pub id: Output, pub function_id: _rt::String, pub value: _rt::String, } impl ::core::fmt::Debug for FunctionInvocationRequest { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("FunctionInvocationRequest") .field("id", &self.id) .field("function-id", &self.function_id) @@ -951,7 +917,10 @@ pub mod exports { pub value: _rt::String, } impl<'a> ::core::fmt::Debug for FunctionInvocationResult<'a> { - fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + fn fmt( + &self, + f: &mut ::core::fmt::Formatter<'_>, + ) -> ::core::fmt::Result { f.debug_struct("FunctionInvocationResult") .field("id", &self.id) .field("value", &self.value) @@ -965,8 +934,7 @@ pub mod exports { arg1: usize, arg2: i32, ) { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let len0 = arg1; let bytes0 = _rt::Vec::from_raw_parts(arg0.cast(), len0, len0); T::add_export( @@ -976,9 +944,11 @@ pub mod exports { } #[doc(hidden)] #[allow(non_snake_case)] - pub unsafe fn _export_finish_cabi(arg0: *mut u8, arg1: usize) -> *mut u8 { - #[cfg(target_arch = "wasm32")] - _rt::run_ctors_once(); + pub unsafe fn _export_finish_cabi( + arg0: *mut u8, + arg1: usize, + ) -> *mut u8 { + #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); let base4 = arg0; let len4 = arg1; let mut result4 = _rt::Vec::with_capacity(len4); @@ -990,7 +960,6 @@ pub mod exports { let l2 = *base.add(8).cast::(); let len3 = l2; let bytes3 = _rt::Vec::from_raw_parts(l1.cast(), len3, len3); - FunctionInvocationResult { id: OutputBorrow::lift(l0 as u32 as usize), value: _rt::string_lift(bytes3), @@ -1003,8 +972,10 @@ pub mod exports { let ptr6 = _RET_AREA.0.as_mut_ptr().cast::(); let vec10 = result5; let len10 = vec10.len(); - let layout10 = - _rt::alloc::Layout::from_size_align_unchecked(vec10.len() * 20, 4); + let layout10 = _rt::alloc::Layout::from_size_align_unchecked( + vec10.len() * 20, + 4, + ); let result10 = if layout10.size() != 0 { let ptr = _rt::alloc::alloc(layout10).cast::(); if ptr.is_null() { @@ -1012,9 +983,7 @@ pub mod exports { } ptr } else { - { - ::core::ptr::null_mut() - } + { ::core::ptr::null_mut() } }; for (i, e) in vec10.into_iter().enumerate() { let base = result10.add(i * 20); @@ -1046,19 +1015,19 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn __post_return_finish(arg0: *mut u8) { - let l4 = *arg0.add(0).cast::<*mut u8>(); - let l5 = *arg0.add(4).cast::(); - let base6 = l4; - let len6 = l5; + let l0 = *arg0.add(0).cast::<*mut u8>(); + let l1 = *arg0.add(4).cast::(); + let base6 = l0; + let len6 = l1; for i in 0..len6 { let base = base6.add(i * 20); { - let l0 = *base.add(4).cast::<*mut u8>(); - let l1 = *base.add(8).cast::(); - _rt::cabi_dealloc(l0, l1, 1); - let l2 = *base.add(12).cast::<*mut u8>(); - let l3 = *base.add(16).cast::(); + let l2 = *base.add(4).cast::<*mut u8>(); + let l3 = *base.add(8).cast::(); _rt::cabi_dealloc(l2, l3, 1); + let l4 = *base.add(12).cast::<*mut u8>(); + let l5 = *base.add(16).cast::(); + _rt::cabi_dealloc(l4, l5, 1); } } _rt::cabi_dealloc(base6, len6 * 20, 4); @@ -1070,29 +1039,30 @@ pub mod exports { ) -> _rt::Vec; } #[doc(hidden)] - - macro_rules! __export_component_pulumi_wasm_stack_interface_0_0_0_dev_cabi{ - ($ty:ident with_types_in $($path_to_types:tt)*) => (const _: () = { - - #[export_name = "component:pulumi-wasm/stack-interface@0.0.0-DEV#add-export"] - unsafe extern "C" fn export_add_export(arg0: *mut u8,arg1: usize,arg2: i32,) { - $($path_to_types)*::_export_add_export_cabi::<$ty>(arg0, arg1, arg2) - } - #[export_name = "component:pulumi-wasm/stack-interface@0.0.0-DEV#finish"] - unsafe extern "C" fn export_finish(arg0: *mut u8,arg1: usize,) -> *mut u8 { - $($path_to_types)*::_export_finish_cabi::<$ty>(arg0, arg1) - } - #[export_name = "cabi_post_component:pulumi-wasm/stack-interface@0.0.0-DEV#finish"] - unsafe extern "C" fn _post_return_finish(arg0: *mut u8,) { - $($path_to_types)*::__post_return_finish::<$ty>(arg0) - } - };); -} + macro_rules! __export_component_pulumi_wasm_stack_interface_0_0_0_dev_cabi { + ($ty:ident with_types_in $($path_to_types:tt)*) => { + const _ : () = { #[export_name = + "component:pulumi-wasm/stack-interface@0.0.0-DEV#add-export"] + unsafe extern "C" fn export_add_export(arg0 : * mut u8, arg1 : + usize, arg2 : i32,) { $($path_to_types)*:: + _export_add_export_cabi::<$ty > (arg0, arg1, arg2) } + #[export_name = + "component:pulumi-wasm/stack-interface@0.0.0-DEV#finish"] unsafe + extern "C" fn export_finish(arg0 : * mut u8, arg1 : usize,) -> * + mut u8 { $($path_to_types)*:: _export_finish_cabi::<$ty > (arg0, + arg1) } #[export_name = + "cabi_post_component:pulumi-wasm/stack-interface@0.0.0-DEV#finish"] + unsafe extern "C" fn _post_return_finish(arg0 : * mut u8,) { + $($path_to_types)*:: __post_return_finish::<$ty > (arg0) } }; + }; + } #[doc(hidden)] pub(crate) use __export_component_pulumi_wasm_stack_interface_0_0_0_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); + static mut _RET_AREA: _RetArea = _RetArea( + [::core::mem::MaybeUninit::uninit(); 8], + ); } } } @@ -1100,70 +1070,59 @@ pub mod exports { mod _rt { pub use alloc_crate::string::String; pub use alloc_crate::vec::Vec; - pub fn as_i32(t: T) -> i32 { t.as_i32() } - pub trait AsI32 { fn as_i32(self) -> i32; } - impl<'a, T: Copy + AsI32> AsI32 for &'a T { fn as_i32(self) -> i32 { (*self).as_i32() } } - impl AsI32 for i32 { #[inline] fn as_i32(self) -> i32 { self as i32 } } - impl AsI32 for u32 { #[inline] fn as_i32(self) -> i32 { self as i32 } } - impl AsI32 for i16 { #[inline] fn as_i32(self) -> i32 { self as i32 } } - impl AsI32 for u16 { #[inline] fn as_i32(self) -> i32 { self as i32 } } - impl AsI32 for i8 { #[inline] fn as_i32(self) -> i32 { self as i32 } } - impl AsI32 for u8 { #[inline] fn as_i32(self) -> i32 { self as i32 } } - impl AsI32 for char { #[inline] fn as_i32(self) -> i32 { self as i32 } } - impl AsI32 for usize { #[inline] fn as_i32(self) -> i32 { @@ -1194,13 +1153,11 @@ mod _rt { return; } let layout = alloc::Layout::from_size_align_unchecked(size, align); - alloc::dealloc(ptr as *mut u8, layout); + alloc::dealloc(ptr, layout); } - use core::fmt; use core::marker; use core::sync::atomic::{AtomicU32, Ordering::Relaxed}; - /// A type which represents a component model resource, either imported or /// exported into this component. /// @@ -1215,16 +1172,9 @@ mod _rt { /// resources. #[repr(transparent)] pub struct Resource { - // NB: This would ideally be `u32` but it is not. The fact that this has - // interior mutability is not exposed in the API of this type except for the - // `take_handle` method which is supposed to in theory be private. - // - // This represents, almost all the time, a valid handle value. When it's - // invalid it's stored as `u32::MAX`. handle: AtomicU32, _marker: marker::PhantomData, } - /// A trait which all wasm resources implement, namely providing the ability to /// drop a resource. /// @@ -1234,7 +1184,6 @@ mod _rt { /// Invokes the `[resource-drop]...` intrinsic. unsafe fn drop(handle: u32); } - impl Resource { #[doc(hidden)] pub unsafe fn from_handle(handle: u32) -> Self { @@ -1244,7 +1193,6 @@ mod _rt { _marker: marker::PhantomData, } } - /// Takes ownership of the handle owned by `resource`. /// /// Note that this ideally would be `into_handle` taking `Resource` by @@ -1261,45 +1209,33 @@ mod _rt { pub fn take_handle(resource: &Resource) -> u32 { resource.handle.swap(u32::MAX, Relaxed) } - #[doc(hidden)] pub fn handle(resource: &Resource) -> u32 { resource.handle.load(Relaxed) } } - impl fmt::Debug for Resource { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_struct("Resource") - .field("handle", &self.handle) - .finish() + f.debug_struct("Resource").field("handle", &self.handle).finish() } } - impl Drop for Resource { fn drop(&mut self) { unsafe { match self.handle.load(Relaxed) { - // If this handle was "taken" then don't do anything in the - // destructor. u32::MAX => {} - - // ... but otherwise do actually destroy it with the imported - // component model intrinsic as defined through `T`. other => T::drop(other), } } } } pub use alloc_crate::boxed::Box; - #[cfg(target_arch = "wasm32")] pub fn run_ctors_once() { wit_bindgen_rt::run_ctors_once(); } extern crate alloc as alloc_crate; } - /// Generates `#[no_mangle]` functions to export the specified type as the /// root implementation of all generated traits. /// @@ -1318,20 +1254,27 @@ mod _rt { /// ``` #[allow(unused_macros)] #[doc(hidden)] - macro_rules! __export_pulumi_wasm_impl { - ($ty:ident) => (self::export!($ty with_types_in self);); - ($ty:ident with_types_in $($path_to_types_root:tt)*) => ( - $($path_to_types_root)*::exports::component::pulumi_wasm::output_interface::__export_component_pulumi_wasm_output_interface_0_0_0_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::component::pulumi_wasm::output_interface); - $($path_to_types_root)*::exports::component::pulumi_wasm::register_interface::__export_component_pulumi_wasm_register_interface_0_0_0_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::component::pulumi_wasm::register_interface); - $($path_to_types_root)*::exports::component::pulumi_wasm::stack_interface::__export_component_pulumi_wasm_stack_interface_0_0_0_dev_cabi!($ty with_types_in $($path_to_types_root)*::exports::component::pulumi_wasm::stack_interface); - ) + ($ty:ident) => { + self::export!($ty with_types_in self); + }; + ($ty:ident with_types_in $($path_to_types_root:tt)*) => { + $($path_to_types_root)*:: + exports::component::pulumi_wasm::output_interface::__export_component_pulumi_wasm_output_interface_0_0_0_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::component::pulumi_wasm::output_interface); $($path_to_types_root)*:: + exports::component::pulumi_wasm::register_interface::__export_component_pulumi_wasm_register_interface_0_0_0_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::component::pulumi_wasm::register_interface); $($path_to_types_root)*:: + exports::component::pulumi_wasm::stack_interface::__export_component_pulumi_wasm_stack_interface_0_0_0_dev_cabi!($ty + with_types_in $($path_to_types_root)*:: + exports::component::pulumi_wasm::stack_interface); + }; } #[doc(inline)] pub(crate) use __export_pulumi_wasm_impl as export; - #[cfg(target_arch = "wasm32")] -#[link_section = "component-type:wit-bindgen:0.25.0:pulumi-wasm:encoded world"] +#[link_section = "component-type:wit-bindgen:0.30.0:pulumi-wasm:encoded world"] #[doc(hidden)] pub static __WIT_BINDGEN_COMPONENT_TYPE: [u8; 1519] = *b"\ \0asm\x0d\0\x01\0\0\x19\x16wit-component-encoding\x04\0\x07\xed\x0a\x01A\x02\x01\ @@ -1365,11 +1308,9 @@ value\x05\x01\0\x04\0\x0aadd-export\x01\x08\x01p\x07\x01p\x04\x01@\x01\x09functi ons\x09\0\x0a\x04\0\x06finish\x01\x0b\x04\x01/component:pulumi-wasm/stack-interf\ ace@0.0.0-DEV\x05\x05\x04\x01+component:pulumi-wasm/pulumi-wasm@0.0.0-DEV\x04\0\x0b\ \x11\x01\0\x0bpulumi-wasm\x03\0\0\0G\x09producers\x01\x0cprocessed-by\x02\x0dwit\ --component\x070.208.1\x10wit-bindgen-rust\x060.25.0"; - +-component\x070.215.0\x10wit-bindgen-rust\x060.30.0"; #[inline(never)] #[doc(hidden)] -#[cfg(target_arch = "wasm32")] pub fn __link_custom_section_describing_imports() { wit_bindgen_rt::maybe_link_cabi_realloc(); } From b616f3fad44126ea4bcae35616253bff3ca79b23 Mon Sep 17 00:00:00 2001 From: Andrzej Ressel Date: Fri, 6 Sep 2024 22:57:17 +0200 Subject: [PATCH 3/5] Update --- .../src/bindings.rs | 3677 +++++++---------- .../src/bindings.rs | 475 +-- .../src/bindings.rs | 294 +- pulumi_wasm/src/bindings.rs | 162 +- 4 files changed, 1778 insertions(+), 2830 deletions(-) diff --git a/providers/pulumi_wasm_provider_cloudflare/src/bindings.rs b/providers/pulumi_wasm_provider_cloudflare/src/bindings.rs index 9962ef72..987a3b4b 100644 --- a/providers/pulumi_wasm_provider_cloudflare/src/bindings.rs +++ b/providers/pulumi_wasm_provider_cloudflare/src/bindings.rs @@ -6,7 +6,8 @@ pub mod component { pub mod output_interface { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; #[derive(Debug)] #[repr(transparent)] @@ -90,11 +91,7 @@ pub mod component { fn wit_import(_: i32, _: *mut u8, _: usize) -> i32 { unreachable!() } - let ret = wit_import( - (self).handle() as i32, - ptr0.cast_mut(), - len0, - ); + let ret = wit_import((self).handle() as i32, ptr0.cast_mut(), len0); Output::from_handle(ret as u32) } } @@ -104,10 +101,7 @@ pub mod component { unsafe { let vec0 = outputs; let len0 = vec0.len(); - let layout0 = _rt::alloc::Layout::from_size_align_unchecked( - vec0.len() * 4, - 4, - ); + let layout0 = _rt::alloc::Layout::from_size_align_unchecked(vec0.len() * 4, 4); let result0 = if layout0.size() != 0 { let ptr = _rt::alloc::alloc(layout0).cast::(); if ptr.is_null() { @@ -115,7 +109,9 @@ pub mod component { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec0.into_iter().enumerate() { let base = result0.add(i * 4); @@ -124,9 +120,7 @@ pub mod component { } } #[cfg(target_arch = "wasm32")] - #[link( - wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" - )] + #[link(wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV")] extern "C" { #[link_name = "combine"] fn wit_import(_: *mut u8, _: usize) -> i32; @@ -147,7 +141,8 @@ pub mod component { pub mod register_interface { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; pub type Output = super::super::super::component::pulumi_wasm::output_interface::Output; pub struct ObjectField<'a> { @@ -155,10 +150,7 @@ pub mod component { pub value: &'a Output, } impl<'a> ::core::fmt::Debug for ObjectField<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("ObjectField") .field("name", &self.name) .field("value", &self.value) @@ -170,11 +162,10 @@ pub mod component { pub name: _rt::String, } impl ::core::fmt::Debug for ResultField { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { - f.debug_struct("ResultField").field("name", &self.name).finish() + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + f.debug_struct("ResultField") + .field("name", &self.name) + .finish() } } pub struct RegisterResourceResultField { @@ -182,10 +173,7 @@ pub mod component { pub output: Output, } impl ::core::fmt::Debug for RegisterResourceResultField { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResultField") .field("name", &self.name) .field("output", &self.output) @@ -199,10 +187,7 @@ pub mod component { pub results: _rt::Vec, } impl<'a> ::core::fmt::Debug for RegisterResourceRequest<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceRequest") .field("type", &self.type_) .field("name", &self.name) @@ -215,19 +200,14 @@ pub mod component { pub fields: _rt::Vec, } impl ::core::fmt::Debug for RegisterResourceResult { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResult") .field("fields", &self.fields) .finish() } } #[allow(unused_unsafe, clippy::all)] - pub fn register( - request: &RegisterResourceRequest<'_>, - ) -> RegisterResourceResult { + pub fn register(request: &RegisterResourceRequest<'_>) -> RegisterResourceResult { unsafe { #[repr(align(4))] struct RetArea([::core::mem::MaybeUninit; 8]); @@ -246,10 +226,7 @@ pub mod component { let len2 = vec2.len(); let vec5 = object0; let len5 = vec5.len(); - let layout5 = _rt::alloc::Layout::from_size_align_unchecked( - vec5.len() * 12, - 4, - ); + let layout5 = _rt::alloc::Layout::from_size_align_unchecked(vec5.len() * 12, 4); let result5 = if layout5.size() != 0 { let ptr = _rt::alloc::alloc(layout5).cast::(); if ptr.is_null() { @@ -257,12 +234,17 @@ pub mod component { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec5.into_iter().enumerate() { let base = result5.add(i * 12); { - let ObjectField { name: name3, value: value3 } = e; + let ObjectField { + name: name3, + value: value3, + } = e; let vec4 = name3; let ptr4 = vec4.as_ptr().cast::(); let len4 = vec4.len(); @@ -273,10 +255,7 @@ pub mod component { } let vec8 = results0; let len8 = vec8.len(); - let layout8 = _rt::alloc::Layout::from_size_align_unchecked( - vec8.len() * 8, - 4, - ); + let layout8 = _rt::alloc::Layout::from_size_align_unchecked(vec8.len() * 8, 4); let result8 = if layout8.size() != 0 { let ptr = _rt::alloc::alloc(layout8).cast::(); if ptr.is_null() { @@ -284,7 +263,9 @@ pub mod component { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec8.into_iter().enumerate() { let base = result8.add(i * 8); @@ -352,11 +333,7 @@ pub mod component { let l12 = *base.add(0).cast::<*mut u8>(); let l13 = *base.add(4).cast::(); let len14 = l13; - let bytes14 = _rt::Vec::from_raw_parts( - l12.cast(), - len14, - len14, - ); + let bytes14 = _rt::Vec::from_raw_parts(l12.cast(), len14, len14); let l15 = *base.add(8).cast::(); RegisterResourceResultField { name: _rt::string_lift(bytes14), @@ -374,9 +351,7 @@ pub mod component { if layout8.size() != 0 { _rt::alloc::dealloc(result8.cast(), layout8); } - RegisterResourceResult { - fields: result16, - } + RegisterResourceResult { fields: result16 } } } } @@ -392,9 +367,11 @@ pub mod exports { pub mod access_application { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allow_authenticate_via_warp: &'a Output, @@ -427,10 +404,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field( @@ -440,10 +414,7 @@ pub mod exports { .field("allowed-idps", &self.allowed_idps) .field("app-launcher-logo-url", &self.app_launcher_logo_url) .field("app-launcher-visible", &self.app_launcher_visible) - .field( - "auto-redirect-to-identity", - &self.auto_redirect_to_identity, - ) + .field("auto-redirect-to-identity", &self.auto_redirect_to_identity) .field("bg-color", &self.bg_color) .field("cors-headers", &self.cors_headers) .field("custom-deny-message", &self.custom_deny_message) @@ -470,10 +441,7 @@ pub mod exports { &self.same_site_cookie_attribute, ) .field("self-hosted-domains", &self.self_hosted_domains) - .field( - "service-auth401-redirect", - &self.service_auth401_redirect, - ) + .field("service-auth401-redirect", &self.service_auth401_redirect) .field("session-duration", &self.session_duration) .field("skip-interstitial", &self.skip_interstitial) .field("tags", &self.tags) @@ -515,10 +483,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field( @@ -529,10 +494,7 @@ pub mod exports { .field("app-launcher-logo-url", &self.app_launcher_logo_url) .field("app-launcher-visible", &self.app_launcher_visible) .field("aud", &self.aud) - .field( - "auto-redirect-to-identity", - &self.auto_redirect_to_identity, - ) + .field("auto-redirect-to-identity", &self.auto_redirect_to_identity) .field("bg-color", &self.bg_color) .field("cors-headers", &self.cors_headers) .field("custom-deny-message", &self.custom_deny_message) @@ -559,10 +521,7 @@ pub mod exports { &self.same_site_cookie_attribute, ) .field("self-hosted-domains", &self.self_hosted_domains) - .field( - "service-auth401-redirect", - &self.service_auth401_redirect, - ) + .field("service-auth401-redirect", &self.service_auth401_redirect) .field("session-duration", &self.session_duration) .field("skip-interstitial", &self.skip_interstitial) .field("tags", &self.tags) @@ -574,7 +533,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -851,48 +811,38 @@ pub mod exports { zone_id: zone_id63, } = result61; *ptr62.add(0).cast::() = (account_id63).take_handle() as i32; - *ptr62.add(4).cast::() = (allow_authenticate_via_warp63) - .take_handle() as i32; + *ptr62.add(4).cast::() = + (allow_authenticate_via_warp63).take_handle() as i32; *ptr62.add(8).cast::() = (allowed_idps63).take_handle() as i32; - *ptr62.add(12).cast::() = (app_launcher_logo_url63) - .take_handle() as i32; - *ptr62.add(16).cast::() = (app_launcher_visible63).take_handle() - as i32; + *ptr62.add(12).cast::() = (app_launcher_logo_url63).take_handle() as i32; + *ptr62.add(16).cast::() = (app_launcher_visible63).take_handle() as i32; *ptr62.add(20).cast::() = (aud63).take_handle() as i32; - *ptr62.add(24).cast::() = (auto_redirect_to_identity63) - .take_handle() as i32; + *ptr62.add(24).cast::() = + (auto_redirect_to_identity63).take_handle() as i32; *ptr62.add(28).cast::() = (bg_color63).take_handle() as i32; *ptr62.add(32).cast::() = (cors_headers63).take_handle() as i32; - *ptr62.add(36).cast::() = (custom_deny_message63).take_handle() - as i32; - *ptr62.add(40).cast::() = (custom_deny_url63).take_handle() - as i32; - *ptr62.add(44).cast::() = (custom_non_identity_deny_url63) - .take_handle() as i32; + *ptr62.add(36).cast::() = (custom_deny_message63).take_handle() as i32; + *ptr62.add(40).cast::() = (custom_deny_url63).take_handle() as i32; + *ptr62.add(44).cast::() = + (custom_non_identity_deny_url63).take_handle() as i32; *ptr62.add(48).cast::() = (custom_pages63).take_handle() as i32; *ptr62.add(52).cast::() = (domain63).take_handle() as i32; - *ptr62.add(56).cast::() = (enable_binding_cookie63) - .take_handle() as i32; + *ptr62.add(56).cast::() = (enable_binding_cookie63).take_handle() as i32; *ptr62.add(60).cast::() = (footer_links63).take_handle() as i32; - *ptr62.add(64).cast::() = (header_bg_color63).take_handle() - as i32; - *ptr62.add(68).cast::() = (http_only_cookie_attribute63) - .take_handle() as i32; - *ptr62.add(72).cast::() = (landing_page_design63).take_handle() - as i32; + *ptr62.add(64).cast::() = (header_bg_color63).take_handle() as i32; + *ptr62.add(68).cast::() = + (http_only_cookie_attribute63).take_handle() as i32; + *ptr62.add(72).cast::() = (landing_page_design63).take_handle() as i32; *ptr62.add(76).cast::() = (logo_url63).take_handle() as i32; *ptr62.add(80).cast::() = (name63).take_handle() as i32; *ptr62.add(84).cast::() = (saas_app63).take_handle() as i32; - *ptr62.add(88).cast::() = (same_site_cookie_attribute63) - .take_handle() as i32; - *ptr62.add(92).cast::() = (self_hosted_domains63).take_handle() - as i32; - *ptr62.add(96).cast::() = (service_auth401_redirect63) - .take_handle() as i32; - *ptr62.add(100).cast::() = (session_duration63).take_handle() - as i32; - *ptr62.add(104).cast::() = (skip_interstitial63).take_handle() - as i32; + *ptr62.add(88).cast::() = + (same_site_cookie_attribute63).take_handle() as i32; + *ptr62.add(92).cast::() = (self_hosted_domains63).take_handle() as i32; + *ptr62.add(96).cast::() = + (service_auth401_redirect63).take_handle() as i32; + *ptr62.add(100).cast::() = (session_duration63).take_handle() as i32; + *ptr62.add(104).cast::() = (skip_interstitial63).take_handle() as i32; *ptr62.add(108).cast::() = (tags63).take_handle() as i32; *ptr62.add(112).cast::() = (type_63).take_handle() as i32; *ptr62.add(116).cast::() = (zone_id63).take_handle() as i32; @@ -914,27 +864,25 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_application_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 120]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 120], - ); + static mut _RET_AREA: _RetArea = + _RetArea([::core::mem::MaybeUninit::uninit(); 120]); } #[allow(dead_code, clippy::all)] pub mod access_ca_certificate { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub application_id: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("application-id", &self.application_id) @@ -950,10 +898,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("application-id", &self.application_id) @@ -972,7 +917,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1034,17 +980,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod access_custom_page { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub app_count: &'a Output, @@ -1054,10 +1000,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("app-count", &self.app_count) @@ -1077,10 +1020,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("app-count", &self.app_count) @@ -1103,7 +1043,8 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1189,17 +1130,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_custom_page_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod access_group { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub excludes: &'a Output, @@ -1209,10 +1150,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("excludes", &self.excludes) @@ -1232,10 +1170,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("excludes", &self.excludes) @@ -1258,7 +1193,8 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1344,17 +1280,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_group_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod access_identity_provider { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub configs: &'a Output, @@ -1364,10 +1300,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("configs", &self.configs) @@ -1387,10 +1320,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("configs", &self.configs) @@ -1413,7 +1343,8 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1499,26 +1430,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_identity_provider_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod access_keys_configuration { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub key_rotation_interval_days: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field( @@ -1533,10 +1461,7 @@ pub mod exports { pub key_rotation_interval_days: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field( @@ -1554,7 +1479,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -1582,8 +1508,7 @@ pub mod exports { key_rotation_interval_days: key_rotation_interval_days5, } = result3; *ptr4.add(0).cast::() = (account_id5).take_handle() as i32; - *ptr4.add(4).cast::() = (key_rotation_interval_days5) - .take_handle() as i32; + *ptr4.add(4).cast::() = (key_rotation_interval_days5).take_handle() as i32; ptr4 } pub trait Guest { @@ -1603,17 +1528,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_keys_configuration_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod access_mutual_tls_certificate { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub associated_hostnames: &'a Output, @@ -1622,10 +1547,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("associated-hostnames", &self.associated_hostnames) @@ -1644,10 +1566,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("associated-hostnames", &self.associated_hostnames) @@ -1669,7 +1588,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1722,8 +1642,7 @@ pub mod exports { zone_id: zone_id8, } = result6; *ptr7.add(0).cast::() = (account_id8).take_handle() as i32; - *ptr7.add(4).cast::() = (associated_hostnames8).take_handle() - as i32; + *ptr7.add(4).cast::() = (associated_hostnames8).take_handle() as i32; *ptr7.add(8).cast::() = (certificate8).take_handle() as i32; *ptr7.add(12).cast::() = (fingerprint8).take_handle() as i32; *ptr7.add(16).cast::() = (name8).take_handle() as i32; @@ -1748,27 +1667,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_mutual_tls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod access_mutual_tls_hostname_settings { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub settings: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("settings", &self.settings) @@ -1782,10 +1698,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("settings", &self.settings) @@ -1802,7 +1715,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1860,17 +1774,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_mutual_tls_hostname_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod access_organization { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allow_authenticate_via_warp: &'a Output, @@ -1887,10 +1801,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field( @@ -1898,10 +1809,7 @@ pub mod exports { &self.allow_authenticate_via_warp, ) .field("auth-domain", &self.auth_domain) - .field( - "auto-redirect-to-identity", - &self.auto_redirect_to_identity, - ) + .field("auto-redirect-to-identity", &self.auto_redirect_to_identity) .field("custom-pages", &self.custom_pages) .field("is-ui-read-only", &self.is_ui_read_only) .field("login-designs", &self.login_designs) @@ -1939,10 +1847,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field( @@ -1950,10 +1855,7 @@ pub mod exports { &self.allow_authenticate_via_warp, ) .field("auth-domain", &self.auth_domain) - .field( - "auto-redirect-to-identity", - &self.auto_redirect_to_identity, - ) + .field("auto-redirect-to-identity", &self.auto_redirect_to_identity) .field("custom-pages", &self.custom_pages) .field("is-ui-read-only", &self.is_ui_read_only) .field("login-designs", &self.login_designs) @@ -1994,7 +1896,8 @@ pub mod exports { arg13: i32, arg14: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2110,25 +2013,22 @@ pub mod exports { zone_id: zone_id16, } = result14; *ptr15.add(0).cast::() = (account_id16).take_handle() as i32; - *ptr15.add(4).cast::() = (allow_authenticate_via_warp16) - .take_handle() as i32; + *ptr15.add(4).cast::() = + (allow_authenticate_via_warp16).take_handle() as i32; *ptr15.add(8).cast::() = (auth_domain16).take_handle() as i32; - *ptr15.add(12).cast::() = (auto_redirect_to_identity16) - .take_handle() as i32; + *ptr15.add(12).cast::() = + (auto_redirect_to_identity16).take_handle() as i32; *ptr15.add(16).cast::() = (custom_pages16).take_handle() as i32; - *ptr15.add(20).cast::() = (is_ui_read_only16).take_handle() - as i32; - *ptr15.add(24).cast::() = (login_designs16).take_handle() - as i32; + *ptr15.add(20).cast::() = (is_ui_read_only16).take_handle() as i32; + *ptr15.add(24).cast::() = (login_designs16).take_handle() as i32; *ptr15.add(28).cast::() = (name16).take_handle() as i32; - *ptr15.add(32).cast::() = (session_duration16).take_handle() - as i32; - *ptr15.add(36).cast::() = (ui_read_only_toggle_reason16) - .take_handle() as i32; - *ptr15.add(40).cast::() = (user_seat_expiration_inactive_time16) - .take_handle() as i32; - *ptr15.add(44).cast::() = (warp_auth_session_duration16) - .take_handle() as i32; + *ptr15.add(32).cast::() = (session_duration16).take_handle() as i32; + *ptr15.add(36).cast::() = + (ui_read_only_toggle_reason16).take_handle() as i32; + *ptr15.add(40).cast::() = + (user_seat_expiration_inactive_time16).take_handle() as i32; + *ptr15.add(44).cast::() = + (warp_auth_session_duration16).take_handle() as i32; *ptr15.add(48).cast::() = (zone_id16).take_handle() as i32; ptr15 } @@ -2153,17 +2053,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_organization_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 52]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 52], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 52]); } #[allow(dead_code, clippy::all)] pub mod access_policy { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub application_id: &'a Output, @@ -2182,10 +2082,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("application-id", &self.application_id) @@ -2229,10 +2126,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("application-id", &self.application_id) @@ -2261,7 +2155,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -2411,26 +2306,21 @@ pub mod exports { zone_id: zone_id35, } = result33; *ptr34.add(0).cast::() = (account_id35).take_handle() as i32; - *ptr34.add(4).cast::() = (application_id35).take_handle() - as i32; - *ptr34.add(8).cast::() = (approval_groups35).take_handle() - as i32; - *ptr34.add(12).cast::() = (approval_required35).take_handle() - as i32; + *ptr34.add(4).cast::() = (application_id35).take_handle() as i32; + *ptr34.add(8).cast::() = (approval_groups35).take_handle() as i32; + *ptr34.add(12).cast::() = (approval_required35).take_handle() as i32; *ptr34.add(16).cast::() = (decision35).take_handle() as i32; *ptr34.add(20).cast::() = (excludes35).take_handle() as i32; *ptr34.add(24).cast::() = (includes35).take_handle() as i32; - *ptr34.add(28).cast::() = (isolation_required35).take_handle() - as i32; + *ptr34.add(28).cast::() = (isolation_required35).take_handle() as i32; *ptr34.add(32).cast::() = (name35).take_handle() as i32; *ptr34.add(36).cast::() = (precedence35).take_handle() as i32; - *ptr34.add(40).cast::() = (purpose_justification_prompt35) - .take_handle() as i32; - *ptr34.add(44).cast::() = (purpose_justification_required35) - .take_handle() as i32; + *ptr34.add(40).cast::() = + (purpose_justification_prompt35).take_handle() as i32; + *ptr34.add(44).cast::() = + (purpose_justification_required35).take_handle() as i32; *ptr34.add(48).cast::() = (requires35).take_handle() as i32; - *ptr34.add(52).cast::() = (session_duration35).take_handle() - as i32; + *ptr34.add(52).cast::() = (session_duration35).take_handle() as i32; *ptr34.add(56).cast::() = (zone_id35).take_handle() as i32; ptr34 } @@ -2450,17 +2340,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_policy_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 60]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 60], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 60]); } #[allow(dead_code, clippy::all)] pub mod access_rule { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub configuration: &'a Output, @@ -2469,10 +2359,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("configuration", &self.configuration) @@ -2490,10 +2377,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("configuration", &self.configuration) @@ -2514,7 +2398,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2590,17 +2475,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod access_service_token { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub duration: &'a Output, @@ -2609,10 +2494,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("duration", &self.duration) @@ -2633,10 +2515,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("client-id", &self.client_id) @@ -2660,7 +2539,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2719,8 +2599,7 @@ pub mod exports { *ptr7.add(8).cast::() = (client_secret8).take_handle() as i32; *ptr7.add(12).cast::() = (duration8).take_handle() as i32; *ptr7.add(16).cast::() = (expires_at8).take_handle() as i32; - *ptr7.add(20).cast::() = (min_days_for_renewal8).take_handle() - as i32; + *ptr7.add(20).cast::() = (min_days_for_renewal8).take_handle() as i32; *ptr7.add(24).cast::() = (name8).take_handle() as i32; *ptr7.add(28).cast::() = (zone_id8).take_handle() as i32; ptr7 @@ -2743,17 +2622,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_service_token_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 32], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); } #[allow(dead_code, clippy::all)] pub mod access_tag { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub app_count: &'a Output, @@ -2761,10 +2640,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("app-count", &self.app_count) @@ -2780,10 +2656,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("app-count", &self.app_count) @@ -2802,7 +2675,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2869,27 +2743,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_access_tag_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod account { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub enforce_twofactor: &'a Output, pub name: &'a Output, pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("enforce-twofactor", &self.enforce_twofactor) .field("name", &self.name) @@ -2903,10 +2774,7 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("enforce-twofactor", &self.enforce_twofactor) .field("name", &self.name) @@ -2923,7 +2791,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2958,8 +2827,7 @@ pub mod exports { name: name6, type_: type_6, } = result4; - *ptr5.add(0).cast::() = (enforce_twofactor6).take_handle() - as i32; + *ptr5.add(0).cast::() = (enforce_twofactor6).take_handle() as i32; *ptr5.add(4).cast::() = (name6).take_handle() as i32; *ptr5.add(8).cast::() = (type_6).take_handle() as i32; ptr5 @@ -2982,17 +2850,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_account_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod account_member { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub email_address: &'a Output, @@ -3000,10 +2868,7 @@ pub mod exports { pub status: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("email-address", &self.email_address) @@ -3019,10 +2884,7 @@ pub mod exports { pub status: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("email-address", &self.email_address) @@ -3041,7 +2903,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3108,17 +2971,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_account_member_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod address_map { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub default_sni: &'a Output, @@ -3128,10 +2991,7 @@ pub mod exports { pub memberships: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("default-sni", &self.default_sni) @@ -3153,10 +3013,7 @@ pub mod exports { pub memberships: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("can-delete", &self.can_delete) @@ -3181,7 +3038,8 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3271,31 +3129,25 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_address_map_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 32], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); } #[allow(dead_code, clippy::all)] pub mod api_shield { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub auth_id_characteristics: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") - .field( - "auth-id-characteristics", - &self.auth_id_characteristics, - ) + .field("auth-id-characteristics", &self.auth_id_characteristics) .field("zone-id", &self.zone_id) .finish() } @@ -3305,15 +3157,9 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") - .field( - "auth-id-characteristics", - &self.auth_id_characteristics, - ) + .field("auth-id-characteristics", &self.auth_id_characteristics) .field("zone-id", &self.zone_id) .finish() } @@ -3326,7 +3172,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -3353,8 +3200,7 @@ pub mod exports { auth_id_characteristics: auth_id_characteristics5, zone_id: zone_id5, } = result3; - *ptr4.add(0).cast::() = (auth_id_characteristics5).take_handle() - as i32; + *ptr4.add(0).cast::() = (auth_id_characteristics5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 } @@ -3375,17 +3221,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_api_shield_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod api_shield_operation { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub endpoint: &'a Output, pub host: &'a Output, @@ -3393,10 +3239,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("endpoint", &self.endpoint) .field("host", &self.host) @@ -3412,10 +3255,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("endpoint", &self.endpoint) .field("host", &self.host) @@ -3434,7 +3274,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3501,27 +3342,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_api_shield_operation_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod api_shield_operation_schema_validation_settings { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub mitigation_action: &'a Output, pub operation_id: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("mitigation-action", &self.mitigation_action) .field("operation-id", &self.operation_id) @@ -3535,10 +3373,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("mitigation-action", &self.mitigation_action) .field("operation-id", &self.operation_id) @@ -3555,7 +3390,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3590,8 +3426,7 @@ pub mod exports { operation_id: operation_id6, zone_id: zone_id6, } = result4; - *ptr5.add(0).cast::() = (mitigation_action6).take_handle() - as i32; + *ptr5.add(0).cast::() = (mitigation_action6).take_handle() as i32; *ptr5.add(4).cast::() = (operation_id6).take_handle() as i32; *ptr5.add(8).cast::() = (zone_id6).take_handle() as i32; ptr5 @@ -3614,17 +3449,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_api_shield_operation_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod api_shield_schema { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub kind: &'a Output, pub name: &'a Output, @@ -3633,10 +3468,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("kind", &self.kind) .field("name", &self.name) @@ -3654,10 +3486,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("kind", &self.kind) .field("name", &self.name) @@ -3678,7 +3507,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3732,8 +3562,7 @@ pub mod exports { *ptr7.add(0).cast::() = (kind8).take_handle() as i32; *ptr7.add(4).cast::() = (name8).take_handle() as i32; *ptr7.add(8).cast::() = (source8).take_handle() as i32; - *ptr7.add(12).cast::() = (validation_enabled8).take_handle() - as i32; + *ptr7.add(12).cast::() = (validation_enabled8).take_handle() as i32; *ptr7.add(16).cast::() = (zone_id8).take_handle() as i32; ptr7 } @@ -3755,27 +3584,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_api_shield_schema_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod api_shield_schema_validation_settings { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub validation_default_mitigation_action: &'a Output, pub validation_override_mitigation_action: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field( "validation-default-mitigation-action", @@ -3795,10 +3621,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field( "validation-default-mitigation-action", @@ -3821,7 +3644,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -3853,13 +3677,14 @@ pub mod exports { let ptr5 = _RET_AREA.0.as_mut_ptr().cast::(); let Res { validation_default_mitigation_action: validation_default_mitigation_action6, - validation_override_mitigation_action: validation_override_mitigation_action6, + validation_override_mitigation_action: + validation_override_mitigation_action6, zone_id: zone_id6, } = result4; - *ptr5.add(0).cast::() = (validation_default_mitigation_action6) - .take_handle() as i32; - *ptr5.add(4).cast::() = (validation_override_mitigation_action6) - .take_handle() as i32; + *ptr5.add(0).cast::() = + (validation_default_mitigation_action6).take_handle() as i32; + *ptr5.add(4).cast::() = + (validation_override_mitigation_action6).take_handle() as i32; *ptr5.add(8).cast::() = (zone_id6).take_handle() as i32; ptr5 } @@ -3881,17 +3706,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_api_shield_schema_validation_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod api_token { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub condition: &'a Output, pub expires_on: &'a Output, @@ -3900,10 +3725,7 @@ pub mod exports { pub policies: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("condition", &self.condition) .field("expires-on", &self.expires_on) @@ -3925,10 +3747,7 @@ pub mod exports { pub value: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("condition", &self.condition) .field("expires-on", &self.expires_on) @@ -3953,7 +3772,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4037,27 +3857,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_api_token_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 36], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); } #[allow(dead_code, clippy::all)] pub mod argo { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub smart_routing: &'a Output, pub tiered_caching: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("smart-routing", &self.smart_routing) .field("tiered-caching", &self.tiered_caching) @@ -4071,10 +3888,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("smart-routing", &self.smart_routing) .field("tiered-caching", &self.tiered_caching) @@ -4091,7 +3905,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4149,17 +3964,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_argo_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod authenticated_origin_pulls { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub authenticated_origin_pulls_certificate: &'a Output, pub enabled: &'a Output, @@ -4167,10 +3982,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field( "authenticated-origin-pulls-certificate", @@ -4189,10 +4001,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field( "authenticated-origin-pulls-certificate", @@ -4214,7 +4023,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4252,13 +4062,14 @@ pub mod exports { ); let ptr6 = _RET_AREA.0.as_mut_ptr().cast::(); let Res { - authenticated_origin_pulls_certificate: authenticated_origin_pulls_certificate7, + authenticated_origin_pulls_certificate: + authenticated_origin_pulls_certificate7, enabled: enabled7, hostname: hostname7, zone_id: zone_id7, } = result5; - *ptr6.add(0).cast::() = (authenticated_origin_pulls_certificate7) - .take_handle() as i32; + *ptr6.add(0).cast::() = + (authenticated_origin_pulls_certificate7).take_handle() as i32; *ptr6.add(4).cast::() = (enabled7).take_handle() as i32; *ptr6.add(8).cast::() = (hostname7).take_handle() as i32; *ptr6.add(12).cast::() = (zone_id7).take_handle() as i32; @@ -4282,17 +4093,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_authenticated_origin_pulls_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod authenticated_origin_pulls_certificate { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub certificate: &'a Output, pub private_key: &'a Output, @@ -4300,10 +4111,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("certificate", &self.certificate) .field("private-key", &self.private_key) @@ -4325,10 +4133,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("certificate", &self.certificate) .field("expires-on", &self.expires_on) @@ -4353,7 +4158,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4432,17 +4238,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_authenticated_origin_pulls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 40]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 40], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 40]); } #[allow(dead_code, clippy::all)] pub mod bot_management { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub auto_update_model: &'a Output, pub enable_js: &'a Output, @@ -4456,29 +4262,20 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("auto-update-model", &self.auto_update_model) .field("enable-js", &self.enable_js) .field("fight-mode", &self.fight_mode) .field("optimize-wordpress", &self.optimize_wordpress) - .field( - "sbfm-definitely-automated", - &self.sbfm_definitely_automated, - ) + .field("sbfm-definitely-automated", &self.sbfm_definitely_automated) .field("sbfm-likely-automated", &self.sbfm_likely_automated) .field( "sbfm-static-resource-protection", &self.sbfm_static_resource_protection, ) .field("sbfm-verified-bots", &self.sbfm_verified_bots) - .field( - "suppress-session-score", - &self.suppress_session_score, - ) + .field("suppress-session-score", &self.suppress_session_score) .field("zone-id", &self.zone_id) .finish() } @@ -4497,29 +4294,20 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("auto-update-model", &self.auto_update_model) .field("enable-js", &self.enable_js) .field("fight-mode", &self.fight_mode) .field("optimize-wordpress", &self.optimize_wordpress) - .field( - "sbfm-definitely-automated", - &self.sbfm_definitely_automated, - ) + .field("sbfm-definitely-automated", &self.sbfm_definitely_automated) .field("sbfm-likely-automated", &self.sbfm_likely_automated) .field( "sbfm-static-resource-protection", &self.sbfm_static_resource_protection, ) .field("sbfm-verified-bots", &self.sbfm_verified_bots) - .field( - "suppress-session-score", - &self.suppress_session_score, - ) + .field("suppress-session-score", &self.suppress_session_score) .field("using-latest-model", &self.using_latest_model) .field("zone-id", &self.zone_id) .finish() @@ -4541,7 +4329,8 @@ pub mod exports { arg10: i32, arg11: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4633,24 +4422,18 @@ pub mod exports { using_latest_model: using_latest_model13, zone_id: zone_id13, } = result11; - *ptr12.add(0).cast::() = (auto_update_model13).take_handle() - as i32; + *ptr12.add(0).cast::() = (auto_update_model13).take_handle() as i32; *ptr12.add(4).cast::() = (enable_js13).take_handle() as i32; *ptr12.add(8).cast::() = (fight_mode13).take_handle() as i32; - *ptr12.add(12).cast::() = (optimize_wordpress13).take_handle() - as i32; - *ptr12.add(16).cast::() = (sbfm_definitely_automated13) - .take_handle() as i32; - *ptr12.add(20).cast::() = (sbfm_likely_automated13) - .take_handle() as i32; - *ptr12.add(24).cast::() = (sbfm_static_resource_protection13) - .take_handle() as i32; - *ptr12.add(28).cast::() = (sbfm_verified_bots13).take_handle() - as i32; - *ptr12.add(32).cast::() = (suppress_session_score13) - .take_handle() as i32; - *ptr12.add(36).cast::() = (using_latest_model13).take_handle() - as i32; + *ptr12.add(12).cast::() = (optimize_wordpress13).take_handle() as i32; + *ptr12.add(16).cast::() = + (sbfm_definitely_automated13).take_handle() as i32; + *ptr12.add(20).cast::() = (sbfm_likely_automated13).take_handle() as i32; + *ptr12.add(24).cast::() = + (sbfm_static_resource_protection13).take_handle() as i32; + *ptr12.add(28).cast::() = (sbfm_verified_bots13).take_handle() as i32; + *ptr12.add(32).cast::() = (suppress_session_score13).take_handle() as i32; + *ptr12.add(36).cast::() = (using_latest_model13).take_handle() as i32; *ptr12.add(40).cast::() = (zone_id13).take_handle() as i32; ptr12 } @@ -4674,17 +4457,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_bot_management_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 44]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 44], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 44]); } #[allow(dead_code, clippy::all)] pub mod byo_ip_prefix { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub advertisement: &'a Output, @@ -4692,10 +4475,7 @@ pub mod exports { pub prefix_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("advertisement", &self.advertisement) @@ -4711,10 +4491,7 @@ pub mod exports { pub prefix_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("advertisement", &self.advertisement) @@ -4733,7 +4510,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4800,17 +4578,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_byo_ip_prefix_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod certificate_pack { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub certificate_authority: &'a Output, pub cloudflare_branding: &'a Output, @@ -4824,10 +4602,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("certificate-authority", &self.certificate_authority) .field("cloudflare-branding", &self.cloudflare_branding) @@ -4837,10 +4612,7 @@ pub mod exports { .field("validation-method", &self.validation_method) .field("validation-records", &self.validation_records) .field("validity-days", &self.validity_days) - .field( - "wait-for-active-status", - &self.wait_for_active_status, - ) + .field("wait-for-active-status", &self.wait_for_active_status) .field("zone-id", &self.zone_id) .finish() } @@ -4858,10 +4630,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("certificate-authority", &self.certificate_authority) .field("cloudflare-branding", &self.cloudflare_branding) @@ -4871,10 +4640,7 @@ pub mod exports { .field("validation-method", &self.validation_method) .field("validation-records", &self.validation_records) .field("validity-days", &self.validity_days) - .field( - "wait-for-active-status", - &self.wait_for_active_status, - ) + .field("wait-for-active-status", &self.wait_for_active_status) .field("zone-id", &self.zone_id) .finish() } @@ -4895,7 +4661,8 @@ pub mod exports { arg10: i32, arg11: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -4986,22 +4753,15 @@ pub mod exports { wait_for_active_status: wait_for_active_status13, zone_id: zone_id13, } = result11; - *ptr12.add(0).cast::() = (certificate_authority13).take_handle() - as i32; - *ptr12.add(4).cast::() = (cloudflare_branding13).take_handle() - as i32; + *ptr12.add(0).cast::() = (certificate_authority13).take_handle() as i32; + *ptr12.add(4).cast::() = (cloudflare_branding13).take_handle() as i32; *ptr12.add(8).cast::() = (hosts13).take_handle() as i32; *ptr12.add(12).cast::() = (type_13).take_handle() as i32; - *ptr12.add(16).cast::() = (validation_errors13).take_handle() - as i32; - *ptr12.add(20).cast::() = (validation_method13).take_handle() - as i32; - *ptr12.add(24).cast::() = (validation_records13).take_handle() - as i32; - *ptr12.add(28).cast::() = (validity_days13).take_handle() - as i32; - *ptr12.add(32).cast::() = (wait_for_active_status13) - .take_handle() as i32; + *ptr12.add(16).cast::() = (validation_errors13).take_handle() as i32; + *ptr12.add(20).cast::() = (validation_method13).take_handle() as i32; + *ptr12.add(24).cast::() = (validation_records13).take_handle() as i32; + *ptr12.add(28).cast::() = (validity_days13).take_handle() as i32; + *ptr12.add(32).cast::() = (wait_for_active_status13).take_handle() as i32; *ptr12.add(36).cast::() = (zone_id13).take_handle() as i32; ptr12 } @@ -5025,17 +4785,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_certificate_pack_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 40]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 40], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 40]); } #[allow(dead_code, clippy::all)] pub mod custom_hostname { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub custom_metadata: &'a Output, pub custom_origin_server: &'a Output, @@ -5046,10 +4806,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("custom-metadata", &self.custom_metadata) .field("custom-origin-server", &self.custom_origin_server) @@ -5077,19 +4834,13 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("custom-metadata", &self.custom_metadata) .field("custom-origin-server", &self.custom_origin_server) .field("custom-origin-sni", &self.custom_origin_sni) .field("hostname", &self.hostname) - .field( - "ownership-verification", - &self.ownership_verification, - ) + .field("ownership-verification", &self.ownership_verification) .field( "ownership-verification-http", &self.ownership_verification_http, @@ -5117,7 +4868,8 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -5187,21 +4939,17 @@ pub mod exports { wait_for_ssl_pending_validation: wait_for_ssl_pending_validation10, zone_id: zone_id10, } = result8; - *ptr9.add(0).cast::() = (custom_metadata10).take_handle() - as i32; - *ptr9.add(4).cast::() = (custom_origin_server10).take_handle() - as i32; - *ptr9.add(8).cast::() = (custom_origin_sni10).take_handle() - as i32; + *ptr9.add(0).cast::() = (custom_metadata10).take_handle() as i32; + *ptr9.add(4).cast::() = (custom_origin_server10).take_handle() as i32; + *ptr9.add(8).cast::() = (custom_origin_sni10).take_handle() as i32; *ptr9.add(12).cast::() = (hostname10).take_handle() as i32; - *ptr9.add(16).cast::() = (ownership_verification10) - .take_handle() as i32; - *ptr9.add(20).cast::() = (ownership_verification_http10) - .take_handle() as i32; + *ptr9.add(16).cast::() = (ownership_verification10).take_handle() as i32; + *ptr9.add(20).cast::() = + (ownership_verification_http10).take_handle() as i32; *ptr9.add(24).cast::() = (ssls10).take_handle() as i32; *ptr9.add(28).cast::() = (status10).take_handle() as i32; - *ptr9.add(32).cast::() = (wait_for_ssl_pending_validation10) - .take_handle() as i32; + *ptr9.add(32).cast::() = + (wait_for_ssl_pending_validation10).take_handle() as i32; *ptr9.add(36).cast::() = (zone_id10).take_handle() as i32; ptr9 } @@ -5224,26 +4972,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_custom_hostname_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 40]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 40], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 40]); } #[allow(dead_code, clippy::all)] pub mod custom_hostname_fallback_origin { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub origin: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("origin", &self.origin) .field("zone-id", &self.zone_id) @@ -5256,10 +5001,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("origin", &self.origin) .field("status", &self.status) @@ -5275,7 +5017,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -5298,7 +5041,11 @@ pub mod exports { }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { origin: origin5, status: status5, zone_id: zone_id5 } = result3; + let Res { + origin: origin5, + status: status5, + zone_id: zone_id5, + } = result3; *ptr4.add(0).cast::() = (origin5).take_handle() as i32; *ptr4.add(4).cast::() = (status5).take_handle() as i32; *ptr4.add(8).cast::() = (zone_id5).take_handle() as i32; @@ -5321,17 +5068,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_custom_hostname_fallback_origin_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod custom_pages { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub state: &'a Output, @@ -5340,10 +5087,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("state", &self.state) @@ -5361,10 +5105,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("state", &self.state) @@ -5385,7 +5126,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -5461,27 +5203,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_custom_pages_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod custom_ssl { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub custom_ssl_options: &'a Output, pub custom_ssl_priorities: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("custom-ssl-options", &self.custom_ssl_options) .field("custom-ssl-priorities", &self.custom_ssl_priorities) @@ -5503,10 +5242,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("custom-ssl-options", &self.custom_ssl_options) .field("custom-ssl-priorities", &self.custom_ssl_priorities) @@ -5531,7 +5267,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -5574,10 +5311,8 @@ pub mod exports { uploaded_on: uploaded_on6, zone_id: zone_id6, } = result4; - *ptr5.add(0).cast::() = (custom_ssl_options6).take_handle() - as i32; - *ptr5.add(4).cast::() = (custom_ssl_priorities6).take_handle() - as i32; + *ptr5.add(0).cast::() = (custom_ssl_options6).take_handle() as i32; + *ptr5.add(4).cast::() = (custom_ssl_priorities6).take_handle() as i32; *ptr5.add(8).cast::() = (expires_on6).take_handle() as i32; *ptr5.add(12).cast::() = (hosts6).take_handle() as i32; *ptr5.add(16).cast::() = (issuer6).take_handle() as i32; @@ -5607,26 +5342,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_custom_ssl_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 44]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 44], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 44]); } #[allow(dead_code, clippy::all)] pub mod d1_database { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("name", &self.name) @@ -5639,10 +5371,7 @@ pub mod exports { pub version: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("name", &self.name) @@ -5658,7 +5387,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -5708,17 +5438,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_d1_database_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod device_dex_test { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub data: &'a Output, @@ -5728,10 +5458,7 @@ pub mod exports { pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("data", &self.data) @@ -5753,10 +5480,7 @@ pub mod exports { pub updated: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("created", &self.created) @@ -5781,7 +5505,8 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -5871,17 +5596,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_device_dex_test_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 32], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); } #[allow(dead_code, clippy::all)] pub mod device_managed_networks { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub config: &'a Output, @@ -5889,10 +5614,7 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("config", &self.config) @@ -5908,10 +5630,7 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("config", &self.config) @@ -5930,7 +5649,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -5997,26 +5717,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_device_managed_networks_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod device_policy_certificates { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub enabled: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -6028,10 +5745,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -6046,7 +5760,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -6069,7 +5784,10 @@ pub mod exports { }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { enabled: enabled5, zone_id: zone_id5 } = result3; + let Res { + enabled: enabled5, + zone_id: zone_id5, + } = result3; *ptr4.add(0).cast::() = (enabled5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 @@ -6091,17 +5809,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_device_policy_certificates_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod device_posture_integration { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub configs: &'a Output, @@ -6111,10 +5829,7 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("configs", &self.configs) @@ -6134,10 +5849,7 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("configs", &self.configs) @@ -6160,7 +5872,8 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -6246,17 +5959,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_device_posture_integration_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod device_posture_rule { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub description: &'a Output, @@ -6268,10 +5981,7 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("description", &self.description) @@ -6295,10 +6005,7 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("description", &self.description) @@ -6325,7 +6032,8 @@ pub mod exports { arg8: i32, arg9: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -6429,17 +6137,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_device_posture_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 32], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); } #[allow(dead_code, clippy::all)] pub mod device_settings_policy { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allow_mode_switch: &'a Output, @@ -6461,10 +6169,7 @@ pub mod exports { pub switch_locked: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("allow-mode-switch", &self.allow_mode_switch) @@ -6508,10 +6213,7 @@ pub mod exports { pub switch_locked: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("allow-mode-switch", &self.allow_mode_switch) @@ -6537,7 +6239,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -6714,31 +6417,23 @@ pub mod exports { switch_locked: switch_locked41, } = result39; *ptr40.add(0).cast::() = (account_id41).take_handle() as i32; - *ptr40.add(4).cast::() = (allow_mode_switch41).take_handle() - as i32; + *ptr40.add(4).cast::() = (allow_mode_switch41).take_handle() as i32; *ptr40.add(8).cast::() = (allow_updates41).take_handle() as i32; - *ptr40.add(12).cast::() = (allowed_to_leave41).take_handle() - as i32; + *ptr40.add(12).cast::() = (allowed_to_leave41).take_handle() as i32; *ptr40.add(16).cast::() = (auto_connect41).take_handle() as i32; - *ptr40.add(20).cast::() = (captive_portal41).take_handle() - as i32; + *ptr40.add(20).cast::() = (captive_portal41).take_handle() as i32; *ptr40.add(24).cast::() = (default41).take_handle() as i32; *ptr40.add(28).cast::() = (description41).take_handle() as i32; - *ptr40.add(32).cast::() = (disable_auto_fallback41) - .take_handle() as i32; + *ptr40.add(32).cast::() = (disable_auto_fallback41).take_handle() as i32; *ptr40.add(36).cast::() = (enabled41).take_handle() as i32; - *ptr40.add(40).cast::() = (exclude_office_ips41).take_handle() - as i32; + *ptr40.add(40).cast::() = (exclude_office_ips41).take_handle() as i32; *ptr40.add(44).cast::() = (match_41).take_handle() as i32; *ptr40.add(48).cast::() = (name41).take_handle() as i32; *ptr40.add(52).cast::() = (precedence41).take_handle() as i32; - *ptr40.add(56).cast::() = (service_mode_v2_mode41).take_handle() - as i32; - *ptr40.add(60).cast::() = (service_mode_v2_port41).take_handle() - as i32; + *ptr40.add(56).cast::() = (service_mode_v2_mode41).take_handle() as i32; + *ptr40.add(60).cast::() = (service_mode_v2_port41).take_handle() as i32; *ptr40.add(64).cast::() = (support_url41).take_handle() as i32; - *ptr40.add(68).cast::() = (switch_locked41).take_handle() - as i32; + *ptr40.add(68).cast::() = (switch_locked41).take_handle() as i32; ptr40 } pub trait Guest { @@ -6757,17 +6452,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_device_settings_policy_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 72]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 72], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 72]); } #[allow(dead_code, clippy::all)] pub mod dlp_profile { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allowed_match_count: &'a Output, @@ -6778,10 +6473,7 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("allowed-match-count", &self.allowed_match_count) @@ -6803,10 +6495,7 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("allowed-match-count", &self.allowed_match_count) @@ -6831,7 +6520,8 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -6899,10 +6589,8 @@ pub mod exports { type_: type_10, } = result8; *ptr9.add(0).cast::() = (account_id10).take_handle() as i32; - *ptr9.add(4).cast::() = (allowed_match_count10).take_handle() - as i32; - *ptr9.add(8).cast::() = (context_awareness10).take_handle() - as i32; + *ptr9.add(4).cast::() = (allowed_match_count10).take_handle() as i32; + *ptr9.add(8).cast::() = (context_awareness10).take_handle() as i32; *ptr9.add(12).cast::() = (description10).take_handle() as i32; *ptr9.add(16).cast::() = (entries10).take_handle() as i32; *ptr9.add(20).cast::() = (name10).take_handle() as i32; @@ -6928,26 +6616,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_dlp_profile_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 28], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); } #[allow(dead_code, clippy::all)] pub mod email_routing_address { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub email: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("email", &self.email) @@ -6963,10 +6648,7 @@ pub mod exports { pub verified: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("created", &self.created) @@ -6985,7 +6667,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -7041,17 +6724,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_email_routing_address_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod email_routing_catch_all { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub actions: &'a Output, pub enabled: &'a Output, @@ -7060,10 +6743,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("actions", &self.actions) .field("enabled", &self.enabled) @@ -7082,10 +6762,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("actions", &self.actions) .field("enabled", &self.enabled) @@ -7107,7 +6784,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -7185,17 +6863,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_email_routing_catch_all_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod email_routing_rule { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub actions: &'a Output, pub enabled: &'a Output, @@ -7205,10 +6883,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("actions", &self.actions) .field("enabled", &self.enabled) @@ -7229,10 +6904,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("actions", &self.actions) .field("enabled", &self.enabled) @@ -7256,7 +6928,8 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -7344,27 +7017,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_email_routing_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 28], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); } #[allow(dead_code, clippy::all)] pub mod email_routing_settings { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub enabled: &'a Output, pub skip_wizard: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("enabled", &self.enabled) .field("skip-wizard", &self.skip_wizard) @@ -7383,10 +7053,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("created", &self.created) .field("enabled", &self.enabled) @@ -7408,7 +7075,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -7476,27 +7144,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_email_routing_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 32], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); } #[allow(dead_code, clippy::all)] pub mod fallback_domain { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub domains: &'a Output, pub policy_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("domains", &self.domains) @@ -7510,10 +7175,7 @@ pub mod exports { pub policy_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("domains", &self.domains) @@ -7530,7 +7192,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -7588,17 +7251,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_fallback_domain_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod filter { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub description: &'a Output, pub expression: &'a Output, @@ -7607,10 +7270,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("description", &self.description) .field("expression", &self.expression) @@ -7628,10 +7288,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("description", &self.description) .field("expression", &self.expression) @@ -7652,7 +7309,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -7728,17 +7386,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_filter_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod firewall_rule { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub action: &'a Output, pub description: &'a Output, @@ -7749,10 +7407,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("action", &self.action) .field("description", &self.description) @@ -7774,10 +7429,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("action", &self.action) .field("description", &self.description) @@ -7802,7 +7454,8 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -7897,17 +7550,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_firewall_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 28], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); } #[allow(dead_code, clippy::all)] pub mod gre_tunnel { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub cloudflare_gre_endpoint: &'a Output, @@ -7922,16 +7575,10 @@ pub mod exports { pub ttl: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) - .field( - "cloudflare-gre-endpoint", - &self.cloudflare_gre_endpoint, - ) + .field("cloudflare-gre-endpoint", &self.cloudflare_gre_endpoint) .field("customer-gre-endpoint", &self.customer_gre_endpoint) .field("description", &self.description) .field("health-check-enabled", &self.health_check_enabled) @@ -7958,16 +7605,10 @@ pub mod exports { pub ttl: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) - .field( - "cloudflare-gre-endpoint", - &self.cloudflare_gre_endpoint, - ) + .field("cloudflare-gre-endpoint", &self.cloudflare_gre_endpoint) .field("customer-gre-endpoint", &self.customer_gre_endpoint) .field("description", &self.description) .field("health-check-enabled", &self.health_check_enabled) @@ -7997,7 +7638,8 @@ pub mod exports { arg11: i32, arg12: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -8097,19 +7739,13 @@ pub mod exports { ttl: ttl14, } = result12; *ptr13.add(0).cast::() = (account_id14).take_handle() as i32; - *ptr13.add(4).cast::() = (cloudflare_gre_endpoint14) - .take_handle() as i32; - *ptr13.add(8).cast::() = (customer_gre_endpoint14).take_handle() - as i32; + *ptr13.add(4).cast::() = (cloudflare_gre_endpoint14).take_handle() as i32; + *ptr13.add(8).cast::() = (customer_gre_endpoint14).take_handle() as i32; *ptr13.add(12).cast::() = (description14).take_handle() as i32; - *ptr13.add(16).cast::() = (health_check_enabled14).take_handle() - as i32; - *ptr13.add(20).cast::() = (health_check_target14).take_handle() - as i32; - *ptr13.add(24).cast::() = (health_check_type14).take_handle() - as i32; - *ptr13.add(28).cast::() = (interface_address14).take_handle() - as i32; + *ptr13.add(16).cast::() = (health_check_enabled14).take_handle() as i32; + *ptr13.add(20).cast::() = (health_check_target14).take_handle() as i32; + *ptr13.add(24).cast::() = (health_check_type14).take_handle() as i32; + *ptr13.add(28).cast::() = (interface_address14).take_handle() as i32; *ptr13.add(32).cast::() = (mtu14).take_handle() as i32; *ptr13.add(36).cast::() = (name14).take_handle() as i32; *ptr13.add(40).cast::() = (ttl14).take_handle() as i32; @@ -8135,17 +7771,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_gre_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 44]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 44], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 44]); } #[allow(dead_code, clippy::all)] pub mod healthcheck { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub address: &'a Output, pub allow_insecure: &'a Output, @@ -8169,10 +7805,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("address", &self.address) .field("allow-insecure", &self.allow_insecure) @@ -8222,10 +7855,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("address", &self.address) .field("allow-insecure", &self.allow_insecure) @@ -8255,7 +7885,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -8452,21 +8083,15 @@ pub mod exports { zone_id: zone_id45, } = result43; *ptr44.add(0).cast::() = (address45).take_handle() as i32; - *ptr44.add(4).cast::() = (allow_insecure45).take_handle() - as i32; + *ptr44.add(4).cast::() = (allow_insecure45).take_handle() as i32; *ptr44.add(8).cast::() = (check_regions45).take_handle() as i32; - *ptr44.add(12).cast::() = (consecutive_fails45).take_handle() - as i32; - *ptr44.add(16).cast::() = (consecutive_successes45) - .take_handle() as i32; + *ptr44.add(12).cast::() = (consecutive_fails45).take_handle() as i32; + *ptr44.add(16).cast::() = (consecutive_successes45).take_handle() as i32; *ptr44.add(20).cast::() = (created_on45).take_handle() as i32; *ptr44.add(24).cast::() = (description45).take_handle() as i32; - *ptr44.add(28).cast::() = (expected_body45).take_handle() - as i32; - *ptr44.add(32).cast::() = (expected_codes45).take_handle() - as i32; - *ptr44.add(36).cast::() = (follow_redirects45).take_handle() - as i32; + *ptr44.add(28).cast::() = (expected_body45).take_handle() as i32; + *ptr44.add(32).cast::() = (expected_codes45).take_handle() as i32; + *ptr44.add(36).cast::() = (follow_redirects45).take_handle() as i32; *ptr44.add(40).cast::() = (headers45).take_handle() as i32; *ptr44.add(44).cast::() = (interval45).take_handle() as i32; *ptr44.add(48).cast::() = (method45).take_handle() as i32; @@ -8497,17 +8122,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_healthcheck_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 88]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 88], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 88]); } #[allow(dead_code, clippy::all)] pub mod hostname_tls_setting { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub hostname: &'a Output, pub setting: &'a Output, @@ -8515,10 +8140,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("hostname", &self.hostname) .field("setting", &self.setting) @@ -8536,10 +8158,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("created-at", &self.created_at) .field("hostname", &self.hostname) @@ -8560,7 +8179,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -8631,17 +8251,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_hostname_tls_setting_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod hostname_tls_setting_ciphers { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub hostname: &'a Output, pub ports: &'a Output, @@ -8649,10 +8269,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("hostname", &self.hostname) .field("ports", &self.ports) @@ -8670,10 +8287,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("created-at", &self.created_at) .field("hostname", &self.hostname) @@ -8694,7 +8308,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -8765,17 +8380,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_hostname_tls_setting_ciphers_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod hyperdrive_config { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub caching: &'a Output, @@ -8783,10 +8398,7 @@ pub mod exports { pub origin: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("caching", &self.caching) @@ -8802,10 +8414,7 @@ pub mod exports { pub origin: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("caching", &self.caching) @@ -8824,7 +8433,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -8891,17 +8501,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_hyperdrive_config_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod ipsec_tunnel { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allow_null_cipher: &'a Output, @@ -8922,10 +8532,7 @@ pub mod exports { pub user_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("allow-null-cipher", &self.allow_null_cipher) @@ -8933,10 +8540,7 @@ pub mod exports { .field("customer-endpoint", &self.customer_endpoint) .field("description", &self.description) .field("fqdn-id", &self.fqdn_id) - .field( - "health-check-direction", - &self.health_check_direction, - ) + .field("health-check-direction", &self.health_check_direction) .field("health-check-enabled", &self.health_check_enabled) .field("health-check-rate", &self.health_check_rate) .field("health-check-target", &self.health_check_target) @@ -8970,10 +8574,7 @@ pub mod exports { pub user_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("allow-null-cipher", &self.allow_null_cipher) @@ -8981,10 +8582,7 @@ pub mod exports { .field("customer-endpoint", &self.customer_endpoint) .field("description", &self.description) .field("fqdn-id", &self.fqdn_id) - .field( - "health-check-direction", - &self.health_check_direction, - ) + .field("health-check-direction", &self.health_check_direction) .field("health-check-enabled", &self.health_check_enabled) .field("health-check-rate", &self.health_check_rate) .field("health-check-target", &self.health_check_target) @@ -9001,7 +8599,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -9169,27 +8768,18 @@ pub mod exports { user_id: user_id39, } = result37; *ptr38.add(0).cast::() = (account_id39).take_handle() as i32; - *ptr38.add(4).cast::() = (allow_null_cipher39).take_handle() - as i32; - *ptr38.add(8).cast::() = (cloudflare_endpoint39).take_handle() - as i32; - *ptr38.add(12).cast::() = (customer_endpoint39).take_handle() - as i32; + *ptr38.add(4).cast::() = (allow_null_cipher39).take_handle() as i32; + *ptr38.add(8).cast::() = (cloudflare_endpoint39).take_handle() as i32; + *ptr38.add(12).cast::() = (customer_endpoint39).take_handle() as i32; *ptr38.add(16).cast::() = (description39).take_handle() as i32; *ptr38.add(20).cast::() = (fqdn_id39).take_handle() as i32; - *ptr38.add(24).cast::() = (health_check_direction39) - .take_handle() as i32; - *ptr38.add(28).cast::() = (health_check_enabled39).take_handle() - as i32; - *ptr38.add(32).cast::() = (health_check_rate39).take_handle() - as i32; - *ptr38.add(36).cast::() = (health_check_target39).take_handle() - as i32; - *ptr38.add(40).cast::() = (health_check_type39).take_handle() - as i32; + *ptr38.add(24).cast::() = (health_check_direction39).take_handle() as i32; + *ptr38.add(28).cast::() = (health_check_enabled39).take_handle() as i32; + *ptr38.add(32).cast::() = (health_check_rate39).take_handle() as i32; + *ptr38.add(36).cast::() = (health_check_target39).take_handle() as i32; + *ptr38.add(40).cast::() = (health_check_type39).take_handle() as i32; *ptr38.add(44).cast::() = (hex_id39).take_handle() as i32; - *ptr38.add(48).cast::() = (interface_address39).take_handle() - as i32; + *ptr38.add(48).cast::() = (interface_address39).take_handle() as i32; *ptr38.add(52).cast::() = (name39).take_handle() as i32; *ptr38.add(56).cast::() = (psk39).take_handle() as i32; *ptr38.add(60).cast::() = (remote_id39).take_handle() as i32; @@ -9212,17 +8802,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_ipsec_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 68]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 68], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 68]); } #[allow(dead_code, clippy::all)] pub mod keyless_certificate { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub bundle_method: &'a Output, pub certificate: &'a Output, @@ -9233,10 +8823,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("bundle-method", &self.bundle_method) .field("certificate", &self.certificate) @@ -9259,10 +8846,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("bundle-method", &self.bundle_method) .field("certificate", &self.certificate) @@ -9288,7 +8872,8 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -9385,17 +8970,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_keyless_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 32], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); } #[allow(dead_code, clippy::all)] pub mod list { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub description: &'a Output, @@ -9404,10 +8989,7 @@ pub mod exports { pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("description", &self.description) @@ -9425,10 +9007,7 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("description", &self.description) @@ -9449,7 +9028,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -9525,17 +9105,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_list_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod list_item { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub asn: &'a Output, @@ -9546,10 +9126,7 @@ pub mod exports { pub redirect: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("asn", &self.asn) @@ -9571,10 +9148,7 @@ pub mod exports { pub redirect: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("asn", &self.asn) @@ -9599,7 +9173,8 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -9694,17 +9269,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_list_item_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 28], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); } #[allow(dead_code, clippy::all)] pub mod load_balancer { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub adaptive_routings: &'a Output, pub country_pools: &'a Output, @@ -9727,10 +9302,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("adaptive-routings", &self.adaptive_routings) .field("country-pools", &self.country_pools) @@ -9781,10 +9353,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("adaptive-routings", &self.adaptive_routings) .field("country-pools", &self.country_pools) @@ -9816,7 +9385,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -10003,34 +9573,26 @@ pub mod exports { ttl: ttl43, zone_id: zone_id43, } = result41; - *ptr42.add(0).cast::() = (adaptive_routings43).take_handle() - as i32; + *ptr42.add(0).cast::() = (adaptive_routings43).take_handle() as i32; *ptr42.add(4).cast::() = (country_pools43).take_handle() as i32; *ptr42.add(8).cast::() = (created_on43).take_handle() as i32; - *ptr42.add(12).cast::() = (default_pool_ids43).take_handle() - as i32; + *ptr42.add(12).cast::() = (default_pool_ids43).take_handle() as i32; *ptr42.add(16).cast::() = (description43).take_handle() as i32; *ptr42.add(20).cast::() = (enabled43).take_handle() as i32; - *ptr42.add(24).cast::() = (fallback_pool_id43).take_handle() - as i32; - *ptr42.add(28).cast::() = (location_strategies43).take_handle() - as i32; + *ptr42.add(24).cast::() = (fallback_pool_id43).take_handle() as i32; + *ptr42.add(28).cast::() = (location_strategies43).take_handle() as i32; *ptr42.add(32).cast::() = (modified_on43).take_handle() as i32; *ptr42.add(36).cast::() = (name43).take_handle() as i32; *ptr42.add(40).cast::() = (pop_pools43).take_handle() as i32; *ptr42.add(44).cast::() = (proxied43).take_handle() as i32; - *ptr42.add(48).cast::() = (random_steerings43).take_handle() - as i32; + *ptr42.add(48).cast::() = (random_steerings43).take_handle() as i32; *ptr42.add(52).cast::() = (region_pools43).take_handle() as i32; *ptr42.add(56).cast::() = (rules43).take_handle() as i32; - *ptr42.add(60).cast::() = (session_affinity43).take_handle() - as i32; - *ptr42.add(64).cast::() = (session_affinity_attributes43) - .take_handle() as i32; - *ptr42.add(68).cast::() = (session_affinity_ttl43).take_handle() - as i32; - *ptr42.add(72).cast::() = (steering_policy43).take_handle() - as i32; + *ptr42.add(60).cast::() = (session_affinity43).take_handle() as i32; + *ptr42.add(64).cast::() = + (session_affinity_attributes43).take_handle() as i32; + *ptr42.add(68).cast::() = (session_affinity_ttl43).take_handle() as i32; + *ptr42.add(72).cast::() = (steering_policy43).take_handle() as i32; *ptr42.add(76).cast::() = (ttl43).take_handle() as i32; *ptr42.add(80).cast::() = (zone_id43).take_handle() as i32; ptr42 @@ -10051,17 +9613,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_load_balancer_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 84]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 84], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 84]); } #[allow(dead_code, clippy::all)] pub mod load_balancer_monitor { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub allow_insecure: &'a Output, @@ -10082,10 +9644,7 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("allow-insecure", &self.allow_insecure) @@ -10129,10 +9688,7 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("allow-insecure", &self.allow_insecure) @@ -10159,7 +9715,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -10329,20 +9886,14 @@ pub mod exports { type_: type_39, } = result37; *ptr38.add(0).cast::() = (account_id39).take_handle() as i32; - *ptr38.add(4).cast::() = (allow_insecure39).take_handle() - as i32; - *ptr38.add(8).cast::() = (consecutive_down39).take_handle() - as i32; - *ptr38.add(12).cast::() = (consecutive_up39).take_handle() - as i32; + *ptr38.add(4).cast::() = (allow_insecure39).take_handle() as i32; + *ptr38.add(8).cast::() = (consecutive_down39).take_handle() as i32; + *ptr38.add(12).cast::() = (consecutive_up39).take_handle() as i32; *ptr38.add(16).cast::() = (created_on39).take_handle() as i32; *ptr38.add(20).cast::() = (description39).take_handle() as i32; - *ptr38.add(24).cast::() = (expected_body39).take_handle() - as i32; - *ptr38.add(28).cast::() = (expected_codes39).take_handle() - as i32; - *ptr38.add(32).cast::() = (follow_redirects39).take_handle() - as i32; + *ptr38.add(24).cast::() = (expected_body39).take_handle() as i32; + *ptr38.add(28).cast::() = (expected_codes39).take_handle() as i32; + *ptr38.add(32).cast::() = (follow_redirects39).take_handle() as i32; *ptr38.add(36).cast::() = (headers39).take_handle() as i32; *ptr38.add(40).cast::() = (interval39).take_handle() as i32; *ptr38.add(44).cast::() = (method39).take_handle() as i32; @@ -10371,17 +9922,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_load_balancer_monitor_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 76]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 76], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 76]); } #[allow(dead_code, clippy::all)] pub mod load_balancer_pool { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub check_regions: &'a Output, @@ -10398,10 +9949,7 @@ pub mod exports { pub origins: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("check-regions", &self.check_regions) @@ -10437,10 +9985,7 @@ pub mod exports { pub origins: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("check-regions", &self.check_regions) @@ -10479,7 +10024,8 @@ pub mod exports { arg13: i32, arg14: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -10602,18 +10148,14 @@ pub mod exports { *ptr15.add(12).cast::() = (description16).take_handle() as i32; *ptr15.add(16).cast::() = (enabled16).take_handle() as i32; *ptr15.add(20).cast::() = (latitude16).take_handle() as i32; - *ptr15.add(24).cast::() = (load_sheddings16).take_handle() - as i32; + *ptr15.add(24).cast::() = (load_sheddings16).take_handle() as i32; *ptr15.add(28).cast::() = (longitude16).take_handle() as i32; - *ptr15.add(32).cast::() = (minimum_origins16).take_handle() - as i32; + *ptr15.add(32).cast::() = (minimum_origins16).take_handle() as i32; *ptr15.add(36).cast::() = (modified_on16).take_handle() as i32; *ptr15.add(40).cast::() = (monitor16).take_handle() as i32; *ptr15.add(44).cast::() = (name16).take_handle() as i32; - *ptr15.add(48).cast::() = (notification_email16).take_handle() - as i32; - *ptr15.add(52).cast::() = (origin_steerings16).take_handle() - as i32; + *ptr15.add(48).cast::() = (notification_email16).take_handle() as i32; + *ptr15.add(52).cast::() = (origin_steerings16).take_handle() as i32; *ptr15.add(56).cast::() = (origins16).take_handle() as i32; ptr15 } @@ -10638,26 +10180,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_load_balancer_pool_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 60]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 60], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 60]); } #[allow(dead_code, clippy::all)] pub mod logpull_retention { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub enabled: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -10669,10 +10208,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -10687,7 +10223,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -10710,7 +10247,10 @@ pub mod exports { }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { enabled: enabled5, zone_id: zone_id5 } = result3; + let Res { + enabled: enabled5, + zone_id: zone_id5, + } = result3; *ptr4.add(0).cast::() = (enabled5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 @@ -10732,17 +10272,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_logpull_retention_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod logpush_job { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub dataset: &'a Output, @@ -10761,10 +10301,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("dataset", &self.dataset) @@ -10805,10 +10342,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("dataset", &self.dataset) @@ -10834,7 +10368,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -10985,25 +10520,19 @@ pub mod exports { } = result33; *ptr34.add(0).cast::() = (account_id35).take_handle() as i32; *ptr34.add(4).cast::() = (dataset35).take_handle() as i32; - *ptr34.add(8).cast::() = (destination_conf35).take_handle() - as i32; + *ptr34.add(8).cast::() = (destination_conf35).take_handle() as i32; *ptr34.add(12).cast::() = (enabled35).take_handle() as i32; *ptr34.add(16).cast::() = (filter35).take_handle() as i32; *ptr34.add(20).cast::() = (frequency35).take_handle() as i32; *ptr34.add(24).cast::() = (kind35).take_handle() as i32; - *ptr34.add(28).cast::() = (logpull_options35).take_handle() - as i32; - *ptr34.add(32).cast::() = (max_upload_bytes35).take_handle() - as i32; - *ptr34.add(36).cast::() = (max_upload_interval_seconds35) - .take_handle() as i32; - *ptr34.add(40).cast::() = (max_upload_records35).take_handle() - as i32; + *ptr34.add(28).cast::() = (logpull_options35).take_handle() as i32; + *ptr34.add(32).cast::() = (max_upload_bytes35).take_handle() as i32; + *ptr34.add(36).cast::() = + (max_upload_interval_seconds35).take_handle() as i32; + *ptr34.add(40).cast::() = (max_upload_records35).take_handle() as i32; *ptr34.add(44).cast::() = (name35).take_handle() as i32; - *ptr34.add(48).cast::() = (output_options35).take_handle() - as i32; - *ptr34.add(52).cast::() = (ownership_challenge35).take_handle() - as i32; + *ptr34.add(48).cast::() = (output_options35).take_handle() as i32; + *ptr34.add(52).cast::() = (ownership_challenge35).take_handle() as i32; *ptr34.add(56).cast::() = (zone_id35).take_handle() as i32; ptr34 } @@ -11023,27 +10552,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_logpush_job_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 60]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 60], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 60]); } #[allow(dead_code, clippy::all)] pub mod logpush_ownership_challenge { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub destination_conf: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("destination-conf", &self.destination_conf) @@ -11058,10 +10584,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("destination-conf", &self.destination_conf) @@ -11082,7 +10605,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11119,10 +10643,9 @@ pub mod exports { zone_id: zone_id6, } = result4; *ptr5.add(0).cast::() = (account_id6).take_handle() as i32; - *ptr5.add(4).cast::() = (destination_conf6).take_handle() - as i32; - *ptr5.add(8).cast::() = (ownership_challenge_filename6) - .take_handle() as i32; + *ptr5.add(4).cast::() = (destination_conf6).take_handle() as i32; + *ptr5.add(8).cast::() = + (ownership_challenge_filename6).take_handle() as i32; *ptr5.add(12).cast::() = (zone_id6).take_handle() as i32; ptr5 } @@ -11144,17 +10667,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_logpush_ownership_challenge_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod magic_firewall_ruleset { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub description: &'a Output, @@ -11162,10 +10685,7 @@ pub mod exports { pub rules: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("description", &self.description) @@ -11181,10 +10701,7 @@ pub mod exports { pub rules: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("description", &self.description) @@ -11203,7 +10720,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11270,36 +10788,27 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_magic_firewall_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod managed_headers { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub managed_request_headers: &'a Output, pub managed_response_headers: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") - .field( - "managed-request-headers", - &self.managed_request_headers, - ) - .field( - "managed-response-headers", - &self.managed_response_headers, - ) + .field("managed-request-headers", &self.managed_request_headers) + .field("managed-response-headers", &self.managed_response_headers) .field("zone-id", &self.zone_id) .finish() } @@ -11310,19 +10819,10 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") - .field( - "managed-request-headers", - &self.managed_request_headers, - ) - .field( - "managed-response-headers", - &self.managed_response_headers, - ) + .field("managed-request-headers", &self.managed_request_headers) + .field("managed-response-headers", &self.managed_response_headers) .field("zone-id", &self.zone_id) .finish() } @@ -11336,7 +10836,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11371,10 +10872,8 @@ pub mod exports { managed_response_headers: managed_response_headers6, zone_id: zone_id6, } = result4; - *ptr5.add(0).cast::() = (managed_request_headers6).take_handle() - as i32; - *ptr5.add(4).cast::() = (managed_response_headers6) - .take_handle() as i32; + *ptr5.add(0).cast::() = (managed_request_headers6).take_handle() as i32; + *ptr5.add(4).cast::() = (managed_response_headers6).take_handle() as i32; *ptr5.add(8).cast::() = (zone_id6).take_handle() as i32; ptr5 } @@ -11396,17 +10895,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_managed_headers_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod mtls_certificate { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub ca: &'a Output, @@ -11415,10 +10914,7 @@ pub mod exports { pub private_key: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("ca", &self.ca) @@ -11441,10 +10937,7 @@ pub mod exports { pub uploaded_on: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("ca", &self.ca) @@ -11470,7 +10963,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11556,17 +11050,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_mtls_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 40]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 40], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 40]); } #[allow(dead_code, clippy::all)] pub mod notification_policy { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub alert_type: &'a Output, @@ -11579,10 +11073,7 @@ pub mod exports { pub webhooks_integrations: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("alert-type", &self.alert_type) @@ -11591,10 +11082,7 @@ pub mod exports { .field("enabled", &self.enabled) .field("filters", &self.filters) .field("name", &self.name) - .field( - "pagerduty-integrations", - &self.pagerduty_integrations, - ) + .field("pagerduty-integrations", &self.pagerduty_integrations) .field("webhooks-integrations", &self.webhooks_integrations) .finish() } @@ -11613,10 +11101,7 @@ pub mod exports { pub webhooks_integrations: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("alert-type", &self.alert_type) @@ -11627,10 +11112,7 @@ pub mod exports { .field("filters", &self.filters) .field("modified", &self.modified) .field("name", &self.name) - .field( - "pagerduty-integrations", - &self.pagerduty_integrations, - ) + .field("pagerduty-integrations", &self.pagerduty_integrations) .field("webhooks-integrations", &self.webhooks_integrations) .finish() } @@ -11650,7 +11132,8 @@ pub mod exports { arg9: i32, arg10: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11739,16 +11222,13 @@ pub mod exports { *ptr11.add(4).cast::() = (alert_type12).take_handle() as i32; *ptr11.add(8).cast::() = (created12).take_handle() as i32; *ptr11.add(12).cast::() = (description12).take_handle() as i32; - *ptr11.add(16).cast::() = (email_integrations12).take_handle() - as i32; + *ptr11.add(16).cast::() = (email_integrations12).take_handle() as i32; *ptr11.add(20).cast::() = (enabled12).take_handle() as i32; *ptr11.add(24).cast::() = (filters12).take_handle() as i32; *ptr11.add(28).cast::() = (modified12).take_handle() as i32; *ptr11.add(32).cast::() = (name12).take_handle() as i32; - *ptr11.add(36).cast::() = (pagerduty_integrations12) - .take_handle() as i32; - *ptr11.add(40).cast::() = (webhooks_integrations12) - .take_handle() as i32; + *ptr11.add(36).cast::() = (pagerduty_integrations12).take_handle() as i32; + *ptr11.add(40).cast::() = (webhooks_integrations12).take_handle() as i32; ptr11 } pub trait Guest { @@ -11770,17 +11250,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_notification_policy_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 44]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 44], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 44]); } #[allow(dead_code, clippy::all)] pub mod notification_policy_webhooks { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub name: &'a Output, @@ -11788,10 +11268,7 @@ pub mod exports { pub url: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("name", &self.name) @@ -11811,10 +11288,7 @@ pub mod exports { pub url: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("created-at", &self.created_at) @@ -11837,7 +11311,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -11912,17 +11387,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_notification_policy_webhooks_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 32], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); } #[allow(dead_code, clippy::all)] pub mod observatory_scheduled_test { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub frequency: &'a Output, pub region: &'a Output, @@ -11930,10 +11405,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("frequency", &self.frequency) .field("region", &self.region) @@ -11949,10 +11421,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("frequency", &self.frequency) .field("region", &self.region) @@ -11971,7 +11440,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -12038,17 +11508,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_observatory_scheduled_test_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod origin_ca_certificate { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub csr: &'a Output, pub hostnames: &'a Output, @@ -12057,10 +11527,7 @@ pub mod exports { pub requested_validity: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("csr", &self.csr) .field("hostnames", &self.hostnames) @@ -12080,10 +11547,7 @@ pub mod exports { pub requested_validity: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("certificate", &self.certificate) .field("csr", &self.csr) @@ -12106,7 +11570,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -12163,11 +11628,9 @@ pub mod exports { *ptr7.add(4).cast::() = (csr8).take_handle() as i32; *ptr7.add(8).cast::() = (expires_on8).take_handle() as i32; *ptr7.add(12).cast::() = (hostnames8).take_handle() as i32; - *ptr7.add(16).cast::() = (min_days_for_renewal8).take_handle() - as i32; + *ptr7.add(16).cast::() = (min_days_for_renewal8).take_handle() as i32; *ptr7.add(20).cast::() = (request_type8).take_handle() as i32; - *ptr7.add(24).cast::() = (requested_validity8).take_handle() - as i32; + *ptr7.add(24).cast::() = (requested_validity8).take_handle() as i32; ptr7 } pub trait Guest { @@ -12188,17 +11651,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_origin_ca_certificate_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 28], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); } #[allow(dead_code, clippy::all)] pub mod page_rule { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub actions: &'a Output, pub priority: &'a Output, @@ -12207,10 +11670,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("actions", &self.actions) .field("priority", &self.priority) @@ -12228,10 +11688,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("actions", &self.actions) .field("priority", &self.priority) @@ -12252,7 +11709,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -12328,27 +11786,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_page_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod pages_domain { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub domain: &'a Output, pub project_name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("domain", &self.domain) @@ -12363,10 +11818,7 @@ pub mod exports { pub status: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("domain", &self.domain) @@ -12384,7 +11836,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -12444,17 +11897,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_pages_domain_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod pages_project { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub build_config: &'a Output, @@ -12464,10 +11917,7 @@ pub mod exports { pub source: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("build-config", &self.build_config) @@ -12490,10 +11940,7 @@ pub mod exports { pub subdomain: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("build-config", &self.build_config) @@ -12519,7 +11966,8 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -12584,12 +12032,10 @@ pub mod exports { *ptr8.add(0).cast::() = (account_id9).take_handle() as i32; *ptr8.add(4).cast::() = (build_config9).take_handle() as i32; *ptr8.add(8).cast::() = (created_on9).take_handle() as i32; - *ptr8.add(12).cast::() = (deployment_configs9).take_handle() - as i32; + *ptr8.add(12).cast::() = (deployment_configs9).take_handle() as i32; *ptr8.add(16).cast::() = (domains9).take_handle() as i32; *ptr8.add(20).cast::() = (name9).take_handle() as i32; - *ptr8.add(24).cast::() = (production_branch9).take_handle() - as i32; + *ptr8.add(24).cast::() = (production_branch9).take_handle() as i32; *ptr8.add(28).cast::() = (source9).take_handle() as i32; *ptr8.add(32).cast::() = (subdomain9).take_handle() as i32; ptr8 @@ -12613,26 +12059,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_pages_project_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 36], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); } #[allow(dead_code, clippy::all)] pub mod queue { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("name", &self.name) @@ -12644,10 +12087,7 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("name", &self.name) @@ -12662,7 +12102,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -12685,7 +12126,10 @@ pub mod exports { }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { account_id: account_id5, name: name5 } = result3; + let Res { + account_id: account_id5, + name: name5, + } = result3; *ptr4.add(0).cast::() = (account_id5).take_handle() as i32; *ptr4.add(4).cast::() = (name5).take_handle() as i32; ptr4 @@ -12707,27 +12151,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_queue_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod r2_bucket { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub location: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("location", &self.location) @@ -12741,10 +12182,7 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("location", &self.location) @@ -12761,7 +12199,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -12819,17 +12258,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_r2_bucket_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod rate_limit { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub action: &'a Output, pub bypass_url_patterns: &'a Output, @@ -12842,10 +12281,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("action", &self.action) .field("bypass-url-patterns", &self.bypass_url_patterns) @@ -12871,10 +12307,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("action", &self.action) .field("bypass-url-patterns", &self.bypass_url_patterns) @@ -12903,7 +12336,8 @@ pub mod exports { arg9: i32, arg10: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -12987,8 +12421,7 @@ pub mod exports { zone_id: zone_id12, } = result10; *ptr11.add(0).cast::() = (action12).take_handle() as i32; - *ptr11.add(4).cast::() = (bypass_url_patterns12).take_handle() - as i32; + *ptr11.add(4).cast::() = (bypass_url_patterns12).take_handle() as i32; *ptr11.add(8).cast::() = (correlate12).take_handle() as i32; *ptr11.add(12).cast::() = (description12).take_handle() as i32; *ptr11.add(16).cast::() = (disabled12).take_handle() as i32; @@ -13017,17 +12450,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_rate_limit_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 36], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); } #[allow(dead_code, clippy::all)] pub mod record { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub allow_overwrite: &'a Output, pub comment: &'a Output, @@ -13042,10 +12475,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("allow-overwrite", &self.allow_overwrite) .field("comment", &self.comment) @@ -13080,10 +12510,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("allow-overwrite", &self.allow_overwrite) .field("comment", &self.comment) @@ -13121,7 +12548,8 @@ pub mod exports { arg11: i32, arg12: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -13225,8 +12653,7 @@ pub mod exports { value: value14, zone_id: zone_id14, } = result12; - *ptr13.add(0).cast::() = (allow_overwrite14).take_handle() - as i32; + *ptr13.add(0).cast::() = (allow_overwrite14).take_handle() as i32; *ptr13.add(4).cast::() = (comment14).take_handle() as i32; *ptr13.add(8).cast::() = (created_on14).take_handle() as i32; *ptr13.add(12).cast::() = (data14).take_handle() as i32; @@ -13264,27 +12691,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_record_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 64]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 64], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 64]); } #[allow(dead_code, clippy::all)] pub mod regional_hostname { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub hostname: &'a Output, pub region_key: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("hostname", &self.hostname) .field("region-key", &self.region_key) @@ -13299,10 +12723,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("created-on", &self.created_on) .field("hostname", &self.hostname) @@ -13320,7 +12741,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -13380,26 +12802,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_regional_hostname_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod regional_tiered_cache { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub value: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("value", &self.value) .field("zone-id", &self.zone_id) @@ -13411,10 +12830,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("value", &self.value) .field("zone-id", &self.zone_id) @@ -13429,7 +12845,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -13452,7 +12869,10 @@ pub mod exports { }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { value: value5, zone_id: zone_id5 } = result3; + let Res { + value: value5, + zone_id: zone_id5, + } = result3; *ptr4.add(0).cast::() = (value5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 @@ -13474,17 +12894,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_regional_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod ruleset { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub description: &'a Output, @@ -13495,10 +12915,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("description", &self.description) @@ -13520,10 +12937,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("description", &self.description) @@ -13548,7 +12962,8 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -13643,17 +13058,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_ruleset_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 28], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); } #[allow(dead_code, clippy::all)] pub mod spectrum_application { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub argo_smart_routing: &'a Output, pub dns: &'a Output, @@ -13670,10 +13085,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("argo-smart-routing", &self.argo_smart_routing) .field("dns", &self.dns) @@ -13707,10 +13119,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("argo-smart-routing", &self.argo_smart_routing) .field("dns", &self.dns) @@ -13747,7 +13156,8 @@ pub mod exports { arg13: i32, arg14: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -13862,20 +13272,16 @@ pub mod exports { traffic_type: traffic_type16, zone_id: zone_id16, } = result14; - *ptr15.add(0).cast::() = (argo_smart_routing16).take_handle() - as i32; + *ptr15.add(0).cast::() = (argo_smart_routing16).take_handle() as i32; *ptr15.add(4).cast::() = (dns16).take_handle() as i32; *ptr15.add(8).cast::() = (edge_ips16).take_handle() as i32; *ptr15.add(12).cast::() = (ip_firewall16).take_handle() as i32; - *ptr15.add(16).cast::() = (origin_directs16).take_handle() - as i32; + *ptr15.add(16).cast::() = (origin_directs16).take_handle() as i32; *ptr15.add(20).cast::() = (origin_dns16).take_handle() as i32; *ptr15.add(24).cast::() = (origin_port16).take_handle() as i32; - *ptr15.add(28).cast::() = (origin_port_range16).take_handle() - as i32; + *ptr15.add(28).cast::() = (origin_port_range16).take_handle() as i32; *ptr15.add(32).cast::() = (protocol16).take_handle() as i32; - *ptr15.add(36).cast::() = (proxy_protocol16).take_handle() - as i32; + *ptr15.add(36).cast::() = (proxy_protocol16).take_handle() as i32; *ptr15.add(40).cast::() = (tls16).take_handle() as i32; *ptr15.add(44).cast::() = (traffic_type16).take_handle() as i32; *ptr15.add(48).cast::() = (zone_id16).take_handle() as i32; @@ -13902,17 +13308,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_spectrum_application_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 52]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 52], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 52]); } #[allow(dead_code, clippy::all)] pub mod split_tunnel { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub mode: &'a Output, @@ -13920,10 +13326,7 @@ pub mod exports { pub tunnels: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("mode", &self.mode) @@ -13939,10 +13342,7 @@ pub mod exports { pub tunnels: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("mode", &self.mode) @@ -13961,7 +13361,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -14028,17 +13429,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_split_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod static_route { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub colo_names: &'a Output, @@ -14050,10 +13451,7 @@ pub mod exports { pub weight: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("colo-names", &self.colo_names) @@ -14077,10 +13475,7 @@ pub mod exports { pub weight: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("colo-names", &self.colo_names) @@ -14107,7 +13502,8 @@ pub mod exports { arg8: i32, arg9: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -14211,17 +13607,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_static_route_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 32], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); } #[allow(dead_code, clippy::all)] pub mod teams_account { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub activity_log_enabled: &'a Output, @@ -14240,20 +13636,14 @@ pub mod exports { pub url_browser_isolation_enabled: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("activity-log-enabled", &self.activity_log_enabled) .field("antivirus", &self.antivirus) .field("block-page", &self.block_page) .field("body-scanning", &self.body_scanning) - .field( - "extended-email-matching", - &self.extended_email_matching, - ) + .field("extended-email-matching", &self.extended_email_matching) .field("fips", &self.fips) .field("logging", &self.logging) .field( @@ -14293,20 +13683,14 @@ pub mod exports { pub url_browser_isolation_enabled: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("activity-log-enabled", &self.activity_log_enabled) .field("antivirus", &self.antivirus) .field("block-page", &self.block_page) .field("body-scanning", &self.body_scanning) - .field( - "extended-email-matching", - &self.extended_email_matching, - ) + .field("extended-email-matching", &self.extended_email_matching) .field("fips", &self.fips) .field("logging", &self.logging) .field( @@ -14331,7 +13715,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -14472,7 +13857,8 @@ pub mod exports { extended_email_matching: extended_email_matching35, fips: fips35, logging: logging35, - non_identity_browser_isolation_enabled: non_identity_browser_isolation_enabled35, + non_identity_browser_isolation_enabled: + non_identity_browser_isolation_enabled35, payload_log: payload_log35, protocol_detection_enabled: protocol_detection_enabled35, proxy: proxy35, @@ -14481,28 +13867,23 @@ pub mod exports { url_browser_isolation_enabled: url_browser_isolation_enabled35, } = result33; *ptr34.add(0).cast::() = (account_id35).take_handle() as i32; - *ptr34.add(4).cast::() = (activity_log_enabled35).take_handle() - as i32; + *ptr34.add(4).cast::() = (activity_log_enabled35).take_handle() as i32; *ptr34.add(8).cast::() = (antivirus35).take_handle() as i32; *ptr34.add(12).cast::() = (block_page35).take_handle() as i32; - *ptr34.add(16).cast::() = (body_scanning35).take_handle() - as i32; - *ptr34.add(20).cast::() = (extended_email_matching35) - .take_handle() as i32; + *ptr34.add(16).cast::() = (body_scanning35).take_handle() as i32; + *ptr34.add(20).cast::() = (extended_email_matching35).take_handle() as i32; *ptr34.add(24).cast::() = (fips35).take_handle() as i32; *ptr34.add(28).cast::() = (logging35).take_handle() as i32; - *ptr34.add(32).cast::() = (non_identity_browser_isolation_enabled35) - .take_handle() as i32; + *ptr34.add(32).cast::() = + (non_identity_browser_isolation_enabled35).take_handle() as i32; *ptr34.add(36).cast::() = (payload_log35).take_handle() as i32; - *ptr34.add(40).cast::() = (protocol_detection_enabled35) - .take_handle() as i32; + *ptr34.add(40).cast::() = + (protocol_detection_enabled35).take_handle() as i32; *ptr34.add(44).cast::() = (proxy35).take_handle() as i32; - *ptr34.add(48).cast::() = (ssh_session_log35).take_handle() - as i32; - *ptr34.add(52).cast::() = (tls_decrypt_enabled35).take_handle() - as i32; - *ptr34.add(56).cast::() = (url_browser_isolation_enabled35) - .take_handle() as i32; + *ptr34.add(48).cast::() = (ssh_session_log35).take_handle() as i32; + *ptr34.add(52).cast::() = (tls_decrypt_enabled35).take_handle() as i32; + *ptr34.add(56).cast::() = + (url_browser_isolation_enabled35).take_handle() as i32; ptr34 } pub trait Guest { @@ -14521,17 +13902,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_teams_account_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 60]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 60], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 60]); } #[allow(dead_code, clippy::all)] pub mod teams_list { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub description: &'a Output, @@ -14540,10 +13921,7 @@ pub mod exports { pub type_: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("description", &self.description) @@ -14561,10 +13939,7 @@ pub mod exports { pub type_: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("description", &self.description) @@ -14585,7 +13960,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -14661,17 +14037,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_teams_list_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod teams_location { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub client_default: &'a Output, @@ -14679,10 +14055,7 @@ pub mod exports { pub networks: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("client-default", &self.client_default) @@ -14703,16 +14076,10 @@ pub mod exports { pub policy_ids: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) - .field( - "anonymized-logs-enabled", - &self.anonymized_logs_enabled, - ) + .field("anonymized-logs-enabled", &self.anonymized_logs_enabled) .field("client-default", &self.client_default) .field("doh-subdomain", &self.doh_subdomain) .field("ip", &self.ip) @@ -14733,7 +14100,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -14782,13 +14150,11 @@ pub mod exports { policy_ids: policy_ids7, } = result5; *ptr6.add(0).cast::() = (account_id7).take_handle() as i32; - *ptr6.add(4).cast::() = (anonymized_logs_enabled7).take_handle() - as i32; + *ptr6.add(4).cast::() = (anonymized_logs_enabled7).take_handle() as i32; *ptr6.add(8).cast::() = (client_default7).take_handle() as i32; *ptr6.add(12).cast::() = (doh_subdomain7).take_handle() as i32; *ptr6.add(16).cast::() = (ip7).take_handle() as i32; - *ptr6.add(20).cast::() = (ipv4_destination7).take_handle() - as i32; + *ptr6.add(20).cast::() = (ipv4_destination7).take_handle() as i32; *ptr6.add(24).cast::() = (name7).take_handle() as i32; *ptr6.add(28).cast::() = (networks7).take_handle() as i32; *ptr6.add(32).cast::() = (policy_ids7).take_handle() as i32; @@ -14812,27 +14178,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_teams_location_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 36], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); } #[allow(dead_code, clippy::all)] pub mod teams_proxy_endpoint { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub ips: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("ips", &self.ips) @@ -14847,10 +14210,7 @@ pub mod exports { pub subdomain: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("ips", &self.ips) @@ -14868,7 +14228,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -14928,17 +14289,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_teams_proxy_endpoint_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod teams_rule { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub action: &'a Output, @@ -14953,10 +14314,7 @@ pub mod exports { pub traffic: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("action", &self.action) @@ -14987,10 +14345,7 @@ pub mod exports { pub version: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("action", &self.action) @@ -15024,7 +14379,8 @@ pub mod exports { arg11: i32, arg12: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15127,15 +14483,13 @@ pub mod exports { *ptr13.add(0).cast::() = (account_id14).take_handle() as i32; *ptr13.add(4).cast::() = (action14).take_handle() as i32; *ptr13.add(8).cast::() = (description14).take_handle() as i32; - *ptr13.add(12).cast::() = (device_posture14).take_handle() - as i32; + *ptr13.add(12).cast::() = (device_posture14).take_handle() as i32; *ptr13.add(16).cast::() = (enabled14).take_handle() as i32; *ptr13.add(20).cast::() = (filters14).take_handle() as i32; *ptr13.add(24).cast::() = (identity14).take_handle() as i32; *ptr13.add(28).cast::() = (name14).take_handle() as i32; *ptr13.add(32).cast::() = (precedence14).take_handle() as i32; - *ptr13.add(36).cast::() = (rule_settings14).take_handle() - as i32; + *ptr13.add(36).cast::() = (rule_settings14).take_handle() as i32; *ptr13.add(40).cast::() = (traffic14).take_handle() as i32; *ptr13.add(44).cast::() = (version14).take_handle() as i32; ptr13 @@ -15160,26 +14514,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_teams_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 48]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 48], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 48]); } #[allow(dead_code, clippy::all)] pub mod tiered_cache { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub cache_type: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("cache-type", &self.cache_type) .field("zone-id", &self.zone_id) @@ -15191,10 +14542,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("cache-type", &self.cache_type) .field("zone-id", &self.zone_id) @@ -15209,7 +14557,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -15232,7 +14581,10 @@ pub mod exports { }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { cache_type: cache_type5, zone_id: zone_id5 } = result3; + let Res { + cache_type: cache_type5, + zone_id: zone_id5, + } = result3; *ptr4.add(0).cast::() = (cache_type5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 @@ -15254,27 +14606,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_tiered_cache_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod total_tls { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub certificate_authority: &'a Output, pub enabled: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("certificate-authority", &self.certificate_authority) .field("enabled", &self.enabled) @@ -15288,10 +14637,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("certificate-authority", &self.certificate_authority) .field("enabled", &self.enabled) @@ -15308,7 +14654,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15343,8 +14690,7 @@ pub mod exports { enabled: enabled6, zone_id: zone_id6, } = result4; - *ptr5.add(0).cast::() = (certificate_authority6).take_handle() - as i32; + *ptr5.add(0).cast::() = (certificate_authority6).take_handle() as i32; *ptr5.add(4).cast::() = (enabled6).take_handle() as i32; *ptr5.add(8).cast::() = (zone_id6).take_handle() as i32; ptr5 @@ -15367,17 +14713,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_total_tls_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod tunnel { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub config_src: &'a Output, @@ -15385,10 +14731,7 @@ pub mod exports { pub secret: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("config-src", &self.config_src) @@ -15406,10 +14749,7 @@ pub mod exports { pub tunnel_token: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("cname", &self.cname) @@ -15430,7 +14770,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15501,27 +14842,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_tunnel_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod tunnel_config { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub config: &'a Output, pub tunnel_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("config", &self.config) @@ -15535,10 +14873,7 @@ pub mod exports { pub tunnel_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("config", &self.config) @@ -15555,7 +14890,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15613,17 +14949,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_tunnel_config_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod tunnel_route { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub comment: &'a Output, @@ -15632,10 +14968,7 @@ pub mod exports { pub virtual_network_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("comment", &self.comment) @@ -15653,10 +14986,7 @@ pub mod exports { pub virtual_network_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("comment", &self.comment) @@ -15677,7 +15007,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15732,8 +15063,7 @@ pub mod exports { *ptr7.add(4).cast::() = (comment8).take_handle() as i32; *ptr7.add(8).cast::() = (network8).take_handle() as i32; *ptr7.add(12).cast::() = (tunnel_id8).take_handle() as i32; - *ptr7.add(16).cast::() = (virtual_network_id8).take_handle() - as i32; + *ptr7.add(16).cast::() = (virtual_network_id8).take_handle() as i32; ptr7 } pub trait Guest { @@ -15754,17 +15084,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_tunnel_route_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod tunnel_virtual_network { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub comment: &'a Output, @@ -15772,10 +15102,7 @@ pub mod exports { pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("comment", &self.comment) @@ -15791,10 +15118,7 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("comment", &self.comment) @@ -15813,7 +15137,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -15858,8 +15183,7 @@ pub mod exports { } = result5; *ptr6.add(0).cast::() = (account_id7).take_handle() as i32; *ptr6.add(4).cast::() = (comment7).take_handle() as i32; - *ptr6.add(8).cast::() = (is_default_network7).take_handle() - as i32; + *ptr6.add(8).cast::() = (is_default_network7).take_handle() as i32; *ptr6.add(12).cast::() = (name7).take_handle() as i32; ptr6 } @@ -15881,17 +15205,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_tunnel_virtual_network_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod turnstile_widget { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub bot_fight_mode: &'a Output, @@ -15902,10 +15226,7 @@ pub mod exports { pub region: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("bot-fight-mode", &self.bot_fight_mode) @@ -15928,10 +15249,7 @@ pub mod exports { pub secret: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("bot-fight-mode", &self.bot_fight_mode) @@ -15957,7 +15275,8 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -16054,27 +15373,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_turnstile_widget_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 32], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); } #[allow(dead_code, clippy::all)] pub mod url_normalization_settings { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub scope: &'a Output, pub type_: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("scope", &self.scope) .field("type", &self.type_) @@ -16088,10 +15404,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("scope", &self.scope) .field("type", &self.type_) @@ -16108,7 +15421,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -16138,7 +15452,11 @@ pub mod exports { }, ); let ptr5 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { scope: scope6, type_: type_6, zone_id: zone_id6 } = result4; + let Res { + scope: scope6, + type_: type_6, + zone_id: zone_id6, + } = result4; *ptr5.add(0).cast::() = (scope6).take_handle() as i32; *ptr5.add(4).cast::() = (type_6).take_handle() as i32; *ptr5.add(8).cast::() = (zone_id6).take_handle() as i32; @@ -16162,17 +15480,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_url_normalization_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod user_agent_blocking_rule { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub configuration: &'a Output, pub description: &'a Output, @@ -16181,10 +15499,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("configuration", &self.configuration) .field("description", &self.description) @@ -16202,10 +15517,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("configuration", &self.configuration) .field("description", &self.description) @@ -16226,7 +15538,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -16302,17 +15615,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_user_agent_blocking_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod waiting_room { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub additional_routes: &'a Output, pub cookie_suffix: &'a Output, @@ -16334,23 +15647,14 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("additional-routes", &self.additional_routes) .field("cookie-suffix", &self.cookie_suffix) .field("custom-page-html", &self.custom_page_html) - .field( - "default-template-language", - &self.default_template_language, - ) + .field("default-template-language", &self.default_template_language) .field("description", &self.description) - .field( - "disable-session-renewal", - &self.disable_session_renewal, - ) + .field("disable-session-renewal", &self.disable_session_renewal) .field("host", &self.host) .field("json-response-enabled", &self.json_response_enabled) .field("name", &self.name) @@ -16387,23 +15691,14 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("additional-routes", &self.additional_routes) .field("cookie-suffix", &self.cookie_suffix) .field("custom-page-html", &self.custom_page_html) - .field( - "default-template-language", - &self.default_template_language, - ) + .field("default-template-language", &self.default_template_language) .field("description", &self.description) - .field( - "disable-session-renewal", - &self.disable_session_renewal, - ) + .field("disable-session-renewal", &self.disable_session_renewal) .field("host", &self.host) .field("json-response-enabled", &self.json_response_enabled) .field("name", &self.name) @@ -16422,7 +15717,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -16598,33 +15894,24 @@ pub mod exports { total_active_users: total_active_users41, zone_id: zone_id41, } = result39; - *ptr40.add(0).cast::() = (additional_routes41).take_handle() - as i32; + *ptr40.add(0).cast::() = (additional_routes41).take_handle() as i32; *ptr40.add(4).cast::() = (cookie_suffix41).take_handle() as i32; - *ptr40.add(8).cast::() = (custom_page_html41).take_handle() - as i32; - *ptr40.add(12).cast::() = (default_template_language41) - .take_handle() as i32; + *ptr40.add(8).cast::() = (custom_page_html41).take_handle() as i32; + *ptr40.add(12).cast::() = + (default_template_language41).take_handle() as i32; *ptr40.add(16).cast::() = (description41).take_handle() as i32; - *ptr40.add(20).cast::() = (disable_session_renewal41) - .take_handle() as i32; + *ptr40.add(20).cast::() = (disable_session_renewal41).take_handle() as i32; *ptr40.add(24).cast::() = (host41).take_handle() as i32; - *ptr40.add(28).cast::() = (json_response_enabled41) - .take_handle() as i32; + *ptr40.add(28).cast::() = (json_response_enabled41).take_handle() as i32; *ptr40.add(32).cast::() = (name41).take_handle() as i32; - *ptr40.add(36).cast::() = (new_users_per_minute41).take_handle() - as i32; + *ptr40.add(36).cast::() = (new_users_per_minute41).take_handle() as i32; *ptr40.add(40).cast::() = (path41).take_handle() as i32; *ptr40.add(44).cast::() = (queue_all41).take_handle() as i32; - *ptr40.add(48).cast::() = (queueing_method41).take_handle() - as i32; - *ptr40.add(52).cast::() = (queueing_status_code41).take_handle() - as i32; - *ptr40.add(56).cast::() = (session_duration41).take_handle() - as i32; + *ptr40.add(48).cast::() = (queueing_method41).take_handle() as i32; + *ptr40.add(52).cast::() = (queueing_status_code41).take_handle() as i32; + *ptr40.add(56).cast::() = (session_duration41).take_handle() as i32; *ptr40.add(60).cast::() = (suspended41).take_handle() as i32; - *ptr40.add(64).cast::() = (total_active_users41).take_handle() - as i32; + *ptr40.add(64).cast::() = (total_active_users41).take_handle() as i32; *ptr40.add(68).cast::() = (zone_id41).take_handle() as i32; ptr40 } @@ -16644,17 +15931,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_waiting_room_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 72]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 72], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 72]); } #[allow(dead_code, clippy::all)] pub mod waiting_room_event { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub custom_page_html: &'a Output, pub description: &'a Output, @@ -16673,17 +15960,11 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("custom-page-html", &self.custom_page_html) .field("description", &self.description) - .field( - "disable-session-renewal", - &self.disable_session_renewal, - ) + .field("disable-session-renewal", &self.disable_session_renewal) .field("event-end-time", &self.event_end_time) .field("event-start-time", &self.event_start_time) .field("name", &self.name) @@ -16691,10 +15972,7 @@ pub mod exports { .field("prequeue-start-time", &self.prequeue_start_time) .field("queueing-method", &self.queueing_method) .field("session-duration", &self.session_duration) - .field( - "shuffle-at-event-start", - &self.shuffle_at_event_start, - ) + .field("shuffle-at-event-start", &self.shuffle_at_event_start) .field("suspended", &self.suspended) .field("total-active-users", &self.total_active_users) .field("waiting-room-id", &self.waiting_room_id) @@ -16722,18 +16000,12 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("created-on", &self.created_on) .field("custom-page-html", &self.custom_page_html) .field("description", &self.description) - .field( - "disable-session-renewal", - &self.disable_session_renewal, - ) + .field("disable-session-renewal", &self.disable_session_renewal) .field("event-end-time", &self.event_end_time) .field("event-start-time", &self.event_start_time) .field("modified-on", &self.modified_on) @@ -16742,10 +16014,7 @@ pub mod exports { .field("prequeue-start-time", &self.prequeue_start_time) .field("queueing-method", &self.queueing_method) .field("session-duration", &self.session_duration) - .field( - "shuffle-at-event-start", - &self.shuffle_at_event_start, - ) + .field("shuffle-at-event-start", &self.shuffle_at_event_start) .field("suspended", &self.suspended) .field("total-active-users", &self.total_active_users) .field("waiting-room-id", &self.waiting_room_id) @@ -16756,7 +16025,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -16908,32 +16178,21 @@ pub mod exports { zone_id: zone_id35, } = result33; *ptr34.add(0).cast::() = (created_on35).take_handle() as i32; - *ptr34.add(4).cast::() = (custom_page_html35).take_handle() - as i32; + *ptr34.add(4).cast::() = (custom_page_html35).take_handle() as i32; *ptr34.add(8).cast::() = (description35).take_handle() as i32; - *ptr34.add(12).cast::() = (disable_session_renewal35) - .take_handle() as i32; - *ptr34.add(16).cast::() = (event_end_time35).take_handle() - as i32; - *ptr34.add(20).cast::() = (event_start_time35).take_handle() - as i32; + *ptr34.add(12).cast::() = (disable_session_renewal35).take_handle() as i32; + *ptr34.add(16).cast::() = (event_end_time35).take_handle() as i32; + *ptr34.add(20).cast::() = (event_start_time35).take_handle() as i32; *ptr34.add(24).cast::() = (modified_on35).take_handle() as i32; *ptr34.add(28).cast::() = (name35).take_handle() as i32; - *ptr34.add(32).cast::() = (new_users_per_minute35).take_handle() - as i32; - *ptr34.add(36).cast::() = (prequeue_start_time35).take_handle() - as i32; - *ptr34.add(40).cast::() = (queueing_method35).take_handle() - as i32; - *ptr34.add(44).cast::() = (session_duration35).take_handle() - as i32; - *ptr34.add(48).cast::() = (shuffle_at_event_start35) - .take_handle() as i32; + *ptr34.add(32).cast::() = (new_users_per_minute35).take_handle() as i32; + *ptr34.add(36).cast::() = (prequeue_start_time35).take_handle() as i32; + *ptr34.add(40).cast::() = (queueing_method35).take_handle() as i32; + *ptr34.add(44).cast::() = (session_duration35).take_handle() as i32; + *ptr34.add(48).cast::() = (shuffle_at_event_start35).take_handle() as i32; *ptr34.add(52).cast::() = (suspended35).take_handle() as i32; - *ptr34.add(56).cast::() = (total_active_users35).take_handle() - as i32; - *ptr34.add(60).cast::() = (waiting_room_id35).take_handle() - as i32; + *ptr34.add(56).cast::() = (total_active_users35).take_handle() as i32; + *ptr34.add(60).cast::() = (waiting_room_id35).take_handle() as i32; *ptr34.add(64).cast::() = (zone_id35).take_handle() as i32; ptr34 } @@ -16953,27 +16212,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_waiting_room_event_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 68]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 68], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 68]); } #[allow(dead_code, clippy::all)] pub mod waiting_room_rules { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub rules: &'a Output, pub waiting_room_id: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("rules", &self.rules) .field("waiting-room-id", &self.waiting_room_id) @@ -16987,10 +16243,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("rules", &self.rules) .field("waiting-room-id", &self.waiting_room_id) @@ -17007,7 +16260,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -17065,26 +16319,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_waiting_room_rules_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod waiting_room_settings { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub search_engine_crawler_bypass: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field( "search-engine-crawler-bypass", @@ -17099,10 +16350,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field( "search-engine-crawler-bypass", @@ -17120,7 +16368,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -17147,8 +16396,8 @@ pub mod exports { search_engine_crawler_bypass: search_engine_crawler_bypass5, zone_id: zone_id5, } = result3; - *ptr4.add(0).cast::() = (search_engine_crawler_bypass5) - .take_handle() as i32; + *ptr4.add(0).cast::() = + (search_engine_crawler_bypass5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 } @@ -17169,17 +16418,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_waiting_room_settings_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod web3_hostname { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub description: &'a Output, pub dnslink: &'a Output, @@ -17188,10 +16437,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("description", &self.description) .field("dnslink", &self.dnslink) @@ -17212,10 +16458,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("created-on", &self.created_on) .field("description", &self.description) @@ -17239,7 +16482,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -17321,17 +16565,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_web3_hostname_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 32], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); } #[allow(dead_code, clippy::all)] pub mod web_analytics_rule { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub host: &'a Output, @@ -17341,10 +16585,7 @@ pub mod exports { pub ruleset_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("host", &self.host) @@ -17364,10 +16605,7 @@ pub mod exports { pub ruleset_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("host", &self.host) @@ -17390,7 +16628,8 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -17476,17 +16715,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_web_analytics_rule_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod web_analytics_site { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub auto_install: &'a Output, @@ -17494,10 +16733,7 @@ pub mod exports { pub zone_tag: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("auto-install", &self.auto_install) @@ -17517,10 +16753,7 @@ pub mod exports { pub zone_tag: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("auto-install", &self.auto_install) @@ -17543,7 +16776,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -17618,27 +16852,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_web_analytics_site_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 32]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 32], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 32]); } #[allow(dead_code, clippy::all)] pub mod worker_cron_trigger { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub schedules: &'a Output, pub script_name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("schedules", &self.schedules) @@ -17652,10 +16883,7 @@ pub mod exports { pub script_name: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("schedules", &self.schedules) @@ -17672,7 +16900,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -17730,17 +16959,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_worker_cron_trigger_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod worker_domain { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub environment: &'a Output, @@ -17749,10 +16978,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("environment", &self.environment) @@ -17770,10 +16996,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("environment", &self.environment) @@ -17794,7 +17017,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -17870,27 +17094,24 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_worker_domain_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod worker_route { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub pattern: &'a Output, pub script_name: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("pattern", &self.pattern) .field("script-name", &self.script_name) @@ -17904,10 +17125,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("pattern", &self.pattern) .field("script-name", &self.script_name) @@ -17924,7 +17142,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -17982,17 +17201,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_worker_route_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod worker_script { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub analytics_engine_bindings: &'a Output, @@ -18015,16 +17234,10 @@ pub mod exports { pub webassembly_bindings: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) - .field( - "analytics-engine-bindings", - &self.analytics_engine_bindings, - ) + .field("analytics-engine-bindings", &self.analytics_engine_bindings) .field("compatibility-date", &self.compatibility_date) .field("compatibility-flags", &self.compatibility_flags) .field("content", &self.content) @@ -18067,16 +17280,10 @@ pub mod exports { pub webassembly_bindings: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) - .field( - "analytics-engine-bindings", - &self.analytics_engine_bindings, - ) + .field("analytics-engine-bindings", &self.analytics_engine_bindings) .field("compatibility-date", &self.compatibility_date) .field("compatibility-flags", &self.compatibility_flags) .field("content", &self.content) @@ -18100,7 +17307,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -18286,36 +17494,25 @@ pub mod exports { webassembly_bindings: webassembly_bindings43, } = result41; *ptr42.add(0).cast::() = (account_id43).take_handle() as i32; - *ptr42.add(4).cast::() = (analytics_engine_bindings43) - .take_handle() as i32; - *ptr42.add(8).cast::() = (compatibility_date43).take_handle() - as i32; - *ptr42.add(12).cast::() = (compatibility_flags43).take_handle() - as i32; + *ptr42.add(4).cast::() = + (analytics_engine_bindings43).take_handle() as i32; + *ptr42.add(8).cast::() = (compatibility_date43).take_handle() as i32; + *ptr42.add(12).cast::() = (compatibility_flags43).take_handle() as i32; *ptr42.add(16).cast::() = (content43).take_handle() as i32; - *ptr42.add(20).cast::() = (d1_database_bindings43).take_handle() - as i32; - *ptr42.add(24).cast::() = (dispatch_namespace43).take_handle() - as i32; - *ptr42.add(28).cast::() = (kv_namespace_bindings43) - .take_handle() as i32; + *ptr42.add(20).cast::() = (d1_database_bindings43).take_handle() as i32; + *ptr42.add(24).cast::() = (dispatch_namespace43).take_handle() as i32; + *ptr42.add(28).cast::() = (kv_namespace_bindings43).take_handle() as i32; *ptr42.add(32).cast::() = (logpush43).take_handle() as i32; *ptr42.add(36).cast::() = (module43).take_handle() as i32; *ptr42.add(40).cast::() = (name43).take_handle() as i32; *ptr42.add(44).cast::() = (placements43).take_handle() as i32; - *ptr42.add(48).cast::() = (plain_text_bindings43).take_handle() - as i32; - *ptr42.add(52).cast::() = (queue_bindings43).take_handle() - as i32; - *ptr42.add(56).cast::() = (r2_bucket_bindings43).take_handle() - as i32; - *ptr42.add(60).cast::() = (secret_text_bindings43).take_handle() - as i32; - *ptr42.add(64).cast::() = (service_bindings43).take_handle() - as i32; + *ptr42.add(48).cast::() = (plain_text_bindings43).take_handle() as i32; + *ptr42.add(52).cast::() = (queue_bindings43).take_handle() as i32; + *ptr42.add(56).cast::() = (r2_bucket_bindings43).take_handle() as i32; + *ptr42.add(60).cast::() = (secret_text_bindings43).take_handle() as i32; + *ptr42.add(64).cast::() = (service_bindings43).take_handle() as i32; *ptr42.add(68).cast::() = (tags43).take_handle() as i32; - *ptr42.add(72).cast::() = (webassembly_bindings43).take_handle() - as i32; + *ptr42.add(72).cast::() = (webassembly_bindings43).take_handle() as i32; ptr42 } pub trait Guest { @@ -18334,17 +17531,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_worker_script_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 76]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 76], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 76]); } #[allow(dead_code, clippy::all)] pub mod worker_secret { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub name: &'a Output, @@ -18352,10 +17549,7 @@ pub mod exports { pub secret_text: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("name", &self.name) @@ -18371,10 +17565,7 @@ pub mod exports { pub secret_text: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("name", &self.name) @@ -18393,7 +17584,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -18460,26 +17652,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_worker_secret_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod workers_for_platforms_namespace { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("name", &self.name) @@ -18491,10 +17680,7 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("name", &self.name) @@ -18509,7 +17695,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -18532,7 +17719,10 @@ pub mod exports { }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { account_id: account_id5, name: name5 } = result3; + let Res { + account_id: account_id5, + name: name5, + } = result3; *ptr4.add(0).cast::() = (account_id5).take_handle() as i32; *ptr4.add(4).cast::() = (name5).take_handle() as i32; ptr4 @@ -18554,17 +17744,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_workers_for_platforms_namespace_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod workers_kv { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub key: &'a Output, @@ -18572,10 +17762,7 @@ pub mod exports { pub value: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("key", &self.key) @@ -18591,10 +17778,7 @@ pub mod exports { pub value: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("key", &self.key) @@ -18613,7 +17797,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -18680,26 +17865,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_workers_kv_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod workers_kv_namespace { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub title: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("title", &self.title) @@ -18711,10 +17893,7 @@ pub mod exports { pub title: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("title", &self.title) @@ -18729,7 +17908,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -18752,7 +17932,10 @@ pub mod exports { }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { account_id: account_id5, title: title5 } = result3; + let Res { + account_id: account_id5, + title: title5, + } = result3; *ptr4.add(0).cast::() = (account_id5).take_handle() as i32; *ptr4.add(4).cast::() = (title5).take_handle() as i32; ptr4 @@ -18774,17 +17957,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_workers_kv_namespace_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod zone { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub account_id: &'a Output, pub jump_start: &'a Output, @@ -18794,10 +17977,7 @@ pub mod exports { pub zone: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("account-id", &self.account_id) .field("jump-start", &self.jump_start) @@ -18822,10 +18002,7 @@ pub mod exports { pub zone: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("account-id", &self.account_id) .field("jump-start", &self.jump_start) @@ -18853,7 +18030,8 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -18925,10 +18103,8 @@ pub mod exports { *ptr8.add(20).cast::() = (plan9).take_handle() as i32; *ptr8.add(24).cast::() = (status9).take_handle() as i32; *ptr8.add(28).cast::() = (type_9).take_handle() as i32; - *ptr8.add(32).cast::() = (vanity_name_servers9).take_handle() - as i32; - *ptr8.add(36).cast::() = (verification_key9).take_handle() - as i32; + *ptr8.add(32).cast::() = (vanity_name_servers9).take_handle() as i32; + *ptr8.add(36).cast::() = (verification_key9).take_handle() as i32; *ptr8.add(40).cast::() = (zone9).take_handle() as i32; ptr8 } @@ -18951,26 +18127,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_zone_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 44]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 44], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 44]); } #[allow(dead_code, clippy::all)] pub mod zone_cache_reserve { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub enabled: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -18982,10 +18155,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("enabled", &self.enabled) .field("zone-id", &self.zone_id) @@ -19000,7 +18170,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -19023,7 +18194,10 @@ pub mod exports { }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { enabled: enabled5, zone_id: zone_id5 } = result3; + let Res { + enabled: enabled5, + zone_id: zone_id5, + } = result3; *ptr4.add(0).cast::() = (enabled5).take_handle() as i32; *ptr4.add(4).cast::() = (zone_id5).take_handle() as i32; ptr4 @@ -19045,17 +18219,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_zone_cache_reserve_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod zone_cache_variants { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub avifs: &'a Output, pub bmps: &'a Output, @@ -19071,10 +18245,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("avifs", &self.avifs) .field("bmps", &self.bmps) @@ -19106,10 +18277,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("avifs", &self.avifs) .field("bmps", &self.bmps) @@ -19144,7 +18312,8 @@ pub mod exports { arg12: i32, arg13: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -19285,26 +18454,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_zone_cache_variants_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 48]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 48], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 48]); } #[allow(dead_code, clippy::all)] pub mod zone_dnssec { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub modified_on: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("modified-on", &self.modified_on) .field("zone-id", &self.zone_id) @@ -19326,10 +18492,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("algorithm", &self.algorithm) .field("digest", &self.digest) @@ -19354,7 +18517,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -19393,8 +18557,7 @@ pub mod exports { } = result3; *ptr4.add(0).cast::() = (algorithm5).take_handle() as i32; *ptr4.add(4).cast::() = (digest5).take_handle() as i32; - *ptr4.add(8).cast::() = (digest_algorithm5).take_handle() - as i32; + *ptr4.add(8).cast::() = (digest_algorithm5).take_handle() as i32; *ptr4.add(12).cast::() = (digest_type5).take_handle() as i32; *ptr4.add(16).cast::() = (ds5).take_handle() as i32; *ptr4.add(20).cast::() = (flags5).take_handle() as i32; @@ -19423,17 +18586,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_zone_dnssec_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 48]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 48], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 48]); } #[allow(dead_code, clippy::all)] pub mod zone_hold { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub hold: &'a Output, pub hold_after: &'a Output, @@ -19441,10 +18604,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("hold", &self.hold) .field("hold-after", &self.hold_after) @@ -19460,10 +18620,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("hold", &self.hold) .field("hold-after", &self.hold_after) @@ -19482,7 +18639,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -19527,8 +18685,7 @@ pub mod exports { } = result5; *ptr6.add(0).cast::() = (hold7).take_handle() as i32; *ptr6.add(4).cast::() = (hold_after7).take_handle() as i32; - *ptr6.add(8).cast::() = (include_subdomains7).take_handle() - as i32; + *ptr6.add(8).cast::() = (include_subdomains7).take_handle() as i32; *ptr6.add(12).cast::() = (zone_id7).take_handle() as i32; ptr6 } @@ -19550,17 +18707,17 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_zone_hold_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod zone_lockdown { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub configurations: &'a Output, pub description: &'a Output, @@ -19570,10 +18727,7 @@ pub mod exports { pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("configurations", &self.configurations) .field("description", &self.description) @@ -19593,10 +18747,7 @@ pub mod exports { pub zone_id: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("configurations", &self.configurations) .field("description", &self.description) @@ -19619,7 +18770,8 @@ pub mod exports { arg6: i32, arg7: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -19705,26 +18857,23 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_zone_lockdown_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 24]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 24], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 24]); } #[allow(dead_code, clippy::all)] pub mod zone_settings_override { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub settings: &'a Output, pub zone_id: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("settings", &self.settings) .field("zone-id", &self.zone_id) @@ -19741,16 +18890,10 @@ pub mod exports { pub zone_type: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("initial-settings", &self.initial_settings) - .field( - "initial-settings-read-at", - &self.initial_settings_read_at, - ) + .field("initial-settings-read-at", &self.initial_settings_read_at) .field("readonly-settings", &self.readonly_settings) .field("settings", &self.settings) .field("zone-id", &self.zone_id) @@ -19767,7 +18910,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -19799,12 +18943,9 @@ pub mod exports { zone_status: zone_status5, zone_type: zone_type5, } = result3; - *ptr4.add(0).cast::() = (initial_settings5).take_handle() - as i32; - *ptr4.add(4).cast::() = (initial_settings_read_at5) - .take_handle() as i32; - *ptr4.add(8).cast::() = (readonly_settings5).take_handle() - as i32; + *ptr4.add(0).cast::() = (initial_settings5).take_handle() as i32; + *ptr4.add(4).cast::() = (initial_settings_read_at5).take_handle() as i32; + *ptr4.add(8).cast::() = (readonly_settings5).take_handle() as i32; *ptr4.add(12).cast::() = (settings5).take_handle() as i32; *ptr4.add(16).cast::() = (zone_id5).take_handle() as i32; *ptr4.add(20).cast::() = (zone_status5).take_handle() as i32; @@ -19828,9 +18969,7 @@ pub mod exports { pub(crate) use __export_pulumi_cloudflare_zone_settings_override_5_24_1_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 28], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); } } } @@ -19897,7 +19036,9 @@ mod _rt { } impl fmt::Debug for Resource { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_struct("Resource").field("handle", &self.handle).finish() + f.debug_struct("Resource") + .field("handle", &self.handle) + .finish() } } impl Drop for Resource { diff --git a/providers/pulumi_wasm_provider_docker/src/bindings.rs b/providers/pulumi_wasm_provider_docker/src/bindings.rs index 20f2f5dc..b8fd596f 100644 --- a/providers/pulumi_wasm_provider_docker/src/bindings.rs +++ b/providers/pulumi_wasm_provider_docker/src/bindings.rs @@ -6,7 +6,8 @@ pub mod component { pub mod output_interface { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; #[derive(Debug)] #[repr(transparent)] @@ -90,11 +91,7 @@ pub mod component { fn wit_import(_: i32, _: *mut u8, _: usize) -> i32 { unreachable!() } - let ret = wit_import( - (self).handle() as i32, - ptr0.cast_mut(), - len0, - ); + let ret = wit_import((self).handle() as i32, ptr0.cast_mut(), len0); Output::from_handle(ret as u32) } } @@ -104,10 +101,7 @@ pub mod component { unsafe { let vec0 = outputs; let len0 = vec0.len(); - let layout0 = _rt::alloc::Layout::from_size_align_unchecked( - vec0.len() * 4, - 4, - ); + let layout0 = _rt::alloc::Layout::from_size_align_unchecked(vec0.len() * 4, 4); let result0 = if layout0.size() != 0 { let ptr = _rt::alloc::alloc(layout0).cast::(); if ptr.is_null() { @@ -115,7 +109,9 @@ pub mod component { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec0.into_iter().enumerate() { let base = result0.add(i * 4); @@ -124,9 +120,7 @@ pub mod component { } } #[cfg(target_arch = "wasm32")] - #[link( - wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" - )] + #[link(wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV")] extern "C" { #[link_name = "combine"] fn wit_import(_: *mut u8, _: usize) -> i32; @@ -147,7 +141,8 @@ pub mod component { pub mod register_interface { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; pub type Output = super::super::super::component::pulumi_wasm::output_interface::Output; pub struct ObjectField<'a> { @@ -155,10 +150,7 @@ pub mod component { pub value: &'a Output, } impl<'a> ::core::fmt::Debug for ObjectField<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("ObjectField") .field("name", &self.name) .field("value", &self.value) @@ -170,11 +162,10 @@ pub mod component { pub name: _rt::String, } impl ::core::fmt::Debug for ResultField { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { - f.debug_struct("ResultField").field("name", &self.name).finish() + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + f.debug_struct("ResultField") + .field("name", &self.name) + .finish() } } pub struct RegisterResourceResultField { @@ -182,10 +173,7 @@ pub mod component { pub output: Output, } impl ::core::fmt::Debug for RegisterResourceResultField { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResultField") .field("name", &self.name) .field("output", &self.output) @@ -199,10 +187,7 @@ pub mod component { pub results: _rt::Vec, } impl<'a> ::core::fmt::Debug for RegisterResourceRequest<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceRequest") .field("type", &self.type_) .field("name", &self.name) @@ -215,19 +200,14 @@ pub mod component { pub fields: _rt::Vec, } impl ::core::fmt::Debug for RegisterResourceResult { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResult") .field("fields", &self.fields) .finish() } } #[allow(unused_unsafe, clippy::all)] - pub fn register( - request: &RegisterResourceRequest<'_>, - ) -> RegisterResourceResult { + pub fn register(request: &RegisterResourceRequest<'_>) -> RegisterResourceResult { unsafe { #[repr(align(4))] struct RetArea([::core::mem::MaybeUninit; 8]); @@ -246,10 +226,7 @@ pub mod component { let len2 = vec2.len(); let vec5 = object0; let len5 = vec5.len(); - let layout5 = _rt::alloc::Layout::from_size_align_unchecked( - vec5.len() * 12, - 4, - ); + let layout5 = _rt::alloc::Layout::from_size_align_unchecked(vec5.len() * 12, 4); let result5 = if layout5.size() != 0 { let ptr = _rt::alloc::alloc(layout5).cast::(); if ptr.is_null() { @@ -257,12 +234,17 @@ pub mod component { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec5.into_iter().enumerate() { let base = result5.add(i * 12); { - let ObjectField { name: name3, value: value3 } = e; + let ObjectField { + name: name3, + value: value3, + } = e; let vec4 = name3; let ptr4 = vec4.as_ptr().cast::(); let len4 = vec4.len(); @@ -273,10 +255,7 @@ pub mod component { } let vec8 = results0; let len8 = vec8.len(); - let layout8 = _rt::alloc::Layout::from_size_align_unchecked( - vec8.len() * 8, - 4, - ); + let layout8 = _rt::alloc::Layout::from_size_align_unchecked(vec8.len() * 8, 4); let result8 = if layout8.size() != 0 { let ptr = _rt::alloc::alloc(layout8).cast::(); if ptr.is_null() { @@ -284,7 +263,9 @@ pub mod component { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec8.into_iter().enumerate() { let base = result8.add(i * 8); @@ -352,11 +333,7 @@ pub mod component { let l12 = *base.add(0).cast::<*mut u8>(); let l13 = *base.add(4).cast::(); let len14 = l13; - let bytes14 = _rt::Vec::from_raw_parts( - l12.cast(), - len14, - len14, - ); + let bytes14 = _rt::Vec::from_raw_parts(l12.cast(), len14, len14); let l15 = *base.add(8).cast::(); RegisterResourceResultField { name: _rt::string_lift(bytes14), @@ -374,9 +351,7 @@ pub mod component { if layout8.size() != 0 { _rt::alloc::dealloc(result8.cast(), layout8); } - RegisterResourceResult { - fields: result16, - } + RegisterResourceResult { fields: result16 } } } } @@ -392,9 +367,11 @@ pub mod exports { pub mod container { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub attach: &'a Output, pub capabilities: &'a Output, @@ -460,10 +437,7 @@ pub mod exports { pub working_dir: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("attach", &self.attach) .field("capabilities", &self.capabilities) @@ -602,10 +576,7 @@ pub mod exports { pub working_dir: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("attach", &self.attach) .field("bridge", &self.bridge) @@ -682,7 +653,8 @@ pub mod exports { #[doc(hidden)] #[allow(non_snake_case)] pub unsafe fn _export_invoke_cabi(arg0: *mut u8) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle4; let handle6; let handle8; @@ -1197,7 +1169,8 @@ pub mod exports { cgroupns_mode: cgroupns_mode129, command: command129, container_logs: container_logs129, - container_read_refresh_timeout_milliseconds: container_read_refresh_timeout_milliseconds129, + container_read_refresh_timeout_milliseconds: + container_read_refresh_timeout_milliseconds129, cpu_set: cpu_set129, cpu_shares: cpu_shares129, destroy_grace_seconds: destroy_grace_seconds129, @@ -1260,95 +1233,71 @@ pub mod exports { } = result127; *ptr128.add(0).cast::() = (attach129).take_handle() as i32; *ptr128.add(4).cast::() = (bridge129).take_handle() as i32; - *ptr128.add(8).cast::() = (capabilities129).take_handle() - as i32; - *ptr128.add(12).cast::() = (cgroupns_mode129).take_handle() - as i32; + *ptr128.add(8).cast::() = (capabilities129).take_handle() as i32; + *ptr128.add(12).cast::() = (cgroupns_mode129).take_handle() as i32; *ptr128.add(16).cast::() = (command129).take_handle() as i32; - *ptr128.add(20).cast::() = (container_logs129).take_handle() - as i32; - *ptr128.add(24).cast::() = (container_read_refresh_timeout_milliseconds129) - .take_handle() as i32; + *ptr128.add(20).cast::() = (container_logs129).take_handle() as i32; + *ptr128.add(24).cast::() = + (container_read_refresh_timeout_milliseconds129).take_handle() as i32; *ptr128.add(28).cast::() = (cpu_set129).take_handle() as i32; *ptr128.add(32).cast::() = (cpu_shares129).take_handle() as i32; - *ptr128.add(36).cast::() = (destroy_grace_seconds129) - .take_handle() as i32; + *ptr128.add(36).cast::() = (destroy_grace_seconds129).take_handle() as i32; *ptr128.add(40).cast::() = (devices129).take_handle() as i32; *ptr128.add(44).cast::() = (dns129).take_handle() as i32; *ptr128.add(48).cast::() = (dns_opts129).take_handle() as i32; - *ptr128.add(52).cast::() = (dns_searches129).take_handle() - as i32; + *ptr128.add(52).cast::() = (dns_searches129).take_handle() as i32; *ptr128.add(56).cast::() = (domainname129).take_handle() as i32; - *ptr128.add(60).cast::() = (entrypoints129).take_handle() - as i32; + *ptr128.add(60).cast::() = (entrypoints129).take_handle() as i32; *ptr128.add(64).cast::() = (envs129).take_handle() as i32; *ptr128.add(68).cast::() = (exit_code129).take_handle() as i32; *ptr128.add(72).cast::() = (gpus129).take_handle() as i32; *ptr128.add(76).cast::() = (group_adds129).take_handle() as i32; - *ptr128.add(80).cast::() = (healthcheck129).take_handle() - as i32; + *ptr128.add(80).cast::() = (healthcheck129).take_handle() as i32; *ptr128.add(84).cast::() = (hostname129).take_handle() as i32; *ptr128.add(88).cast::() = (hosts129).take_handle() as i32; *ptr128.add(92).cast::() = (image129).take_handle() as i32; *ptr128.add(96).cast::() = (init129).take_handle() as i32; *ptr128.add(100).cast::() = (ipc_mode129).take_handle() as i32; *ptr128.add(104).cast::() = (labels129).take_handle() as i32; - *ptr128.add(108).cast::() = (log_driver129).take_handle() - as i32; + *ptr128.add(108).cast::() = (log_driver129).take_handle() as i32; *ptr128.add(112).cast::() = (log_opts129).take_handle() as i32; *ptr128.add(116).cast::() = (logs129).take_handle() as i32; - *ptr128.add(120).cast::() = (max_retry_count129).take_handle() - as i32; + *ptr128.add(120).cast::() = (max_retry_count129).take_handle() as i32; *ptr128.add(124).cast::() = (memory129).take_handle() as i32; - *ptr128.add(128).cast::() = (memory_swap129).take_handle() - as i32; + *ptr128.add(128).cast::() = (memory_swap129).take_handle() as i32; *ptr128.add(132).cast::() = (mounts129).take_handle() as i32; *ptr128.add(136).cast::() = (must_run129).take_handle() as i32; *ptr128.add(140).cast::() = (name129).take_handle() as i32; - *ptr128.add(144).cast::() = (network_datas129).take_handle() - as i32; - *ptr128.add(148).cast::() = (network_mode129).take_handle() - as i32; - *ptr128.add(152).cast::() = (networks_advanced129).take_handle() - as i32; + *ptr128.add(144).cast::() = (network_datas129).take_handle() as i32; + *ptr128.add(148).cast::() = (network_mode129).take_handle() as i32; + *ptr128.add(152).cast::() = (networks_advanced129).take_handle() as i32; *ptr128.add(156).cast::() = (pid_mode129).take_handle() as i32; *ptr128.add(160).cast::() = (ports129).take_handle() as i32; - *ptr128.add(164).cast::() = (privileged129).take_handle() - as i32; - *ptr128.add(168).cast::() = (publish_all_ports129).take_handle() - as i32; + *ptr128.add(164).cast::() = (privileged129).take_handle() as i32; + *ptr128.add(168).cast::() = (publish_all_ports129).take_handle() as i32; *ptr128.add(172).cast::() = (read_only129).take_handle() as i32; - *ptr128.add(176).cast::() = (remove_volumes129).take_handle() - as i32; + *ptr128.add(176).cast::() = (remove_volumes129).take_handle() as i32; *ptr128.add(180).cast::() = (restart129).take_handle() as i32; *ptr128.add(184).cast::() = (rm129).take_handle() as i32; *ptr128.add(188).cast::() = (runtime129).take_handle() as i32; - *ptr128.add(192).cast::() = (security_opts129).take_handle() - as i32; + *ptr128.add(192).cast::() = (security_opts129).take_handle() as i32; *ptr128.add(196).cast::() = (shm_size129).take_handle() as i32; *ptr128.add(200).cast::() = (start129).take_handle() as i32; - *ptr128.add(204).cast::() = (stdin_open129).take_handle() - as i32; - *ptr128.add(208).cast::() = (stop_signal129).take_handle() - as i32; - *ptr128.add(212).cast::() = (stop_timeout129).take_handle() - as i32; - *ptr128.add(216).cast::() = (storage_opts129).take_handle() - as i32; + *ptr128.add(204).cast::() = (stdin_open129).take_handle() as i32; + *ptr128.add(208).cast::() = (stop_signal129).take_handle() as i32; + *ptr128.add(212).cast::() = (stop_timeout129).take_handle() as i32; + *ptr128.add(216).cast::() = (storage_opts129).take_handle() as i32; *ptr128.add(220).cast::() = (sysctls129).take_handle() as i32; *ptr128.add(224).cast::() = (tmpfs129).take_handle() as i32; *ptr128.add(228).cast::() = (tty129).take_handle() as i32; *ptr128.add(232).cast::() = (ulimits129).take_handle() as i32; *ptr128.add(236).cast::() = (uploads129).take_handle() as i32; *ptr128.add(240).cast::() = (user129).take_handle() as i32; - *ptr128.add(244).cast::() = (userns_mode129).take_handle() - as i32; + *ptr128.add(244).cast::() = (userns_mode129).take_handle() as i32; *ptr128.add(248).cast::() = (volumes129).take_handle() as i32; *ptr128.add(252).cast::() = (wait129).take_handle() as i32; - *ptr128.add(256).cast::() = (wait_timeout129).take_handle() - as i32; - *ptr128.add(260).cast::() = (working_dir129).take_handle() - as i32; + *ptr128.add(256).cast::() = (wait_timeout129).take_handle() as i32; + *ptr128.add(260).cast::() = (working_dir129).take_handle() as i32; ptr128 } pub trait Guest { @@ -1367,17 +1316,18 @@ pub mod exports { pub(crate) use __export_pulumi_docker_container_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 264]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 264], - ); + static mut _RET_AREA: _RetArea = + _RetArea([::core::mem::MaybeUninit::uninit(); 264]); } #[allow(dead_code, clippy::all)] pub mod image { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub build: &'a Output, pub build_on_preview: &'a Output, @@ -1386,10 +1336,7 @@ pub mod exports { pub skip_push: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("build", &self.build) .field("build-on-preview", &self.build_on_preview) @@ -1409,10 +1356,7 @@ pub mod exports { pub repo_digest: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("base-image-name", &self.base_image_name) .field("context", &self.context) @@ -1435,7 +1379,8 @@ pub mod exports { arg5: i32, arg6: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1493,8 +1438,7 @@ pub mod exports { *ptr7.add(8).cast::() = (dockerfile8).take_handle() as i32; *ptr7.add(12).cast::() = (image_name8).take_handle() as i32; *ptr7.add(16).cast::() = (platform8).take_handle() as i32; - *ptr7.add(20).cast::() = (registry_server8).take_handle() - as i32; + *ptr7.add(20).cast::() = (registry_server8).take_handle() as i32; *ptr7.add(24).cast::() = (repo_digest8).take_handle() as i32; ptr7 } @@ -1516,17 +1460,17 @@ pub mod exports { pub(crate) use __export_pulumi_docker_image_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 28], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); } #[allow(dead_code, clippy::all)] pub mod network { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub attachable: &'a Output, pub check_duplicate: &'a Output, @@ -1542,10 +1486,7 @@ pub mod exports { pub options: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("attachable", &self.attachable) .field("check-duplicate", &self.check_duplicate) @@ -1578,10 +1519,7 @@ pub mod exports { pub scope: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("attachable", &self.attachable) .field("check-duplicate", &self.check_duplicate) @@ -1617,7 +1555,8 @@ pub mod exports { arg12: i32, arg13: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1726,8 +1665,7 @@ pub mod exports { scope: scope15, } = result13; *ptr14.add(0).cast::() = (attachable15).take_handle() as i32; - *ptr14.add(4).cast::() = (check_duplicate15).take_handle() - as i32; + *ptr14.add(4).cast::() = (check_duplicate15).take_handle() as i32; *ptr14.add(8).cast::() = (driver15).take_handle() as i32; *ptr14.add(12).cast::() = (ingress15).take_handle() as i32; *ptr14.add(16).cast::() = (internal15).take_handle() as i32; @@ -1761,17 +1699,17 @@ pub mod exports { pub(crate) use __export_pulumi_docker_network_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 52]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 52], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 52]); } #[allow(dead_code, clippy::all)] pub mod plugin { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub alias: &'a Output, pub enable_timeout: &'a Output, @@ -1784,10 +1722,7 @@ pub mod exports { pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("alias", &self.alias) .field("enable-timeout", &self.enable_timeout) @@ -1814,10 +1749,7 @@ pub mod exports { pub plugin_reference: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("alias", &self.alias) .field("enable-timeout", &self.enable_timeout) @@ -1847,7 +1779,8 @@ pub mod exports { arg9: i32, arg10: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1932,21 +1865,15 @@ pub mod exports { plugin_reference: plugin_reference12, } = result10; *ptr11.add(0).cast::() = (alias12).take_handle() as i32; - *ptr11.add(4).cast::() = (enable_timeout12).take_handle() - as i32; + *ptr11.add(4).cast::() = (enable_timeout12).take_handle() as i32; *ptr11.add(8).cast::() = (enabled12).take_handle() as i32; *ptr11.add(12).cast::() = (envs12).take_handle() as i32; - *ptr11.add(16).cast::() = (force_destroy12).take_handle() - as i32; - *ptr11.add(20).cast::() = (force_disable12).take_handle() - as i32; - *ptr11.add(24).cast::() = (grant_all_permissions12) - .take_handle() as i32; - *ptr11.add(28).cast::() = (grant_permissions12).take_handle() - as i32; + *ptr11.add(16).cast::() = (force_destroy12).take_handle() as i32; + *ptr11.add(20).cast::() = (force_disable12).take_handle() as i32; + *ptr11.add(24).cast::() = (grant_all_permissions12).take_handle() as i32; + *ptr11.add(28).cast::() = (grant_permissions12).take_handle() as i32; *ptr11.add(32).cast::() = (name12).take_handle() as i32; - *ptr11.add(36).cast::() = (plugin_reference12).take_handle() - as i32; + *ptr11.add(36).cast::() = (plugin_reference12).take_handle() as i32; ptr11 } pub trait Guest { @@ -1968,17 +1895,17 @@ pub mod exports { pub(crate) use __export_pulumi_docker_plugin_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 40]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 40], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 40]); } #[allow(dead_code, clippy::all)] pub mod registry_image { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub insecure_skip_verify: &'a Output, pub keep_remotely: &'a Output, @@ -1986,10 +1913,7 @@ pub mod exports { pub triggers: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("insecure-skip-verify", &self.insecure_skip_verify) .field("keep-remotely", &self.keep_remotely) @@ -2006,10 +1930,7 @@ pub mod exports { pub triggers: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("insecure-skip-verify", &self.insecure_skip_verify) .field("keep-remotely", &self.keep_remotely) @@ -2029,7 +1950,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2073,8 +1995,7 @@ pub mod exports { sha256_digest: sha256_digest7, triggers: triggers7, } = result5; - *ptr6.add(0).cast::() = (insecure_skip_verify7).take_handle() - as i32; + *ptr6.add(0).cast::() = (insecure_skip_verify7).take_handle() as i32; *ptr6.add(4).cast::() = (keep_remotely7).take_handle() as i32; *ptr6.add(8).cast::() = (name7).take_handle() as i32; *ptr6.add(12).cast::() = (sha256_digest7).take_handle() as i32; @@ -2099,17 +2020,17 @@ pub mod exports { pub(crate) use __export_pulumi_docker_registry_image_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod remote_image { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub build: &'a Output, pub force_remove: &'a Output, @@ -2120,10 +2041,7 @@ pub mod exports { pub triggers: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("build", &self.build) .field("force-remove", &self.force_remove) @@ -2147,10 +2065,7 @@ pub mod exports { pub triggers: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("build", &self.build) .field("force-remove", &self.force_remove) @@ -2177,7 +2092,8 @@ pub mod exports { arg7: i32, arg8: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2276,27 +2192,24 @@ pub mod exports { pub(crate) use __export_pulumi_docker_remote_image_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 36], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); } #[allow(dead_code, clippy::all)] pub mod secret { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub data: &'a Output, pub labels: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("data", &self.data) .field("labels", &self.labels) @@ -2310,10 +2223,7 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("data", &self.data) .field("labels", &self.labels) @@ -2330,7 +2240,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2360,7 +2271,11 @@ pub mod exports { }, ); let ptr5 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { data: data6, labels: labels6, name: name6 } = result4; + let Res { + data: data6, + labels: labels6, + name: name6, + } = result4; *ptr5.add(0).cast::() = (data6).take_handle() as i32; *ptr5.add(4).cast::() = (labels6).take_handle() as i32; *ptr5.add(8).cast::() = (name6).take_handle() as i32; @@ -2384,17 +2299,17 @@ pub mod exports { pub(crate) use __export_pulumi_docker_secret_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod service { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub auth: &'a Output, pub converge_config: &'a Output, @@ -2407,10 +2322,7 @@ pub mod exports { pub update_config: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("auth", &self.auth) .field("converge-config", &self.converge_config) @@ -2436,10 +2348,7 @@ pub mod exports { pub update_config: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("auth", &self.auth) .field("converge-config", &self.converge_config) @@ -2468,7 +2377,8 @@ pub mod exports { arg9: i32, arg10: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2552,17 +2462,14 @@ pub mod exports { update_config: update_config12, } = result10; *ptr11.add(0).cast::() = (auth12).take_handle() as i32; - *ptr11.add(4).cast::() = (converge_config12).take_handle() - as i32; + *ptr11.add(4).cast::() = (converge_config12).take_handle() as i32; *ptr11.add(8).cast::() = (endpoint_spec12).take_handle() as i32; *ptr11.add(12).cast::() = (labels12).take_handle() as i32; *ptr11.add(16).cast::() = (mode12).take_handle() as i32; *ptr11.add(20).cast::() = (name12).take_handle() as i32; - *ptr11.add(24).cast::() = (rollback_config12).take_handle() - as i32; + *ptr11.add(24).cast::() = (rollback_config12).take_handle() as i32; *ptr11.add(28).cast::() = (task_spec12).take_handle() as i32; - *ptr11.add(32).cast::() = (update_config12).take_handle() - as i32; + *ptr11.add(32).cast::() = (update_config12).take_handle() as i32; ptr11 } pub trait Guest { @@ -2584,26 +2491,23 @@ pub mod exports { pub(crate) use __export_pulumi_docker_service_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 36]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 36], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 36]); } #[allow(dead_code, clippy::all)] pub mod service_config { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub data: &'a Output, pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("data", &self.data) .field("name", &self.name) @@ -2615,10 +2519,7 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("data", &self.data) .field("name", &self.name) @@ -2633,7 +2534,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -2656,7 +2558,10 @@ pub mod exports { }, ); let ptr4 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { data: data5, name: name5 } = result3; + let Res { + data: data5, + name: name5, + } = result3; *ptr4.add(0).cast::() = (data5).take_handle() as i32; *ptr4.add(4).cast::() = (name5).take_handle() as i32; ptr4 @@ -2678,26 +2583,23 @@ pub mod exports { pub(crate) use __export_pulumi_docker_service_config_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod tag { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub source_image: &'a Output, pub target_image: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("source-image", &self.source_image) .field("target-image", &self.target_image) @@ -2710,10 +2612,7 @@ pub mod exports { pub target_image: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("source-image", &self.source_image) .field("source-image-id", &self.source_image_id) @@ -2729,7 +2628,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -2779,17 +2679,17 @@ pub mod exports { pub(crate) use __export_pulumi_docker_tag_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 12]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 12], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 12]); } #[allow(dead_code, clippy::all)] pub mod volume { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub driver: &'a Output, pub driver_opts: &'a Output, @@ -2797,10 +2697,7 @@ pub mod exports { pub name: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("driver", &self.driver) .field("driver-opts", &self.driver_opts) @@ -2817,10 +2714,7 @@ pub mod exports { pub name: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("driver", &self.driver) .field("driver-opts", &self.driver_opts) @@ -2840,7 +2734,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -2909,9 +2804,7 @@ pub mod exports { pub(crate) use __export_pulumi_docker_volume_4_5_3_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } } } @@ -2978,7 +2871,9 @@ mod _rt { } impl fmt::Debug for Resource { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_struct("Resource").field("handle", &self.handle).finish() + f.debug_struct("Resource") + .field("handle", &self.handle) + .finish() } } impl Drop for Resource { diff --git a/providers/pulumi_wasm_provider_random/src/bindings.rs b/providers/pulumi_wasm_provider_random/src/bindings.rs index 854d7dea..f80ac491 100644 --- a/providers/pulumi_wasm_provider_random/src/bindings.rs +++ b/providers/pulumi_wasm_provider_random/src/bindings.rs @@ -6,7 +6,8 @@ pub mod component { pub mod output_interface { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; #[derive(Debug)] #[repr(transparent)] @@ -90,11 +91,7 @@ pub mod component { fn wit_import(_: i32, _: *mut u8, _: usize) -> i32 { unreachable!() } - let ret = wit_import( - (self).handle() as i32, - ptr0.cast_mut(), - len0, - ); + let ret = wit_import((self).handle() as i32, ptr0.cast_mut(), len0); Output::from_handle(ret as u32) } } @@ -104,10 +101,7 @@ pub mod component { unsafe { let vec0 = outputs; let len0 = vec0.len(); - let layout0 = _rt::alloc::Layout::from_size_align_unchecked( - vec0.len() * 4, - 4, - ); + let layout0 = _rt::alloc::Layout::from_size_align_unchecked(vec0.len() * 4, 4); let result0 = if layout0.size() != 0 { let ptr = _rt::alloc::alloc(layout0).cast::(); if ptr.is_null() { @@ -115,7 +109,9 @@ pub mod component { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec0.into_iter().enumerate() { let base = result0.add(i * 4); @@ -124,9 +120,7 @@ pub mod component { } } #[cfg(target_arch = "wasm32")] - #[link( - wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV" - )] + #[link(wasm_import_module = "component:pulumi-wasm/output-interface@0.0.0-DEV")] extern "C" { #[link_name = "combine"] fn wit_import(_: *mut u8, _: usize) -> i32; @@ -147,7 +141,8 @@ pub mod component { pub mod register_interface { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; pub type Output = super::super::super::component::pulumi_wasm::output_interface::Output; pub struct ObjectField<'a> { @@ -155,10 +150,7 @@ pub mod component { pub value: &'a Output, } impl<'a> ::core::fmt::Debug for ObjectField<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("ObjectField") .field("name", &self.name) .field("value", &self.value) @@ -170,11 +162,10 @@ pub mod component { pub name: _rt::String, } impl ::core::fmt::Debug for ResultField { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { - f.debug_struct("ResultField").field("name", &self.name).finish() + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + f.debug_struct("ResultField") + .field("name", &self.name) + .finish() } } pub struct RegisterResourceResultField { @@ -182,10 +173,7 @@ pub mod component { pub output: Output, } impl ::core::fmt::Debug for RegisterResourceResultField { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResultField") .field("name", &self.name) .field("output", &self.output) @@ -199,10 +187,7 @@ pub mod component { pub results: _rt::Vec, } impl<'a> ::core::fmt::Debug for RegisterResourceRequest<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceRequest") .field("type", &self.type_) .field("name", &self.name) @@ -215,19 +200,14 @@ pub mod component { pub fields: _rt::Vec, } impl ::core::fmt::Debug for RegisterResourceResult { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResult") .field("fields", &self.fields) .finish() } } #[allow(unused_unsafe, clippy::all)] - pub fn register( - request: &RegisterResourceRequest<'_>, - ) -> RegisterResourceResult { + pub fn register(request: &RegisterResourceRequest<'_>) -> RegisterResourceResult { unsafe { #[repr(align(4))] struct RetArea([::core::mem::MaybeUninit; 8]); @@ -246,10 +226,7 @@ pub mod component { let len2 = vec2.len(); let vec5 = object0; let len5 = vec5.len(); - let layout5 = _rt::alloc::Layout::from_size_align_unchecked( - vec5.len() * 12, - 4, - ); + let layout5 = _rt::alloc::Layout::from_size_align_unchecked(vec5.len() * 12, 4); let result5 = if layout5.size() != 0 { let ptr = _rt::alloc::alloc(layout5).cast::(); if ptr.is_null() { @@ -257,12 +234,17 @@ pub mod component { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec5.into_iter().enumerate() { let base = result5.add(i * 12); { - let ObjectField { name: name3, value: value3 } = e; + let ObjectField { + name: name3, + value: value3, + } = e; let vec4 = name3; let ptr4 = vec4.as_ptr().cast::(); let len4 = vec4.len(); @@ -273,10 +255,7 @@ pub mod component { } let vec8 = results0; let len8 = vec8.len(); - let layout8 = _rt::alloc::Layout::from_size_align_unchecked( - vec8.len() * 8, - 4, - ); + let layout8 = _rt::alloc::Layout::from_size_align_unchecked(vec8.len() * 8, 4); let result8 = if layout8.size() != 0 { let ptr = _rt::alloc::alloc(layout8).cast::(); if ptr.is_null() { @@ -284,7 +263,9 @@ pub mod component { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec8.into_iter().enumerate() { let base = result8.add(i * 8); @@ -352,11 +333,7 @@ pub mod component { let l12 = *base.add(0).cast::<*mut u8>(); let l13 = *base.add(4).cast::(); let len14 = l13; - let bytes14 = _rt::Vec::from_raw_parts( - l12.cast(), - len14, - len14, - ); + let bytes14 = _rt::Vec::from_raw_parts(l12.cast(), len14, len14); let l15 = *base.add(8).cast::(); RegisterResourceResultField { name: _rt::string_lift(bytes14), @@ -374,9 +351,7 @@ pub mod component { if layout8.size() != 0 { _rt::alloc::dealloc(result8.cast(), layout8); } - RegisterResourceResult { - fields: result16, - } + RegisterResourceResult { fields: result16 } } } } @@ -392,18 +367,17 @@ pub mod exports { pub mod random_bytes { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, pub length: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("keepers", &self.keepers) .field("length", &self.length) @@ -417,10 +391,7 @@ pub mod exports { pub length: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("base64", &self.base64) .field("hex", &self.hex) @@ -437,7 +408,8 @@ pub mod exports { arg2: i32, arg3: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let len0 = arg1; @@ -489,27 +461,24 @@ pub mod exports { pub(crate) use __export_pulumi_random_random_bytes_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod random_id { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub byte_length: &'a Output, pub keepers: &'a Output, pub prefix: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("byte-length", &self.byte_length) .field("keepers", &self.keepers) @@ -527,10 +496,7 @@ pub mod exports { pub prefix: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("b64-std", &self.b64_std) .field("b64-url", &self.b64_url) @@ -551,7 +517,8 @@ pub mod exports { arg3: i32, arg4: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -617,17 +584,17 @@ pub mod exports { pub(crate) use __export_pulumi_random_random_id_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 28]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 28], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 28]); } #[allow(dead_code, clippy::all)] pub mod random_integer { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, pub max: &'a Output, @@ -635,10 +602,7 @@ pub mod exports { pub seed: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("keepers", &self.keepers) .field("max", &self.max) @@ -655,10 +619,7 @@ pub mod exports { pub seed: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("keepers", &self.keepers) .field("max", &self.max) @@ -678,7 +639,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -747,17 +709,17 @@ pub mod exports { pub(crate) use __export_pulumi_random_random_integer_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod random_password { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, pub length: &'a Output, @@ -773,10 +735,7 @@ pub mod exports { pub upper: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("keepers", &self.keepers) .field("length", &self.length) @@ -810,10 +769,7 @@ pub mod exports { pub upper: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("bcrypt-hash", &self.bcrypt_hash) .field("keepers", &self.keepers) @@ -850,7 +806,8 @@ pub mod exports { arg12: i32, arg13: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -969,8 +926,7 @@ pub mod exports { *ptr14.add(28).cast::() = (min_upper15).take_handle() as i32; *ptr14.add(32).cast::() = (number15).take_handle() as i32; *ptr14.add(36).cast::() = (numeric15).take_handle() as i32; - *ptr14.add(40).cast::() = (override_special15).take_handle() - as i32; + *ptr14.add(40).cast::() = (override_special15).take_handle() as i32; *ptr14.add(44).cast::() = (result15).take_handle() as i32; *ptr14.add(48).cast::() = (special15).take_handle() as i32; *ptr14.add(52).cast::() = (upper15).take_handle() as i32; @@ -996,17 +952,17 @@ pub mod exports { pub(crate) use __export_pulumi_random_random_password_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 56]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 56], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 56]); } #[allow(dead_code, clippy::all)] pub mod random_pet { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, pub length: &'a Output, @@ -1014,10 +970,7 @@ pub mod exports { pub separator: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("keepers", &self.keepers) .field("length", &self.length) @@ -1033,10 +986,7 @@ pub mod exports { pub separator: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("keepers", &self.keepers) .field("length", &self.length) @@ -1055,7 +1005,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1122,17 +1073,17 @@ pub mod exports { pub(crate) use __export_pulumi_random_random_pet_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 16]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 16], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 16]); } #[allow(dead_code, clippy::all)] pub mod random_shuffle { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub inputs: &'a Output, pub keepers: &'a Output, @@ -1140,10 +1091,7 @@ pub mod exports { pub seed: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("inputs", &self.inputs) .field("keepers", &self.keepers) @@ -1160,10 +1108,7 @@ pub mod exports { pub seed: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("inputs", &self.inputs) .field("keepers", &self.keepers) @@ -1183,7 +1128,8 @@ pub mod exports { arg4: i32, arg5: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1252,17 +1198,17 @@ pub mod exports { pub(crate) use __export_pulumi_random_random_shuffle_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 20]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 20], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 20]); } #[allow(dead_code, clippy::all)] pub mod random_string { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, pub length: &'a Output, @@ -1278,10 +1224,7 @@ pub mod exports { pub upper: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Args") .field("keepers", &self.keepers) .field("length", &self.length) @@ -1314,10 +1257,7 @@ pub mod exports { pub upper: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("keepers", &self.keepers) .field("length", &self.length) @@ -1353,7 +1293,8 @@ pub mod exports { arg12: i32, arg13: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let handle2; let handle3; @@ -1470,8 +1411,7 @@ pub mod exports { *ptr14.add(24).cast::() = (min_upper15).take_handle() as i32; *ptr14.add(28).cast::() = (number15).take_handle() as i32; *ptr14.add(32).cast::() = (numeric15).take_handle() as i32; - *ptr14.add(36).cast::() = (override_special15).take_handle() - as i32; + *ptr14.add(36).cast::() = (override_special15).take_handle() as i32; *ptr14.add(40).cast::() = (result15).take_handle() as i32; *ptr14.add(44).cast::() = (special15).take_handle() as i32; *ptr14.add(48).cast::() = (upper15).take_handle() as i32; @@ -1497,26 +1437,25 @@ pub mod exports { pub(crate) use __export_pulumi_random_random_string_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 52]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 52], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 52]); } #[allow(dead_code, clippy::all)] pub mod random_uuid { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; - pub type Output = super::super::super::super::component::pulumi_wasm::output_interface::Output; + pub type Output = + super::super::super::super::component::pulumi_wasm::output_interface::Output; pub struct Args<'a> { pub keepers: &'a Output, } impl<'a> ::core::fmt::Debug for Args<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { - f.debug_struct("Args").field("keepers", &self.keepers).finish() + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + f.debug_struct("Args") + .field("keepers", &self.keepers) + .finish() } } pub struct Res { @@ -1524,10 +1463,7 @@ pub mod exports { pub result: Output, } impl ::core::fmt::Debug for Res { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Res") .field("keepers", &self.keepers) .field("result", &self.result) @@ -1541,7 +1477,8 @@ pub mod exports { arg1: usize, arg2: i32, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let handle1; let len0 = arg1; let bytes0 = _rt::Vec::from_raw_parts(arg0.cast(), len0, len0); @@ -1557,7 +1494,10 @@ pub mod exports { }, ); let ptr3 = _RET_AREA.0.as_mut_ptr().cast::(); - let Res { keepers: keepers4, result: result4 } = result2; + let Res { + keepers: keepers4, + result: result4, + } = result2; *ptr3.add(0).cast::() = (keepers4).take_handle() as i32; *ptr3.add(4).cast::() = (result4).take_handle() as i32; ptr3 @@ -1579,9 +1519,7 @@ pub mod exports { pub(crate) use __export_pulumi_random_random_uuid_4_15_0_divider_zero_zero_zero_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } } } @@ -1648,7 +1586,9 @@ mod _rt { } impl fmt::Debug for Resource { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_struct("Resource").field("handle", &self.handle).finish() + f.debug_struct("Resource") + .field("handle", &self.handle) + .finish() } } impl Drop for Resource { diff --git a/pulumi_wasm/src/bindings.rs b/pulumi_wasm/src/bindings.rs index 64ebfe0f..5f3ac5a6 100644 --- a/pulumi_wasm/src/bindings.rs +++ b/pulumi_wasm/src/bindings.rs @@ -6,7 +6,8 @@ pub mod component { pub mod log { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; #[repr(u8)] #[derive(Clone, Copy, Eq, PartialEq)] @@ -18,10 +19,7 @@ pub mod component { Error, } impl ::core::fmt::Debug for Level { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { match self { Level::Trace => f.debug_tuple("Level::Trace").finish(), Level::Debug => f.debug_tuple("Level::Debug").finish(), @@ -58,10 +56,7 @@ pub mod component { pub key_values: _rt::Vec<(_rt::String, _rt::String)>, } impl ::core::fmt::Debug for Content { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("Content") .field("level", &self.level) .field("target", &self.target) @@ -115,10 +110,8 @@ pub mod component { }; let vec11 = key_values0; let len11 = vec11.len(); - let layout11 = _rt::alloc::Layout::from_size_align_unchecked( - vec11.len() * 16, - 4, - ); + let layout11 = + _rt::alloc::Layout::from_size_align_unchecked(vec11.len() * 16, 4); let result11 = if layout11.size() != 0 { let ptr = _rt::alloc::alloc(layout11).cast::(); if ptr.is_null() { @@ -126,7 +119,9 @@ pub mod component { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec11.into_iter().enumerate() { let base = result11.add(i * 16); @@ -215,7 +210,8 @@ pub mod component { pub mod external_world { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::__link_custom_section_describing_imports; use super::super::super::_rt; #[derive(Clone)] pub struct RegisterResourceRequest { @@ -223,10 +219,7 @@ pub mod component { pub body: _rt::Vec, } impl ::core::fmt::Debug for RegisterResourceRequest { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceRequest") .field("output-id", &self.output_id) .field("body", &self.body) @@ -239,10 +232,7 @@ pub mod component { pub body: _rt::Vec, } impl ::core::fmt::Debug for RegisteredResource { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisteredResource") .field("output-id", &self.output_id) .field("body", &self.body) @@ -327,7 +317,10 @@ pub mod component { #[allow(unused_unsafe, clippy::all)] pub fn register_resource(request: &RegisterResourceRequest) { unsafe { - let RegisterResourceRequest { output_id: output_id0, body: body0 } = request; + let RegisterResourceRequest { + output_id: output_id0, + body: body0, + } = request; let vec1 = output_id0; let ptr1 = vec1.as_ptr().cast::(); let len1 = vec1.len(); @@ -408,7 +401,8 @@ pub mod exports { pub mod output_interface { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; #[derive(Debug)] #[repr(transparent)] @@ -425,9 +419,7 @@ pub mod exports { pub fn new(val: T) -> Self { Self::type_guard::(); let val: _OutputRep = Some(val); - let ptr: *mut _OutputRep = _rt::Box::into_raw( - _rt::Box::new(val), - ); + let ptr: *mut _OutputRep = _rt::Box::into_raw(_rt::Box::new(val)); unsafe { Self::from_handle(T::_resource_new(ptr.cast())) } } /// Gets access to the underlying `T` which represents this resource. @@ -465,12 +457,13 @@ pub mod exports { use core::any::TypeId; static mut LAST_TYPE: Option = None; unsafe { - assert!(! cfg!(target_feature = "atomics")); + assert!(!cfg!(target_feature = "atomics")); let id = TypeId::of::(); match LAST_TYPE { Some(ty) => { assert!( - ty == id, "cannot use two types with this resource type" + ty == id, + "cannot use two types with this resource type" ) } None => LAST_TYPE = Some(id), @@ -537,7 +530,8 @@ pub mod exports { arg0: *mut u8, arg1: usize, ) -> i32 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let len0 = arg1; let bytes0 = _rt::Vec::from_raw_parts(arg0.cast(), len0, len0); let result1 = Output::new(T::new(_rt::string_lift(bytes0))); @@ -550,7 +544,8 @@ pub mod exports { arg1: *mut u8, arg2: usize, ) -> i32 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let len0 = arg2; let bytes0 = _rt::Vec::from_raw_parts(arg1.cast(), len0, len0); let result1 = T::map( @@ -561,11 +556,9 @@ pub mod exports { } #[doc(hidden)] #[allow(non_snake_case)] - pub unsafe fn _export_combine_cabi( - arg0: *mut u8, - arg1: usize, - ) -> i32 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + pub unsafe fn _export_combine_cabi(arg0: *mut u8, arg1: usize) -> i32 { + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let base1 = arg0; let len1 = arg1; let mut result1 = _rt::Vec::with_capacity(len1); @@ -664,7 +657,8 @@ pub mod exports { pub mod register_interface { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; pub type Output = super::super::super::super::exports::component::pulumi_wasm::output_interface::Output; pub type OutputBorrow<'a> = super::super::super::super::exports::component::pulumi_wasm::output_interface::OutputBorrow< @@ -675,10 +669,7 @@ pub mod exports { pub value: OutputBorrow<'a>, } impl<'a> ::core::fmt::Debug for ObjectField<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("ObjectField") .field("name", &self.name) .field("value", &self.value) @@ -690,11 +681,10 @@ pub mod exports { pub name: _rt::String, } impl ::core::fmt::Debug for ResultField { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { - f.debug_struct("ResultField").field("name", &self.name).finish() + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { + f.debug_struct("ResultField") + .field("name", &self.name) + .finish() } } pub struct RegisterResourceResultField { @@ -702,10 +692,7 @@ pub mod exports { pub output: Output, } impl ::core::fmt::Debug for RegisterResourceResultField { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResultField") .field("name", &self.name) .field("output", &self.output) @@ -719,10 +706,7 @@ pub mod exports { pub results: _rt::Vec, } impl<'a> ::core::fmt::Debug for RegisterResourceRequest<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceRequest") .field("type", &self.type_) .field("name", &self.name) @@ -735,10 +719,7 @@ pub mod exports { pub fields: _rt::Vec, } impl ::core::fmt::Debug for RegisterResourceResult { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("RegisterResourceResult") .field("fields", &self.fields) .finish() @@ -756,7 +737,8 @@ pub mod exports { arg6: *mut u8, arg7: usize, ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let len0 = arg1; let bytes0 = _rt::Vec::from_raw_parts(arg0.cast(), len0, len0); let len1 = arg3; @@ -807,10 +789,8 @@ pub mod exports { let RegisterResourceResult { fields: fields13 } = result11; let vec16 = fields13; let len16 = vec16.len(); - let layout16 = _rt::alloc::Layout::from_size_align_unchecked( - vec16.len() * 12, - 4, - ); + let layout16 = + _rt::alloc::Layout::from_size_align_unchecked(vec16.len() * 12, 4); let result16 = if layout16.size() != 0 { let ptr = _rt::alloc::alloc(layout16).cast::(); if ptr.is_null() { @@ -818,7 +798,9 @@ pub mod exports { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec16.into_iter().enumerate() { let base = result16.add(i * 12); @@ -858,9 +840,7 @@ pub mod exports { _rt::cabi_dealloc(base4, len4 * 12, 4); } pub trait Guest { - fn register( - request: RegisterResourceRequest<'_>, - ) -> RegisterResourceResult; + fn register(request: RegisterResourceRequest<'_>) -> RegisterResourceResult; } #[doc(hidden)] macro_rules! __export_component_pulumi_wasm_register_interface_0_0_0_dev_cabi { @@ -881,15 +861,14 @@ pub mod exports { pub(crate) use __export_component_pulumi_wasm_register_interface_0_0_0_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } #[allow(dead_code, clippy::all)] pub mod stack_interface { #[used] #[doc(hidden)] - static __FORCE_SECTION_REF: fn() = super::super::super::super::__link_custom_section_describing_imports; + static __FORCE_SECTION_REF: fn() = + super::super::super::super::__link_custom_section_describing_imports; use super::super::super::super::_rt; pub type Output = super::super::super::super::exports::component::pulumi_wasm::output_interface::Output; pub type OutputBorrow<'a> = super::super::super::super::exports::component::pulumi_wasm::output_interface::OutputBorrow< @@ -901,10 +880,7 @@ pub mod exports { pub value: _rt::String, } impl ::core::fmt::Debug for FunctionInvocationRequest { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("FunctionInvocationRequest") .field("id", &self.id) .field("function-id", &self.function_id) @@ -917,10 +893,7 @@ pub mod exports { pub value: _rt::String, } impl<'a> ::core::fmt::Debug for FunctionInvocationResult<'a> { - fn fmt( - &self, - f: &mut ::core::fmt::Formatter<'_>, - ) -> ::core::fmt::Result { + fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { f.debug_struct("FunctionInvocationResult") .field("id", &self.id) .field("value", &self.value) @@ -934,7 +907,8 @@ pub mod exports { arg1: usize, arg2: i32, ) { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let len0 = arg1; let bytes0 = _rt::Vec::from_raw_parts(arg0.cast(), len0, len0); T::add_export( @@ -944,11 +918,9 @@ pub mod exports { } #[doc(hidden)] #[allow(non_snake_case)] - pub unsafe fn _export_finish_cabi( - arg0: *mut u8, - arg1: usize, - ) -> *mut u8 { - #[cfg(target_arch = "wasm32")] _rt::run_ctors_once(); + pub unsafe fn _export_finish_cabi(arg0: *mut u8, arg1: usize) -> *mut u8 { + #[cfg(target_arch = "wasm32")] + _rt::run_ctors_once(); let base4 = arg0; let len4 = arg1; let mut result4 = _rt::Vec::with_capacity(len4); @@ -972,10 +944,8 @@ pub mod exports { let ptr6 = _RET_AREA.0.as_mut_ptr().cast::(); let vec10 = result5; let len10 = vec10.len(); - let layout10 = _rt::alloc::Layout::from_size_align_unchecked( - vec10.len() * 20, - 4, - ); + let layout10 = + _rt::alloc::Layout::from_size_align_unchecked(vec10.len() * 20, 4); let result10 = if layout10.size() != 0 { let ptr = _rt::alloc::alloc(layout10).cast::(); if ptr.is_null() { @@ -983,7 +953,9 @@ pub mod exports { } ptr } else { - { ::core::ptr::null_mut() } + { + ::core::ptr::null_mut() + } }; for (i, e) in vec10.into_iter().enumerate() { let base = result10.add(i * 20); @@ -1060,9 +1032,7 @@ pub mod exports { pub(crate) use __export_component_pulumi_wasm_stack_interface_0_0_0_dev_cabi; #[repr(align(4))] struct _RetArea([::core::mem::MaybeUninit; 8]); - static mut _RET_AREA: _RetArea = _RetArea( - [::core::mem::MaybeUninit::uninit(); 8], - ); + static mut _RET_AREA: _RetArea = _RetArea([::core::mem::MaybeUninit::uninit(); 8]); } } } @@ -1216,7 +1186,9 @@ mod _rt { } impl fmt::Debug for Resource { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_struct("Resource").field("handle", &self.handle).finish() + f.debug_struct("Resource") + .field("handle", &self.handle) + .finish() } } impl Drop for Resource { From 89c71a6e25f677bcf0824fe988f037a013910dbf Mon Sep 17 00:00:00 2001 From: Andrzej Ressel Date: Fri, 6 Sep 2024 23:31:07 +0200 Subject: [PATCH 4/5] Update --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 638defb4..5d8ae806 100644 --- a/justfile +++ b/justfile @@ -8,7 +8,7 @@ SD_VERSION := "1.0.0" @default: build test -build: build-language-plugin regenerate-providers install-requirements build-wasm-components fmt +build: build-language-plugin regenerate-providers install-requirements build-wasm-components build-all-wasm-projects-release fmt # https://stackoverflow.com/questions/74524817/why-is-anyhow-not-working-in-the-stable-version fix-issues: From 4adddca53343f1119fa77182df46964157b99863 Mon Sep 17 00:00:00 2001 From: Andrzej Ressel Date: Sat, 7 Sep 2024 00:03:25 +0200 Subject: [PATCH 5/5] Update --- .github/workflows/build.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index df480375..35b7a0fb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -102,10 +102,6 @@ jobs: run: just build env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Build release - run: just build-all-wasm-projects-release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Test run: just test env: @@ -204,10 +200,6 @@ jobs: run: just build env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Build release - run: just build-all-wasm-projects-release - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Test run: just test env: