[docs]classGCSEndpointScopeBuilder(ScopeBuilder):""" A ScopeBuilder with a named property for the GCS manage_collections scope. "manage_collections" is a scope on GCS Endpoints. The resource_server string should be the GCS Endpoint ID. **Examples** >>> sb = GCSEndpointScopeBuilder("xyz") >>> mc_scope = sb.manage_collections """_classattr_scope_names=["manage_collections"]@propertydefmanage_collections(self)->str:returnself.urn_scope_string("manage_collections")
[docs]classGCSCollectionScopeBuilder(ScopeBuilder):""" A ScopeBuilder with a named property for the GCS data_access scope. "data_access" is a scope on GCS Collections. The resource_server string should be the GCS Collection ID. **Examples** >>> sb = GCSCollectionScopeBuilder("xyz") >>> da_scope = sb.data_access >>> https_scope = sb.https """_classattr_scope_names=["data_access","https"]@propertydefdata_access(self)->str:returnself.url_scope_string("data_access")@propertydefhttps(self)->str:returnself.url_scope_string("https")