Class: Google::Apis::ContaineranalysisV1beta1::Deployment
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1beta1::Deployment
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/containeranalysis_v1beta1/classes.rb,
lib/google/apis/containeranalysis_v1beta1/representations.rb,
lib/google/apis/containeranalysis_v1beta1/representations.rb 
Overview
The period during which some deployable was active in a runtime.
Instance Attribute Summary collapse
- 
  
    
      #address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Address of the runtime element hosting this deployment.
 - 
  
    
      #config  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Configuration used to create this deployment.
 - 
  
    
      #deploy_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #platform  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Platform hosting this deployment.
 - 
  
    
      #resource_uri  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #undeploy_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
End of the lifetime of this deployment.
 - 
  
    
      #user_email  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identity of the user that triggered this deployment.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Deployment 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Deployment.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ Deployment
Returns a new instance of Deployment.
      2959 2960 2961  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2959 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#address ⇒ String
Address of the runtime element hosting this deployment.
Corresponds to the JSON property address
      2926 2927 2928  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2926 def address @address end  | 
  
#config ⇒ String
Configuration used to create this deployment.
Corresponds to the JSON property config
      2931 2932 2933  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2931 def config @config end  | 
  
#deploy_time ⇒ String
Required. Beginning of the lifetime of this deployment.
Corresponds to the JSON property deployTime
      2936 2937 2938  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2936 def deploy_time @deploy_time end  | 
  
#platform ⇒ String
Platform hosting this deployment.
Corresponds to the JSON property platform
      2941 2942 2943  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2941 def platform @platform end  | 
  
#resource_uri ⇒ Array<String>
Output only. Resource URI for the artifact being deployed taken from the
deployable field with the same name.
Corresponds to the JSON property resourceUri
      2947 2948 2949  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2947 def resource_uri @resource_uri end  | 
  
#undeploy_time ⇒ String
End of the lifetime of this deployment.
Corresponds to the JSON property undeployTime
      2952 2953 2954  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2952 def undeploy_time @undeploy_time end  | 
  
#user_email ⇒ String
Identity of the user that triggered this deployment.
Corresponds to the JSON property userEmail
      2957 2958 2959  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2957 def user_email @user_email end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2964 2965 2966 2967 2968 2969 2970 2971 2972  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 2964 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  |