Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatus

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

Overview

The status of a deployment as reported by a single instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1InstanceDeploymentStatus

Returns a new instance of GoogleCloudApigeeV1InstanceDeploymentStatus.



3242
3243
3244
# File 'lib/google/apis/apigee_v1/classes.rb', line 3242

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

Instance Attribute Details

#deployed_revisionsArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRevision>

Revisions currently deployed in MPs. Corresponds to the JSON property deployedRevisions



3229
3230
3231
# File 'lib/google/apis/apigee_v1/classes.rb', line 3229

def deployed_revisions
  @deployed_revisions
end

#deployed_routesArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute>

The current routes deployed in the ingress routing table. A route which is missing will appear in missing_routes. Corresponds to the JSON property deployedRoutes



3235
3236
3237
# File 'lib/google/apis/apigee_v1/classes.rb', line 3235

def deployed_routes
  @deployed_routes
end

#instanceString

ID of the instance reporting the status. Corresponds to the JSON property instance

Returns:

  • (String)


3240
3241
3242
# File 'lib/google/apis/apigee_v1/classes.rb', line 3240

def instance
  @instance
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3247
3248
3249
3250
3251
# File 'lib/google/apis/apigee_v1/classes.rb', line 3247

def update!(**args)
  @deployed_revisions = args[:deployed_revisions] if args.key?(:deployed_revisions)
  @deployed_routes = args[:deployed_routes] if args.key?(:deployed_routes)
  @instance = args[:instance] if args.key?(:instance)
end