Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1PodStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1PodStatus

Returns a new instance of GoogleCloudApigeeV1PodStatus.



4721
4722
4723
# File 'lib/google/apis/apigee_v1/classes.rb', line 4721

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#app_versionString

Version of the application running in the pod. Corresponds to the JSON property appVersion

Returns:

  • (String)


4676
4677
4678
# File 'lib/google/apis/apigee_v1/classes.rb', line 4676

def app_version
  @app_version
end

#deployment_statusString

Status of the deployment. Valid values include: - deployed: Successful. - error : Failed. - pending : Pod has not yet reported on the deployment. Corresponds to the JSON property deploymentStatus

Returns:

  • (String)


4682
4683
4684
# File 'lib/google/apis/apigee_v1/classes.rb', line 4682

def deployment_status
  @deployment_status
end

#deployment_status_timeFixnum

Time the deployment status was reported in milliseconds since epoch. Corresponds to the JSON property deploymentStatusTime

Returns:

  • (Fixnum)


4687
4688
4689
# File 'lib/google/apis/apigee_v1/classes.rb', line 4687

def deployment_status_time
  @deployment_status_time
end

#deployment_timeFixnum

Time the proxy was deployed in milliseconds since epoch. Corresponds to the JSON property deploymentTime

Returns:

  • (Fixnum)


4692
4693
4694
# File 'lib/google/apis/apigee_v1/classes.rb', line 4692

def deployment_time
  @deployment_time
end

#pod_nameString

Name of the pod which is reporting the status. Corresponds to the JSON property podName

Returns:

  • (String)


4697
4698
4699
# File 'lib/google/apis/apigee_v1/classes.rb', line 4697

def pod_name
  @pod_name
end

#pod_statusString

Overall status of the pod (not this specific deployment). Valid values include:

  • active: Up to date. - stale : Recently out of date. Pods that have not reported status in a long time are excluded from the output. Corresponds to the JSON property podStatus

Returns:

  • (String)


4704
4705
4706
# File 'lib/google/apis/apigee_v1/classes.rb', line 4704

def pod_status
  @pod_status
end

#pod_status_timeFixnum

Time the pod status was reported in milliseconds since epoch. Corresponds to the JSON property podStatusTime

Returns:

  • (Fixnum)


4709
4710
4711
# File 'lib/google/apis/apigee_v1/classes.rb', line 4709

def pod_status_time
  @pod_status_time
end

#status_codeString

Code associated with the deployment status. Corresponds to the JSON property statusCode

Returns:

  • (String)


4714
4715
4716
# File 'lib/google/apis/apigee_v1/classes.rb', line 4714

def status_code
  @status_code
end

#status_code_detailsString

Human-readable message associated with the status code. Corresponds to the JSON property statusCodeDetails

Returns:

  • (String)


4719
4720
4721
# File 'lib/google/apis/apigee_v1/classes.rb', line 4719

def status_code_details
  @status_code_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
# File 'lib/google/apis/apigee_v1/classes.rb', line 4726

def update!(**args)
  @app_version = args[:app_version] if args.key?(:app_version)
  @deployment_status = args[:deployment_status] if args.key?(:deployment_status)
  @deployment_status_time = args[:deployment_status_time] if args.key?(:deployment_status_time)
  @deployment_time = args[:deployment_time] if args.key?(:deployment_time)
  @pod_name = args[:pod_name] if args.key?(:pod_name)
  @pod_status = args[:pod_status] if args.key?(:pod_status)
  @pod_status_time = args[:pod_status_time] if args.key?(:pod_status_time)
  @status_code = args[:status_code] if args.key?(:status_code)
  @status_code_details = args[:status_code_details] if args.key?(:status_code_details)
end