pub struct EffectiveTagBindingCollection {
pub effective_tags: Option<HashMap<String, String>>,
pub full_resource_name: Option<String>,
pub name: Option<String>,
}Expand description
Represents a collection of effective tag bindings for a GCP resource.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
Tag keys/values effectively bound to this resource, specified in namespaced format. For example: “123/environment”: “production”
full_resource_name: Option<String>The full resource name of the resource the TagBindings are bound to. E.g. //cloudresourcemanager.googleapis.com/projects/123
name: Option<String>Identifier. The name of the EffectiveTagBindingCollection, following the convention: locations/{location}/effectiveTagBindingCollections/{encoded-full-resource-name} where the encoded-full-resource-name is the UTF-8 encoded name of the GCP resource the TagBindings are bound to. E.g. “locations/global/effectiveTagBindingCollections/%2f%2fcloudresourcemanager.googleapis.com%2fprojects%2f123”
Trait Implementations§
Source§impl Clone for EffectiveTagBindingCollection
impl Clone for EffectiveTagBindingCollection
Source§fn clone(&self) -> EffectiveTagBindingCollection
fn clone(&self) -> EffectiveTagBindingCollection
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more