@@ -203,25 +203,6 @@ def update!(**args)
203
203
end
204
204
end
205
205
206
- # The response for executing or debugging a function in an Apps Script project.
207
- class ExecuteStreamResponse
208
- include Google ::Apis ::Core ::Hashable
209
-
210
- # The result of an execution.
211
- # Corresponds to the JSON property `result`
212
- # @return [Google::Apis::ScriptV1::ScriptExecutionResult]
213
- attr_accessor :result
214
-
215
- def initialize ( **args )
216
- update! ( **args )
217
- end
218
-
219
- # Update properties of this object
220
- def update! ( **args )
221
- @result = args [ :result ] if args . key? ( :result )
222
- end
223
- end
224
-
225
206
# An object that provides information about the nature of an error resulting
226
207
# from an attempted execution of a script function using the Apps Script API. If
227
208
# a run call succeeds but the script function (or Apps Script itself) throws an
@@ -761,25 +742,6 @@ def update!(**args)
761
742
end
762
743
end
763
744
764
- # `ListValue` is a wrapper around a repeated field of values.
765
- class ListValue
766
- include Google ::Apis ::Core ::Hashable
767
-
768
- # Repeated field of dynamically typed values.
769
- # Corresponds to the JSON property `values`
770
- # @return [Array<Google::Apis::ScriptV1::Value>]
771
- attr_accessor :values
772
-
773
- def initialize ( **args )
774
- update! ( **args )
775
- end
776
-
777
- # Update properties of this object
778
- def update! ( **args )
779
- @values = args [ :values ] if args . key? ( :values )
780
- end
781
- end
782
-
783
745
# Response with the list of the versions for the specified script project.
784
746
class ListVersionsResponse
785
747
include Google ::Apis ::Core ::Hashable
@@ -978,26 +940,6 @@ def update!(**args)
978
940
end
979
941
end
980
942
981
- # The result of an execution.
982
- class ScriptExecutionResult
983
- include Google ::Apis ::Core ::Hashable
984
-
985
- # `Value` represents a dynamically typed value which is the outcome of an
986
- # executed script.
987
- # Corresponds to the JSON property `returnValue`
988
- # @return [Google::Apis::ScriptV1::Value]
989
- attr_accessor :return_value
990
-
991
- def initialize ( **args )
992
- update! ( **args )
993
- end
994
-
995
- # Update properties of this object
996
- def update! ( **args )
997
- @return_value = args [ :return_value ] if args . key? ( :return_value )
998
- end
999
- end
1000
-
1001
943
# A stack trace through the script that shows where the execution failed.
1002
944
class ScriptStackTraceElement
1003
945
include Google ::Apis ::Core ::Hashable
@@ -1060,26 +1002,6 @@ def update!(**args)
1060
1002
end
1061
1003
end
1062
1004
1063
- # `Struct` represents a structured data value, consisting of fields which map to
1064
- # dynamically typed values.
1065
- class Struct
1066
- include Google ::Apis ::Core ::Hashable
1067
-
1068
- # Unordered map of dynamically typed values.
1069
- # Corresponds to the JSON property `fields`
1070
- # @return [Hash<String,Google::Apis::ScriptV1::Value>]
1071
- attr_accessor :fields
1072
-
1073
- def initialize ( **args )
1074
- update! ( **args )
1075
- end
1076
-
1077
- # Update properties of this object
1078
- def update! ( **args )
1079
- @fields = args [ :fields ] if args . key? ( :fields )
1080
- end
1081
- end
1082
-
1083
1005
# Request with deployment information to update an existing deployment.
1084
1006
class UpdateDeploymentRequest
1085
1007
include Google ::Apis ::Core ::Hashable
@@ -1099,77 +1021,6 @@ def update!(**args)
1099
1021
end
1100
1022
end
1101
1023
1102
- # `Value` represents a dynamically typed value which is the outcome of an
1103
- # executed script.
1104
- class Value
1105
- include Google ::Apis ::Core ::Hashable
1106
-
1107
- # Represents a boolean value.
1108
- # Corresponds to the JSON property `boolValue`
1109
- # @return [Boolean]
1110
- attr_accessor :bool_value
1111
- alias_method :bool_value? , :bool_value
1112
-
1113
- # Represents raw byte values.
1114
- # Corresponds to the JSON property `bytesValue`
1115
- # NOTE: Values are automatically base64 encoded/decoded in the client library.
1116
- # @return [String]
1117
- attr_accessor :bytes_value
1118
-
1119
- # Represents a date in ms since the epoch.
1120
- # Corresponds to the JSON property `dateValue`
1121
- # @return [Fixnum]
1122
- attr_accessor :date_value
1123
-
1124
- # `ListValue` is a wrapper around a repeated field of values.
1125
- # Corresponds to the JSON property `listValue`
1126
- # @return [Google::Apis::ScriptV1::ListValue]
1127
- attr_accessor :list_value
1128
-
1129
- # Represents a null value.
1130
- # Corresponds to the JSON property `nullValue`
1131
- # @return [String]
1132
- attr_accessor :null_value
1133
-
1134
- # Represents a double value.
1135
- # Corresponds to the JSON property `numberValue`
1136
- # @return [Float]
1137
- attr_accessor :number_value
1138
-
1139
- # Represents a structured proto value.
1140
- # Corresponds to the JSON property `protoValue`
1141
- # @return [Hash<String,Object>]
1142
- attr_accessor :proto_value
1143
-
1144
- # Represents a string value.
1145
- # Corresponds to the JSON property `stringValue`
1146
- # @return [String]
1147
- attr_accessor :string_value
1148
-
1149
- # `Struct` represents a structured data value, consisting of fields which map to
1150
- # dynamically typed values.
1151
- # Corresponds to the JSON property `structValue`
1152
- # @return [Google::Apis::ScriptV1::Struct]
1153
- attr_accessor :struct_value
1154
-
1155
- def initialize ( **args )
1156
- update! ( **args )
1157
- end
1158
-
1159
- # Update properties of this object
1160
- def update! ( **args )
1161
- @bool_value = args [ :bool_value ] if args . key? ( :bool_value )
1162
- @bytes_value = args [ :bytes_value ] if args . key? ( :bytes_value )
1163
- @date_value = args [ :date_value ] if args . key? ( :date_value )
1164
- @list_value = args [ :list_value ] if args . key? ( :list_value )
1165
- @null_value = args [ :null_value ] if args . key? ( :null_value )
1166
- @number_value = args [ :number_value ] if args . key? ( :number_value )
1167
- @proto_value = args [ :proto_value ] if args . key? ( :proto_value )
1168
- @string_value = args [ :string_value ] if args . key? ( :string_value )
1169
- @struct_value = args [ :struct_value ] if args . key? ( :struct_value )
1170
- end
1171
- end
1172
-
1173
1024
# A resource representing a script project version. A version is a "snapshot" of
1174
1025
# a script project and is similar to a read-only branched release. When creating
1175
1026
# deployments, the version to use must be specified.
0 commit comments