source: vendor/google/apiclient-services/src/Dataform/WorkflowInvocationAction.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 7 days ago

Upload project files

  • Property mode set to 100644
File size: 3.1 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Dataform;
19
20class WorkflowInvocationAction extends \Google\Model
21{
22 protected $bigqueryActionType = BigQueryAction::class;
23 protected $bigqueryActionDataType = '';
24 protected $canonicalTargetType = Target::class;
25 protected $canonicalTargetDataType = '';
26 /**
27 * @var string
28 */
29 public $failureReason;
30 protected $invocationTimingType = Interval::class;
31 protected $invocationTimingDataType = '';
32 protected $notebookActionType = NotebookAction::class;
33 protected $notebookActionDataType = '';
34 /**
35 * @var string
36 */
37 public $state;
38 protected $targetType = Target::class;
39 protected $targetDataType = '';
40
41 /**
42 * @param BigQueryAction
43 */
44 public function setBigqueryAction(BigQueryAction $bigqueryAction)
45 {
46 $this->bigqueryAction = $bigqueryAction;
47 }
48 /**
49 * @return BigQueryAction
50 */
51 public function getBigqueryAction()
52 {
53 return $this->bigqueryAction;
54 }
55 /**
56 * @param Target
57 */
58 public function setCanonicalTarget(Target $canonicalTarget)
59 {
60 $this->canonicalTarget = $canonicalTarget;
61 }
62 /**
63 * @return Target
64 */
65 public function getCanonicalTarget()
66 {
67 return $this->canonicalTarget;
68 }
69 /**
70 * @param string
71 */
72 public function setFailureReason($failureReason)
73 {
74 $this->failureReason = $failureReason;
75 }
76 /**
77 * @return string
78 */
79 public function getFailureReason()
80 {
81 return $this->failureReason;
82 }
83 /**
84 * @param Interval
85 */
86 public function setInvocationTiming(Interval $invocationTiming)
87 {
88 $this->invocationTiming = $invocationTiming;
89 }
90 /**
91 * @return Interval
92 */
93 public function getInvocationTiming()
94 {
95 return $this->invocationTiming;
96 }
97 /**
98 * @param NotebookAction
99 */
100 public function setNotebookAction(NotebookAction $notebookAction)
101 {
102 $this->notebookAction = $notebookAction;
103 }
104 /**
105 * @return NotebookAction
106 */
107 public function getNotebookAction()
108 {
109 return $this->notebookAction;
110 }
111 /**
112 * @param string
113 */
114 public function setState($state)
115 {
116 $this->state = $state;
117 }
118 /**
119 * @return string
120 */
121 public function getState()
122 {
123 return $this->state;
124 }
125 /**
126 * @param Target
127 */
128 public function setTarget(Target $target)
129 {
130 $this->target = $target;
131 }
132 /**
133 * @return Target
134 */
135 public function getTarget()
136 {
137 return $this->target;
138 }
139}
140
141// Adding a class alias for backwards compatibility with the previous class name.
142class_alias(WorkflowInvocationAction::class, 'Google_Service_Dataform_WorkflowInvocationAction');
Note: See TracBrowser for help on using the repository browser.