pub struct ManagedFolderResult {
pub bucket: Output<String>,
pub create_time: Output<String>,
pub force_destroy: Output<Option<bool>>,
pub metageneration: Output<String>,
pub name: Output<String>,
pub self_link: Output<String>,
pub update_time: Output<String>,
}
Fields§
§bucket: Output<String>
The name of the bucket that contains the managed folder.
create_time: Output<String>
The timestamp at which this managed folder was created.
force_destroy: Output<Option<bool>>
Allows the deletion of a managed folder even if contains objects. If a non-empty managed folder is deleted, any objects within the folder will remain in a simulated folder with the same name.
metageneration: Output<String>
The metadata generation of the managed folder.
name: Output<String>
The name of the managed folder expressed as a path. Must include
trailing ‘/’. For example, example_dir/example_dir2/
.
self_link: Output<String>
The URI of the created resource.
update_time: Output<String>
The timestamp at which this managed folder was most recently updated.
Auto Trait Implementations§
impl Freeze for ManagedFolderResult
impl RefUnwindSafe for ManagedFolderResult
impl Send for ManagedFolderResult
impl Sync for ManagedFolderResult
impl Unpin for ManagedFolderResult
impl UnwindSafe for ManagedFolderResult
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more