class Google::Apis::ContaineranalysisV1alpha1::Deployment

The period during which some deployable was active in a runtime.

Attributes

address[RW]

Address of the runtime element hosting this deployment. Corresponds to the JSON property `address` @return [String]

config[RW]

Configuration used to create this deployment. Corresponds to the JSON property `config` @return [String]

deploy_time[RW]

Beginning of the lifetime of this deployment. Corresponds to the JSON property `deployTime` @return [String]

platform[RW]

Platform hosting this deployment. Corresponds to the JSON property `platform` @return [String]

resource_uri[RW]

Output only. Resource URI for the artifact being deployed taken from the deployable field with the same name. Corresponds to the JSON property `resourceUri` @return [Array<String>]

undeploy_time[RW]

End of the lifetime of this deployment. Corresponds to the JSON property `undeployTime` @return [String]

user_email[RW]

Identity of the user that triggered this deployment. Corresponds to the JSON property `userEmail` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 872
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 877
def update!(**args)
  @address = args[:address] if args.key?(:address)
  @config = args[:config] if args.key?(:config)
  @deploy_time = args[:deploy_time] if args.key?(:deploy_time)
  @platform = args[:platform] if args.key?(:platform)
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
  @undeploy_time = args[:undeploy_time] if args.key?(:undeploy_time)
  @user_email = args[:user_email] if args.key?(:user_email)
end