pub struct PythonPackage {
pub create_time: Option<DateTime<Utc>>,
pub name: Option<String>,
pub package_name: Option<String>,
pub update_time: Option<DateTime<Utc>>,
pub uri: Option<String>,
pub version: Option<String>,
}Expand description
PythonPackage represents a python artifact.
§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§
§create_time: Option<DateTime<Utc>>Output only. Time the package was created.
name: Option<String>Required. registry_location, project_id, repository_name and python_package forms a unique package name:projects//locations//repository//pythonPackages/. For example, “projects/test-project/locations/us-west4/repositories/test-repo/pythonPackages/ python_package:1.0.0”, where “us-west4” is the registry_location, “test-project” is the project_id, “test-repo” is the repository_name and python_package:1.0.0“ is the python package.
package_name: Option<String>Package for the artifact.
update_time: Option<DateTime<Utc>>Output only. Time the package was updated.
uri: Option<String>Required. URL to access the package. Example: us-west4-python.pkg.dev/test-project/test-repo/python_package/file-name-1.0.0.tar.gz
version: Option<String>Version of this package.
Trait Implementations§
Source§impl Clone for PythonPackage
impl Clone for PythonPackage
Source§fn clone(&self) -> PythonPackage
fn clone(&self) -> PythonPackage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more