Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment
- 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
-
#api_proxy ⇒ String
API proxy.
-
#deploy_start_time ⇒ Fixnum
Time the API proxy was marked
deployedin the control plane in millisconds since epoch. -
#environment ⇒ String
Environment.
-
#errors ⇒ Array<Google::Apis::ApigeeV1::GoogleRpcStatus>
Errors reported for this deployment.
-
#instances ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatus>
Status reported by each runtime instance.
-
#pods ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1PodStatus>
Status reported by runtime pods.
-
#revision ⇒ String
API proxy revision.
-
#route_conflicts ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict>
Conflicts in the desired state routing configuration.
-
#service_account ⇒ String
The full resource name of Cloud IAM Service Account that this deployment is using, eg,
projects/-/serviceAccounts/email``. -
#state ⇒ String
Current state of the deployment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1Deployment
constructor
A new instance of GoogleCloudApigeeV1Deployment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1Deployment
Returns a new instance of GoogleCloudApigeeV1Deployment.
2415 2416 2417 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2415 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_proxy ⇒ String
API proxy.
Corresponds to the JSON property apiProxy
2356 2357 2358 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2356 def api_proxy @api_proxy end |
#deploy_start_time ⇒ Fixnum
Time the API proxy was marked deployed in the control plane in millisconds
since epoch.
Corresponds to the JSON property deployStartTime
2362 2363 2364 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2362 def deploy_start_time @deploy_start_time end |
#environment ⇒ String
Environment.
Corresponds to the JSON property environment
2367 2368 2369 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2367 def environment @environment end |
#errors ⇒ Array<Google::Apis::ApigeeV1::GoogleRpcStatus>
Errors reported for this deployment. Populated only when state == ERROR. **
Note**: This field is displayed only when viewing deployment status.
Corresponds to the JSON property errors
2373 2374 2375 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2373 def errors @errors end |
#instances ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1InstanceDeploymentStatus>
Status reported by each runtime instance. Note: This field is displayed
only when viewing deployment status.
Corresponds to the JSON property instances
2379 2380 2381 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2379 def instances @instances end |
#pods ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1PodStatus>
Status reported by runtime pods. Note: This field is deprecated.
Runtime versions 1.3 and above report instance level status rather than pod
status.
Corresponds to the JSON property pods
2386 2387 2388 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2386 def pods @pods end |
#revision ⇒ String
API proxy revision.
Corresponds to the JSON property revision
2391 2392 2393 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2391 def revision @revision end |
#route_conflicts ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict>
Conflicts in the desired state routing configuration. The presence of
conflicts does not cause the state to be ERROR, but it will mean that some
of the deployment's base paths are not routed to its environment. If the
conflicts change, the state will transition to PROGRESSING until the latest
configuration is rolled out to all instances. Note: This field is
displayed only when viewing deployment status.
Corresponds to the JSON property routeConflicts
2401 2402 2403 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2401 def route_conflicts @route_conflicts end |
#service_account ⇒ String
The full resource name of Cloud IAM Service Account that this deployment is
using, eg, projects/-/serviceAccounts/email`.
Corresponds to the JSON propertyserviceAccount`
2407 2408 2409 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2407 def service_account @service_account end |
#state ⇒ String
Current state of the deployment. Note: This field is displayed only when
viewing deployment status.
Corresponds to the JSON property state
2413 2414 2415 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2413 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 2420 def update!(**args) @api_proxy = args[:api_proxy] if args.key?(:api_proxy) @deploy_start_time = args[:deploy_start_time] if args.key?(:deploy_start_time) @environment = args[:environment] if args.key?(:environment) @errors = args[:errors] if args.key?(:errors) @instances = args[:instances] if args.key?(:instances) @pods = args[:pods] if args.key?(:pods) @revision = args[:revision] if args.key?(:revision) @route_conflicts = args[:route_conflicts] if args.key?(:route_conflicts) @service_account = args[:service_account] if args.key?(:service_account) @state = args[:state] if args.key?(:state) end |