pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateWorkspaceConfigurationInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn configuration(self, input: impl Into<String>) -> Self
pub fn configuration(self, input: impl Into<String>) -> Self
The new configuration string for the workspace. For more information about the format and configuration options available, see Working in your Grafana workspace.
sourcepub fn set_configuration(self, input: Option<String>) -> Self
pub fn set_configuration(self, input: Option<String>) -> Self
The new configuration string for the workspace. For more information about the format and configuration options available, see Working in your Grafana workspace.
sourcepub fn workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The ID of the workspace to update.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The ID of the workspace to update.
sourcepub fn build(self) -> Result<UpdateWorkspaceConfigurationInput, BuildError>
pub fn build(self) -> Result<UpdateWorkspaceConfigurationInput, BuildError>
Consumes the builder and constructs a UpdateWorkspaceConfigurationInput
.