@@ -2335,9 +2335,13 @@ class RegistryItem(google.protobuf.message.Message):
23352335 URL_FIELD_NUMBER : builtins .int
23362336 DESCRIPTION_FIELD_NUMBER : builtins .int
23372337 TOTAL_ROBOT_USAGE_FIELD_NUMBER : builtins .int
2338+ TOTAL_EXTERNAL_ROBOT_USAGE_FIELD_NUMBER : builtins .int
23382339 TOTAL_ORGANIZATION_USAGE_FIELD_NUMBER : builtins .int
2340+ TOTAL_EXTERNAL_ORGANIZATION_USAGE_FIELD_NUMBER : builtins .int
23392341 MODULE_METADATA_FIELD_NUMBER : builtins .int
23402342 ML_MODEL_METADATA_FIELD_NUMBER : builtins .int
2343+ CREATED_AT_FIELD_NUMBER : builtins .int
2344+ UPDATED_AT_FIELD_NUMBER : builtins .int
23412345 item_id : builtins .str
23422346 'The id of the item, containing either:\n namespace:item_name when a namespace exists on the org.\n org_id:item_name when a namespace does not exist.\n '
23432347 organization_id : builtins .str
@@ -2356,8 +2360,12 @@ class RegistryItem(google.protobuf.message.Message):
23562360 'A short description of the item that explains its purpose'
23572361 total_robot_usage : builtins .int
23582362 'The total number of robots using this item'
2363+ total_external_robot_usage : builtins .int
2364+ 'The total number of robots using this item outside of the owning org'
23592365 total_organization_usage : builtins .int
23602366 'The total number of organizations using this item'
2367+ total_external_organization_usage : builtins .int
2368+ 'The total number of organizations using this item outside of the owning org'
23612369
23622370 @property
23632371 def module_metadata (self ) -> global___ModuleMetadata :
@@ -2367,13 +2375,21 @@ class RegistryItem(google.protobuf.message.Message):
23672375 def ml_model_metadata (self ) -> global___MLModelMetadata :
23682376 ...
23692377
2370- def __init__ (self , * , item_id : builtins .str = ..., organization_id : builtins .str = ..., public_namespace : builtins .str = ..., name : builtins .str = ..., type : app .packages .v1 .packages_pb2 .PackageType .ValueType = ..., visibility : global___Visibility .ValueType = ..., url : builtins .str = ..., description : builtins .str = ..., total_robot_usage : builtins .int = ..., total_organization_usage : builtins .int = ..., module_metadata : global___ModuleMetadata | None = ..., ml_model_metadata : global___MLModelMetadata | None = ...) -> None :
2378+ @property
2379+ def created_at (self ) -> google .protobuf .timestamp_pb2 .Timestamp :
2380+ """When the item was created"""
2381+
2382+ @property
2383+ def updated_at (self ) -> google .protobuf .timestamp_pb2 .Timestamp :
2384+ """When the item was last updated, either through an update or upload."""
2385+
2386+ def __init__ (self , * , item_id : builtins .str = ..., organization_id : builtins .str = ..., public_namespace : builtins .str = ..., name : builtins .str = ..., type : app .packages .v1 .packages_pb2 .PackageType .ValueType = ..., visibility : global___Visibility .ValueType = ..., url : builtins .str = ..., description : builtins .str = ..., total_robot_usage : builtins .int = ..., total_external_robot_usage : builtins .int = ..., total_organization_usage : builtins .int = ..., total_external_organization_usage : builtins .int = ..., module_metadata : global___ModuleMetadata | None = ..., ml_model_metadata : global___MLModelMetadata | None = ..., created_at : google .protobuf .timestamp_pb2 .Timestamp | None = ..., updated_at : google .protobuf .timestamp_pb2 .Timestamp | None = ...) -> None :
23712387 ...
23722388
2373- def HasField (self , field_name : typing_extensions .Literal ['metadata' , b'metadata' , 'ml_model_metadata' , b'ml_model_metadata' , 'module_metadata' , b'module_metadata' ]) -> builtins .bool :
2389+ def HasField (self , field_name : typing_extensions .Literal ['created_at' , b'created_at' , ' metadata' , b'metadata' , 'ml_model_metadata' , b'ml_model_metadata' , 'module_metadata' , b'module_metadata' , 'updated_at' , b'updated_at ' ]) -> builtins .bool :
23742390 ...
23752391
2376- def ClearField (self , field_name : typing_extensions .Literal ['description' , b'description' , 'item_id' , b'item_id' , 'metadata' , b'metadata' , 'ml_model_metadata' , b'ml_model_metadata' , 'module_metadata' , b'module_metadata' , 'name' , b'name' , 'organization_id' , b'organization_id' , 'public_namespace' , b'public_namespace' , 'total_organization_usage' , b'total_organization_usage' , 'total_robot_usage' , b'total_robot_usage' , 'type' , b'type' , 'url' , b'url' , 'visibility' , b'visibility' ]) -> None :
2392+ def ClearField (self , field_name : typing_extensions .Literal ['created_at' , b'created_at' , ' description' , b'description' , 'item_id' , b'item_id' , 'metadata' , b'metadata' , 'ml_model_metadata' , b'ml_model_metadata' , 'module_metadata' , b'module_metadata' , 'name' , b'name' , 'organization_id' , b'organization_id' , 'public_namespace' , b'public_namespace' , 'total_external_organization_usage' , b'total_external_organization_usage' , 'total_external_robot_usage' , b'total_external_robot_usage' , ' total_organization_usage' , b'total_organization_usage' , 'total_robot_usage' , b'total_robot_usage' , 'type' , b'type' , 'updated_at' , b'updated_at ' , 'url' , b'url' , 'visibility' , b'visibility' ]) -> None :
23772393 ...
23782394
23792395 def WhichOneof (self , oneof_group : typing_extensions .Literal ['metadata' , b'metadata' ]) -> typing_extensions .Literal ['module_metadata' , 'ml_model_metadata' ] | None :
0 commit comments