aspose_cells_cloud 26.4 → 26.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -5
- data/lib/aspose_cells_cloud/api/cells_api.rb +102 -0
- data/lib/aspose_cells_cloud/models/ebook_save_options.rb +822 -0
- data/lib/aspose_cells_cloud/models/formula_calculate_result_response.rb +258 -0
- data/lib/aspose_cells_cloud/requests/add_text_in_remote_spreadsheet_request.rb +196 -0
- data/lib/aspose_cells_cloud/requests/calculation_formula_request.rb +147 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_html_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_image_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_range_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_spreadsheet_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_html_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_image_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_table_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_text_in_remote_spreadsheet_request.rb +184 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_csv_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_html_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_image_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_json_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/convert_worksheet_to_pdf_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_range_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_spreadsheet_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_table_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/export_worksheet_as_format_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/get_spreadsheet_structure_request.rb +123 -0
- data/lib/aspose_cells_cloud/requests/get_structure_in_remote_spreadsheet_request.rb +134 -0
- data/lib/aspose_cells_cloud/requests/remove_characters_by_position_in_remote_spreadsheet_request.rb +196 -0
- data/lib/aspose_cells_cloud/requests/remove_characters_in_remote_spreadsheet_request.rb +188 -0
- data/lib/aspose_cells_cloud/requests/remove_duplicate_substrings_in_remote_spreadsheet_request.rb +184 -0
- data/lib/aspose_cells_cloud/requests/report_ai_analysis_request.rb +122 -0
- data/lib/aspose_cells_cloud/requests/save_spreadsheet_as_request.rb +16 -0
- data/lib/aspose_cells_cloud/requests/smart_marker_template_request.rb +107 -0
- data/lib/aspose_cells_cloud/requests/summarize_spreadsheet_request.rb +123 -0
- data/lib/aspose_cells_cloud/requests/trim_character_in_remote_spreadsheet_request.rb +212 -0
- data/lib/aspose_cells_cloud/requests/update_word_case_in_remote_spreadsheet_request.rb +168 -0
- data/lib/aspose_cells_cloud/version.rb +1 -1
- data/lib/aspose_cells_cloud.rb +15 -0
- data/spec/TestData/AggregateCellsByColor.xlsx +0 -0
- data/spec/TestData/Book1.xlsx +0 -0
- data/spec/TestData/BookCsvDuplicateData.csv +21 -0
- data/spec/TestData/BookDuplicateData.xlsx +0 -0
- data/spec/TestData/BookFormula.xlsx +0 -0
- data/spec/TestData/BookTableL2W.xlsx +0 -0
- data/spec/TestData/BookText.xlsx +0 -0
- data/spec/TestData/CompanySales.xlsx +0 -0
- data/spec/TestData/EmployeeSalesSummary-BlankWorksheet.xlsx +0 -0
- data/spec/TestData/EmployeeSalesSummary.xlsx +0 -0
- data/spec/TestData/EmployeeSalesSummary_Locked.xlsx +0 -0
- data/spec/TestData/Formula tutorial.xlsx +0 -0
- data/spec/TestData/Group.xlsx +0 -0
- data/spec/TestData/Home inventory.xlsx +0 -0
- data/spec/TestData/LockedEmployeeSalesSummary.xlsx +0 -0
- data/spec/TestData/OLEDoc.docx +0 -0
- data/spec/TestData/ReportData.xml +1 -0
- data/spec/TestData/Simple invoice.xlsx +0 -0
- data/spec/TestData/Template.xlsx +0 -0
- data/spec/TestData/TestCase.xlsx +0 -0
- data/spec/TestData/TestTables.xlsx +0 -0
- data/spec/TestData/WaterMark.png +0 -0
- data/spec/TestData/assemblytest.xlsx +0 -0
- data/spec/TestData/data.xml +1 -0
- data/spec/TestData/datasource.xlsx +0 -0
- data/spec/TestData/myDocument.xlsx +0 -0
- data/spec/TestData/needUnlock.xlsx +0 -0
- data/spec/TestData/needlock.xlsx +0 -0
- data/spec/TestData/roywang.pfx +0 -0
- data/spec/TestData/word.jpg +0 -0
- data/spec/calculate/calculate_spec.rb +29 -0
- data/spec/cells_cloud30/auto_filter_controller_spec.rb +211 -0
- data/spec/cells_cloud30/batch_controller_spec.rb +113 -0
- data/spec/cells_cloud30/cells_controller_spec.rb +627 -0
- data/spec/cells_cloud30/cells_status_controller_spec.rb +43 -0
- data/spec/cells_cloud30/chart_area_controller_spec.rb +58 -0
- data/spec/cells_cloud30/charts_controller_spec.rb +227 -0
- data/spec/cells_cloud30/conditional_formattings_controller_spec.rb +149 -0
- data/spec/cells_cloud30/conversion30_spec.rb +1112 -0
- data/spec/cells_cloud30/data_processing_controller_spec.rb +97 -0
- data/spec/cells_cloud30/hypelinks_controller_spec.rb +104 -0
- data/spec/cells_cloud30/light_cells_spec.rb +1059 -0
- data/spec/cells_cloud30/list_objects_controller_spec.rb +225 -0
- data/spec/cells_cloud30/ole_objects_controller_spec.rb +108 -0
- data/spec/cells_cloud30/page_breaks_controller_spec.rb +163 -0
- data/spec/cells_cloud30/page_setup_controller_spec.rb +149 -0
- data/spec/cells_cloud30/pictures_controller_spec.rb +106 -0
- data/spec/cells_cloud30/pivot_tables_controller_spec.rb +312 -0
- data/spec/cells_cloud30/properties_controller_spec.rb +89 -0
- data/spec/cells_cloud30/ranges_controller_spec.rb +227 -0
- data/spec/cells_cloud30/shapes_controller_spec.rb +139 -0
- data/spec/cells_cloud30/sparkline_groups_controller_spec.rb +104 -0
- data/spec/cells_cloud30/text_processing_controller_spec.rb +67 -0
- data/spec/cells_cloud30/workbook_controller_spec.rb +519 -0
- data/spec/cells_cloud30/worksheet_controller_spec.rb +609 -0
- data/spec/cells_cloud30/worksheet_validations_controller_spec.rb +104 -0
- data/spec/cells_cloud30/xml_controller_spec.rb +48 -0
- data/spec/data_processing/conversion_spec.rb +428 -0
- data/spec/data_processing/import_data_spec.rb +24 -0
- data/spec/data_processing/merger_spec.rb +28 -0
- data/spec/data_processing/protection_spec.rb +29 -0
- data/spec/data_processing/splitter_spec.rb +47 -0
- data/spec/data_processing/transform_spec.rb +43 -0
- data/spec/dynabic/file_controller_spec.rb +60 -0
- data/spec/dynabic/folder_controller_spec.rb +88 -0
- data/spec/dynabic/storage_controller_spec.rb +73 -0
- data/spec/management/management_spec.rb +111 -0
- data/spec/search2_replace/replacer_spec.rb +46 -0
- data/spec/search2_replace/searcher_spec.rb +131 -0
- data/spec/spec_helper.rb +134 -0
- data/spec/text_processing/add_text_spec.rb +45 -0
- data/spec/text_processing/convert_text_spec.rb +37 -0
- data/spec/text_processing/extract_text_spec.rb +37 -0
- data/spec/text_processing/remove_characters_spec.rb +53 -0
- data/spec/text_processing/split_text_spec.rb +21 -0
- data/spec/text_processing/trim_spreadsheet_spec.rb +29 -0
- data/spec/text_processing/update_word_case_spec.rb +37 -0
- metadata +95 -3
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
--------------------------------------------------------------------------------------------------------------------
|
|
3
|
+
<copyright company="Aspose" file="TrimCharacterInRemoteSpreadsheet_request.rb.cs">
|
|
4
|
+
Copyright (c) 2026 Aspose.Cells Cloud
|
|
5
|
+
</copyright>
|
|
6
|
+
<summary>
|
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
9
|
+
in the Software without restriction, including without limitation the rights
|
|
10
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
12
|
+
furnished to do so, subject to the following conditions:
|
|
13
|
+
|
|
14
|
+
The above copyright notice and this permission notice shall be included in all
|
|
15
|
+
copies or substantial portions of the Software.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
|
+
SOFTWARE.
|
|
24
|
+
</summary>
|
|
25
|
+
--------------------------------------------------------------------------------------------------------------------
|
|
26
|
+
=end
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
require "uri"
|
|
30
|
+
|
|
31
|
+
module AsposeCellsCloud
|
|
32
|
+
class TrimCharacterInRemoteSpreadsheetRequest
|
|
33
|
+
|
|
34
|
+
attr_accessor :name
|
|
35
|
+
attr_accessor :worksheet
|
|
36
|
+
attr_accessor :range
|
|
37
|
+
attr_accessor :trim_content
|
|
38
|
+
attr_accessor :trim_leading
|
|
39
|
+
attr_accessor :trim_trailing
|
|
40
|
+
attr_accessor :trim_space_between_word_to1
|
|
41
|
+
attr_accessor :trim_non_breaking_spaces
|
|
42
|
+
attr_accessor :remove_extra_line_breaks
|
|
43
|
+
attr_accessor :remove_all_line_breaks
|
|
44
|
+
attr_accessor :folder
|
|
45
|
+
attr_accessor :storage_name
|
|
46
|
+
attr_accessor :region
|
|
47
|
+
attr_accessor :password
|
|
48
|
+
|
|
49
|
+
def initialize(attributes = {})
|
|
50
|
+
return unless attributes.is_a?(Hash)
|
|
51
|
+
|
|
52
|
+
# convert string to symbol for hash key
|
|
53
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
54
|
+
|
|
55
|
+
if attributes.has_key?(:'name')
|
|
56
|
+
self.name = attributes[:'name']
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
if attributes.has_key?(:'worksheet')
|
|
60
|
+
self.worksheet = attributes[:'worksheet']
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
if attributes.has_key?(:'range')
|
|
64
|
+
self.range = attributes[:'range']
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
if attributes.has_key?(:'trimContent')
|
|
68
|
+
self.trim_content = attributes[:'trimContent']
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
if attributes.has_key?(:'trimLeading')
|
|
72
|
+
self.trim_leading = attributes[:'trimLeading']
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
if attributes.has_key?(:'trimTrailing')
|
|
76
|
+
self.trim_trailing = attributes[:'trimTrailing']
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
if attributes.has_key?(:'trimSpaceBetweenWordTo1')
|
|
80
|
+
self.trim_space_between_word_to1 = attributes[:'trimSpaceBetweenWordTo1']
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
if attributes.has_key?(:'trimNonBreakingSpaces')
|
|
84
|
+
self.trim_non_breaking_spaces = attributes[:'trimNonBreakingSpaces']
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
if attributes.has_key?(:'removeExtraLineBreaks')
|
|
88
|
+
self.remove_extra_line_breaks = attributes[:'removeExtraLineBreaks']
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
if attributes.has_key?(:'removeAllLineBreaks')
|
|
92
|
+
self.remove_all_line_breaks = attributes[:'removeAllLineBreaks']
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
if attributes.has_key?(:'folder')
|
|
96
|
+
self.folder = attributes[:'folder']
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
if attributes.has_key?(:'storageName')
|
|
100
|
+
self.storage_name = attributes[:'storageName']
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
if attributes.has_key?(:'region')
|
|
104
|
+
self.region = attributes[:'region']
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
if attributes.has_key?(:'password')
|
|
108
|
+
self.password = attributes[:'password']
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
end
|
|
112
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
113
|
+
def self.attribute_map
|
|
114
|
+
{
|
|
115
|
+
:'name' => :'name',
|
|
116
|
+
:'worksheet' => :'worksheet',
|
|
117
|
+
:'range' => :'range',
|
|
118
|
+
:'trim_content' => :'trimContent',
|
|
119
|
+
:'trim_leading' => :'trimLeading',
|
|
120
|
+
:'trim_trailing' => :'trimTrailing',
|
|
121
|
+
:'trim_space_between_word_to1' => :'trimSpaceBetweenWordTo1',
|
|
122
|
+
:'trim_non_breaking_spaces' => :'trimNonBreakingSpaces',
|
|
123
|
+
:'remove_extra_line_breaks' => :'removeExtraLineBreaks',
|
|
124
|
+
:'remove_all_line_breaks' => :'removeAllLineBreaks',
|
|
125
|
+
:'folder' => :'folder',
|
|
126
|
+
:'storage_name' => :'storageName',
|
|
127
|
+
:'region' => :'region',
|
|
128
|
+
:'password' => :'password'
|
|
129
|
+
}
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
# Attribute type mapping.
|
|
133
|
+
def self.swagger_types
|
|
134
|
+
{
|
|
135
|
+
:'name' => :'String',
|
|
136
|
+
:'worksheet' => :'String',
|
|
137
|
+
:'range' => :'String',
|
|
138
|
+
:'trim_content' => :'String',
|
|
139
|
+
:'trim_leading' => :'BOOLEAN',
|
|
140
|
+
:'trim_trailing' => :'BOOLEAN',
|
|
141
|
+
:'trim_space_between_word_to1' => :'BOOLEAN',
|
|
142
|
+
:'trim_non_breaking_spaces' => :'BOOLEAN',
|
|
143
|
+
:'remove_extra_line_breaks' => :'BOOLEAN',
|
|
144
|
+
:'remove_all_line_breaks' => :'BOOLEAN',
|
|
145
|
+
:'folder' => :'String',
|
|
146
|
+
:'storage_name' => :'String',
|
|
147
|
+
:'region' => :'String',
|
|
148
|
+
:'password' => :'String'
|
|
149
|
+
}
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
def create_http_request(api_client,opts = {})
|
|
153
|
+
if api_client.config.debugging
|
|
154
|
+
api_client.config.logger.debug "Calling API: CellsApi.trim_character_in_remote_spreadsheet ..."
|
|
155
|
+
end
|
|
156
|
+
api_client.request_token_if_needed
|
|
157
|
+
# verify the required parameter 'name' is set
|
|
158
|
+
if api_client.config.client_side_validation && name.nil?
|
|
159
|
+
fail ArgumentError, "Missing the required parameter 'name' when calling CellsApi.trim_character_in_remote_spreadsheet "
|
|
160
|
+
end
|
|
161
|
+
# verify the required parameter 'worksheet' is set
|
|
162
|
+
if api_client.config.client_side_validation && worksheet.nil?
|
|
163
|
+
fail ArgumentError, "Missing the required parameter 'worksheet' when calling CellsApi.trim_character_in_remote_spreadsheet "
|
|
164
|
+
end
|
|
165
|
+
# verify the required parameter 'range' is set
|
|
166
|
+
if api_client.config.client_side_validation && range.nil?
|
|
167
|
+
fail ArgumentError, "Missing the required parameter 'range' when calling CellsApi.trim_character_in_remote_spreadsheet "
|
|
168
|
+
end
|
|
169
|
+
|
|
170
|
+
# resource path
|
|
171
|
+
local_var_path = "v4.0/cells/{name}/worksheets/{worksheet}/range/{range}/content/trim".sub('{' + 'name' + '}', name.to_s).sub('{' + 'worksheet' + '}', worksheet.to_s).sub('{' + 'range' + '}', range.to_s)
|
|
172
|
+
# query parameters
|
|
173
|
+
query_params = {}
|
|
174
|
+
query_params[:'trimContent'] = self.trim_content if !self.trim_content.nil?
|
|
175
|
+
query_params[:'trimLeading'] = self.trim_leading if !self.trim_leading.nil?
|
|
176
|
+
query_params[:'trimTrailing'] = self.trim_trailing if !self.trim_trailing.nil?
|
|
177
|
+
query_params[:'trimSpaceBetweenWordTo1'] = self.trim_space_between_word_to1 if !self.trim_space_between_word_to1.nil?
|
|
178
|
+
query_params[:'trimNonBreakingSpaces'] = self.trim_non_breaking_spaces if !self.trim_non_breaking_spaces.nil?
|
|
179
|
+
query_params[:'removeExtraLineBreaks'] = self.remove_extra_line_breaks if !self.remove_extra_line_breaks.nil?
|
|
180
|
+
query_params[:'removeAllLineBreaks'] = self.remove_all_line_breaks if !self.remove_all_line_breaks.nil?
|
|
181
|
+
query_params[:'folder'] = self.folder if !self.folder.nil?
|
|
182
|
+
query_params[:'storageName'] = self.storage_name if !self.storage_name.nil?
|
|
183
|
+
query_params[:'region'] = self.region if !self.region.nil?
|
|
184
|
+
query_params[:'password'] = self.password if !self.password.nil?
|
|
185
|
+
|
|
186
|
+
# header parameters
|
|
187
|
+
header_params = {}
|
|
188
|
+
# HTTP header 'Accept' (if needed)
|
|
189
|
+
header_params['Accept'] = api_client.select_header_accept(['application/json'])
|
|
190
|
+
# HTTP header 'Content-Type'
|
|
191
|
+
header_params['Content-Type'] = api_client.select_header_content_type(['application/json'])
|
|
192
|
+
|
|
193
|
+
# form parameters
|
|
194
|
+
form_params = {}
|
|
195
|
+
post_body = nil
|
|
196
|
+
|
|
197
|
+
#auth_names = []
|
|
198
|
+
auth_names = ['JWT']
|
|
199
|
+
data, status_code, headers = api_client.call_api(:PUT, local_var_path,
|
|
200
|
+
:header_params => header_params,
|
|
201
|
+
:query_params => query_params,
|
|
202
|
+
:form_params => form_params,
|
|
203
|
+
:body => post_body,
|
|
204
|
+
:auth_names => auth_names,
|
|
205
|
+
:return_type => 'CellsCloudResponse')
|
|
206
|
+
if api_client.config.debugging
|
|
207
|
+
api_client.config.logger.debug "API called: Specification.Name>Api.trim_character_in_remote_spreadsheet\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
208
|
+
end
|
|
209
|
+
return data, status_code, headers
|
|
210
|
+
end
|
|
211
|
+
end
|
|
212
|
+
end
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
--------------------------------------------------------------------------------------------------------------------
|
|
3
|
+
<copyright company="Aspose" file="UpdateWordCaseInRemoteSpreadsheet_request.rb.cs">
|
|
4
|
+
Copyright (c) 2026 Aspose.Cells Cloud
|
|
5
|
+
</copyright>
|
|
6
|
+
<summary>
|
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
9
|
+
in the Software without restriction, including without limitation the rights
|
|
10
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
12
|
+
furnished to do so, subject to the following conditions:
|
|
13
|
+
|
|
14
|
+
The above copyright notice and this permission notice shall be included in all
|
|
15
|
+
copies or substantial portions of the Software.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
23
|
+
SOFTWARE.
|
|
24
|
+
</summary>
|
|
25
|
+
--------------------------------------------------------------------------------------------------------------------
|
|
26
|
+
=end
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
require "uri"
|
|
30
|
+
|
|
31
|
+
module AsposeCellsCloud
|
|
32
|
+
class UpdateWordCaseInRemoteSpreadsheetRequest
|
|
33
|
+
|
|
34
|
+
attr_accessor :name
|
|
35
|
+
attr_accessor :worksheet
|
|
36
|
+
attr_accessor :range
|
|
37
|
+
attr_accessor :word_case_type
|
|
38
|
+
attr_accessor :folder
|
|
39
|
+
attr_accessor :storage_name
|
|
40
|
+
attr_accessor :region
|
|
41
|
+
attr_accessor :password
|
|
42
|
+
|
|
43
|
+
def initialize(attributes = {})
|
|
44
|
+
return unless attributes.is_a?(Hash)
|
|
45
|
+
|
|
46
|
+
# convert string to symbol for hash key
|
|
47
|
+
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
48
|
+
|
|
49
|
+
if attributes.has_key?(:'name')
|
|
50
|
+
self.name = attributes[:'name']
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
if attributes.has_key?(:'worksheet')
|
|
54
|
+
self.worksheet = attributes[:'worksheet']
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
if attributes.has_key?(:'range')
|
|
58
|
+
self.range = attributes[:'range']
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
if attributes.has_key?(:'wordCaseType')
|
|
62
|
+
self.word_case_type = attributes[:'wordCaseType']
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
if attributes.has_key?(:'folder')
|
|
66
|
+
self.folder = attributes[:'folder']
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
if attributes.has_key?(:'storageName')
|
|
70
|
+
self.storage_name = attributes[:'storageName']
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
if attributes.has_key?(:'region')
|
|
74
|
+
self.region = attributes[:'region']
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
if attributes.has_key?(:'password')
|
|
78
|
+
self.password = attributes[:'password']
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
end
|
|
82
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
83
|
+
def self.attribute_map
|
|
84
|
+
{
|
|
85
|
+
:'name' => :'name',
|
|
86
|
+
:'worksheet' => :'worksheet',
|
|
87
|
+
:'range' => :'range',
|
|
88
|
+
:'word_case_type' => :'wordCaseType',
|
|
89
|
+
:'folder' => :'folder',
|
|
90
|
+
:'storage_name' => :'storageName',
|
|
91
|
+
:'region' => :'region',
|
|
92
|
+
:'password' => :'password'
|
|
93
|
+
}
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
# Attribute type mapping.
|
|
97
|
+
def self.swagger_types
|
|
98
|
+
{
|
|
99
|
+
:'name' => :'String',
|
|
100
|
+
:'worksheet' => :'String',
|
|
101
|
+
:'range' => :'String',
|
|
102
|
+
:'word_case_type' => :'String',
|
|
103
|
+
:'folder' => :'String',
|
|
104
|
+
:'storage_name' => :'String',
|
|
105
|
+
:'region' => :'String',
|
|
106
|
+
:'password' => :'String'
|
|
107
|
+
}
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
def create_http_request(api_client,opts = {})
|
|
111
|
+
if api_client.config.debugging
|
|
112
|
+
api_client.config.logger.debug "Calling API: CellsApi.update_word_case_in_remote_spreadsheet ..."
|
|
113
|
+
end
|
|
114
|
+
api_client.request_token_if_needed
|
|
115
|
+
# verify the required parameter 'name' is set
|
|
116
|
+
if api_client.config.client_side_validation && name.nil?
|
|
117
|
+
fail ArgumentError, "Missing the required parameter 'name' when calling CellsApi.update_word_case_in_remote_spreadsheet "
|
|
118
|
+
end
|
|
119
|
+
# verify the required parameter 'worksheet' is set
|
|
120
|
+
if api_client.config.client_side_validation && worksheet.nil?
|
|
121
|
+
fail ArgumentError, "Missing the required parameter 'worksheet' when calling CellsApi.update_word_case_in_remote_spreadsheet "
|
|
122
|
+
end
|
|
123
|
+
# verify the required parameter 'range' is set
|
|
124
|
+
if api_client.config.client_side_validation && range.nil?
|
|
125
|
+
fail ArgumentError, "Missing the required parameter 'range' when calling CellsApi.update_word_case_in_remote_spreadsheet "
|
|
126
|
+
end
|
|
127
|
+
# verify the required parameter 'word_case_type' is set
|
|
128
|
+
if api_client.config.client_side_validation && word_case_type.nil?
|
|
129
|
+
fail ArgumentError, "Missing the required parameter 'word_case_type' when calling CellsApi.update_word_case_in_remote_spreadsheet "
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
# resource path
|
|
133
|
+
local_var_path = "v4.0/cells/{name}/worksheets/{worksheet}/range/{range}/content/wordcase".sub('{' + 'name' + '}', name.to_s).sub('{' + 'worksheet' + '}', worksheet.to_s).sub('{' + 'range' + '}', range.to_s)
|
|
134
|
+
# query parameters
|
|
135
|
+
query_params = {}
|
|
136
|
+
query_params[:'wordCaseType'] = self.word_case_type if !self.word_case_type.nil?
|
|
137
|
+
query_params[:'folder'] = self.folder if !self.folder.nil?
|
|
138
|
+
query_params[:'storageName'] = self.storage_name if !self.storage_name.nil?
|
|
139
|
+
query_params[:'region'] = self.region if !self.region.nil?
|
|
140
|
+
query_params[:'password'] = self.password if !self.password.nil?
|
|
141
|
+
|
|
142
|
+
# header parameters
|
|
143
|
+
header_params = {}
|
|
144
|
+
# HTTP header 'Accept' (if needed)
|
|
145
|
+
header_params['Accept'] = api_client.select_header_accept(['application/json'])
|
|
146
|
+
# HTTP header 'Content-Type'
|
|
147
|
+
header_params['Content-Type'] = api_client.select_header_content_type(['application/json'])
|
|
148
|
+
|
|
149
|
+
# form parameters
|
|
150
|
+
form_params = {}
|
|
151
|
+
post_body = nil
|
|
152
|
+
|
|
153
|
+
#auth_names = []
|
|
154
|
+
auth_names = ['JWT']
|
|
155
|
+
data, status_code, headers = api_client.call_api(:PUT, local_var_path,
|
|
156
|
+
:header_params => header_params,
|
|
157
|
+
:query_params => query_params,
|
|
158
|
+
:form_params => form_params,
|
|
159
|
+
:body => post_body,
|
|
160
|
+
:auth_names => auth_names,
|
|
161
|
+
:return_type => 'CellsCloudResponse')
|
|
162
|
+
if api_client.config.debugging
|
|
163
|
+
api_client.config.logger.debug "API called: Specification.Name>Api.update_word_case_in_remote_spreadsheet\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
|
164
|
+
end
|
|
165
|
+
return data, status_code, headers
|
|
166
|
+
end
|
|
167
|
+
end
|
|
168
|
+
end
|
data/lib/aspose_cells_cloud.rb
CHANGED
|
@@ -58,6 +58,7 @@ require 'aspose_cells_cloud/models/text_item'
|
|
|
58
58
|
require 'aspose_cells_cloud/models/dbf_save_options'
|
|
59
59
|
require 'aspose_cells_cloud/models/dif_save_options'
|
|
60
60
|
require 'aspose_cells_cloud/models/docx_save_options'
|
|
61
|
+
require 'aspose_cells_cloud/models/ebook_save_options'
|
|
61
62
|
require 'aspose_cells_cloud/models/html_save_options'
|
|
62
63
|
require 'aspose_cells_cloud/models/image_save_options'
|
|
63
64
|
require 'aspose_cells_cloud/models/json_save_options'
|
|
@@ -83,6 +84,7 @@ require 'aspose_cells_cloud/models/broken_links_response'
|
|
|
83
84
|
require 'aspose_cells_cloud/models/cells_cloud_file_info_response'
|
|
84
85
|
require 'aspose_cells_cloud/models/cells_cloud_public_key_response'
|
|
85
86
|
require 'aspose_cells_cloud/models/cells_cloud_response'
|
|
87
|
+
require 'aspose_cells_cloud/models/formula_calculate_result_response'
|
|
86
88
|
require 'aspose_cells_cloud/models/save_response'
|
|
87
89
|
require 'aspose_cells_cloud/models/search_response'
|
|
88
90
|
require 'aspose_cells_cloud/models/image_or_print_options'
|
|
@@ -487,8 +489,11 @@ require 'aspose_cells_cloud/models/worksheet_data_statistics'
|
|
|
487
489
|
require 'aspose_cells_cloud/requests/decompose_user_task_request'
|
|
488
490
|
require 'aspose_cells_cloud/requests/translate_spreadsheet_request'
|
|
489
491
|
require 'aspose_cells_cloud/requests/translate_text_file_request'
|
|
492
|
+
require 'aspose_cells_cloud/requests/report_ai_analysis_request'
|
|
493
|
+
require 'aspose_cells_cloud/requests/summarize_spreadsheet_request'
|
|
490
494
|
require 'aspose_cells_cloud/requests/aggregate_cells_by_color_request'
|
|
491
495
|
require 'aspose_cells_cloud/requests/math_calculate_request'
|
|
496
|
+
require 'aspose_cells_cloud/requests/calculation_formula_request'
|
|
492
497
|
require 'aspose_cells_cloud/requests/post_access_token_request'
|
|
493
498
|
require 'aspose_cells_cloud/requests/get_aspose_cells_cloud_status_request'
|
|
494
499
|
require 'aspose_cells_cloud/requests/check_cloud_service_health_request'
|
|
@@ -543,9 +548,12 @@ require 'aspose_cells_cloud/requests/get_merged_cells_in_remoted_worksheet_reque
|
|
|
543
548
|
require 'aspose_cells_cloud/requests/get_merged_cells_in_worksheet_request'
|
|
544
549
|
require 'aspose_cells_cloud/requests/accept_all_revisions_request'
|
|
545
550
|
require 'aspose_cells_cloud/requests/accept_all_revisions_in_remote_spreadsheet_request'
|
|
551
|
+
require 'aspose_cells_cloud/requests/get_spreadsheet_structure_request'
|
|
552
|
+
require 'aspose_cells_cloud/requests/get_structure_in_remote_spreadsheet_request'
|
|
546
553
|
require 'aspose_cells_cloud/requests/protect_spreadsheet_request'
|
|
547
554
|
require 'aspose_cells_cloud/requests/unprotect_spreadsheet_request'
|
|
548
555
|
require 'aspose_cells_cloud/requests/spreadsheet_digitalsignature_request'
|
|
556
|
+
require 'aspose_cells_cloud/requests/smart_marker_template_request'
|
|
549
557
|
require 'aspose_cells_cloud/requests/search_all_text_items_in_remote_spreadsheet_request'
|
|
550
558
|
require 'aspose_cells_cloud/requests/search_spreadsheet_all_text_items_request'
|
|
551
559
|
require 'aspose_cells_cloud/requests/search_spreadsheet_content_request'
|
|
@@ -562,13 +570,20 @@ require 'aspose_cells_cloud/requests/search_broken_links_in_remote_worksheet_req
|
|
|
562
570
|
require 'aspose_cells_cloud/requests/search_broken_links_in_remote_range_request'
|
|
563
571
|
require 'aspose_cells_cloud/requests/spec_request'
|
|
564
572
|
require 'aspose_cells_cloud/requests/codegen_spec_request'
|
|
573
|
+
require 'aspose_cells_cloud/requests/trim_character_in_remote_spreadsheet_request'
|
|
565
574
|
require 'aspose_cells_cloud/requests/trim_character_request'
|
|
566
575
|
require 'aspose_cells_cloud/requests/update_word_case_request'
|
|
576
|
+
require 'aspose_cells_cloud/requests/update_word_case_in_remote_spreadsheet_request'
|
|
567
577
|
require 'aspose_cells_cloud/requests/remove_characters_request'
|
|
578
|
+
require 'aspose_cells_cloud/requests/remove_characters_in_remote_spreadsheet_request'
|
|
568
579
|
require 'aspose_cells_cloud/requests/remove_characters_by_position_request'
|
|
580
|
+
require 'aspose_cells_cloud/requests/remove_characters_by_position_in_remote_spreadsheet_request'
|
|
569
581
|
require 'aspose_cells_cloud/requests/remove_duplicate_substrings_request'
|
|
582
|
+
require 'aspose_cells_cloud/requests/remove_duplicate_substrings_in_remote_spreadsheet_request'
|
|
570
583
|
require 'aspose_cells_cloud/requests/add_text_request'
|
|
584
|
+
require 'aspose_cells_cloud/requests/add_text_in_remote_spreadsheet_request'
|
|
571
585
|
require 'aspose_cells_cloud/requests/convert_text_request'
|
|
586
|
+
require 'aspose_cells_cloud/requests/convert_text_in_remote_spreadsheet_request'
|
|
572
587
|
require 'aspose_cells_cloud/requests/extract_text_request'
|
|
573
588
|
require 'aspose_cells_cloud/requests/split_text_request'
|
|
574
589
|
require 'aspose_cells_cloud/requests/remove_spreadsheet_blank_rows_request'
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
1,1,1,1,1,1,1
|
|
2
|
+
2,2,2,2,2,2,2
|
|
3
|
+
3,3,3,3,3,3,3
|
|
4
|
+
4,4,4,4,4,4,4
|
|
5
|
+
5,5,5,5,5,5,5
|
|
6
|
+
6,6,6,6,6,6,6
|
|
7
|
+
7,7,7,7,7,7,7
|
|
8
|
+
8,8,8,8,8,8,8
|
|
9
|
+
1,1,1,1,1,1,1
|
|
10
|
+
10,10,10,10,,10,10
|
|
11
|
+
11,11,,11,11,11,11
|
|
12
|
+
12,12,12,12,12,12,12
|
|
13
|
+
13,13,,13,13,13,13
|
|
14
|
+
14,14,14,14,14,14,14
|
|
15
|
+
15,15,15,15,15,15,15
|
|
16
|
+
16,16,16,16,16,16,16
|
|
17
|
+
17,17,17,17,17,17,17
|
|
18
|
+
18,18,18,18,18,18,18
|
|
19
|
+
19,19,19,19,19,19,19
|
|
20
|
+
1,1,1,1,1,1,1
|
|
21
|
+
7,7,7,7,7,7,7
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<ReportData><Person><Name>a</Name><Age>1</Age></Person><Person><Name>b</Name><Age>2</Age></Person></ReportData>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<ImportBatchDataOption><DestinationWorksheet>Master Sheet</DestinationWorksheet><IsInsert>false</IsInsert><BatchData><CellValue><rowIndex>0</rowIndex><columnIndex>1</columnIndex><type>string</type><value>Abengoa Solar - TEST</value></CellValue><CellValue><rowIndex>1</rowIndex><columnIndex>1</columnIndex><type>string</type><value>ISO 9001:2008</value></CellValue><CellValue><rowIndex>2</rowIndex><columnIndex>1</columnIndex><type>string</type><value>7.3, 7.3.1, 7.3.2, 7.3.3, 7.3.4, 7.3.5, 7.3.6, 7.3.7, 7.5.2, 7.5.4, 7.5.5, 7.6</value></CellValue><CellValue><rowIndex>3</rowIndex><columnIndex>1</columnIndex><type>string</type><value>03-Feb-2016</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>3</columnIndex><type>string</type><value>Business Strategy & Marketing</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>4</columnIndex><type>string</type><value>Continuous Improvement, Corrective & Preventive Action</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>5</columnIndex><type>string</type><value>Customer Satisfaction and Objectives</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>6</columnIndex><type>string</type><value>Design</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>7</columnIndex><type>string</type><value>Document & Records Control</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>8</columnIndex><type>string</type><value>Exclusions</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>9</columnIndex><type>string</type><value>Exclusions - AZ</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>10</columnIndex><type>string</type><value>Exclusions - OAK</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>11</columnIndex><type>string</type><value>Exclusions - Victorville</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>12</columnIndex><type>string</type><value>Internal Auditing</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>13</columnIndex><type>string</type><value>Manaement Review</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>14</columnIndex><type>string</type><value>Management</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>15</columnIndex><type>string</type><value>Platinum Contractual/Surveillance</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>16</columnIndex><type>string</type><value>Project Delivery</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>17</columnIndex><type>string</type><value>Project Management</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>18</columnIndex><type>string</type><value>Purchasing</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>19</columnIndex><type>string</type><value>Receiving</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>20</columnIndex><type>string</type><value>Sales & contract review</value></CellValue><CellValue><rowIndex>4</rowIndex><columnIndex>21</columnIndex><type>string</type><value>Training</value></CellValue><CellValue><rowIndex>5</rowIndex><columnIndex>0</columnIndex><type>string</type><value>14-Feb-2011</value></CellValue><CellValue><rowIndex>5</rowIndex><columnIndex>1</columnIndex><type>string</type><value>IA</value></CellValue><CellValue><rowIndex>5</rowIndex><columnIndex>2</columnIndex><type>string</type><value /></CellValue><CellValue><rowIndex>6</rowIndex><columnIndex>0</columnIndex><type>string</type><value>12-Jan-2012</value></CellValue><CellValue><rowIndex>6</rowIndex><columnIndex>1</columnIndex><type>string</type><value>S</value></CellValue><CellValue><rowIndex>6</rowIndex><columnIndex>2</columnIndex><type>string</type><value /></CellValue><CellValue><rowIndex>6</rowIndex><columnIndex>4</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>6</rowIndex><columnIndex>5</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>6</rowIndex><columnIndex>6</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>6</rowIndex><columnIndex>7</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>6</rowIndex><columnIndex>8</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>0</columnIndex><type>string</type><value>01-Oct-2013</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>1</columnIndex><type>string</type><value>RC</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>2</columnIndex><type>string</type><value>5.00</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>3</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>10</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>11</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>12</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>14</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>15</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>16</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>17</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>18</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>19</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>20</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>7</rowIndex><columnIndex>21</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>8</rowIndex><columnIndex>0</columnIndex><type>string</type><value>30-Jan-2014</value></CellValue><CellValue><rowIndex>8</rowIndex><columnIndex>1</columnIndex><type>string</type><value>RC</value></CellValue><CellValue><rowIndex>8</rowIndex><columnIndex>2</columnIndex><type>string</type><value>5.00</value></CellValue><CellValue><rowIndex>9</rowIndex><columnIndex>0</columnIndex><type>string</type><value>15-Apr-2014</value></CellValue><CellValue><rowIndex>9</rowIndex><columnIndex>1</columnIndex><type>string</type><value>S</value></CellValue><CellValue><rowIndex>9</rowIndex><columnIndex>2</columnIndex><type>string</type><value>4.00</value></CellValue><CellValue><rowIndex>10</rowIndex><columnIndex>0</columnIndex><type>string</type><value>09-Jun-2014</value></CellValue><CellValue><rowIndex>10</rowIndex><columnIndex>1</columnIndex><type>string</type><value>S</value></CellValue><CellValue><rowIndex>10</rowIndex><columnIndex>2</columnIndex><type>string</type><value /></CellValue><CellValue><rowIndex>11</rowIndex><columnIndex>0</columnIndex><type>string</type><value>25-Jun-2014</value></CellValue><CellValue><rowIndex>11</rowIndex><columnIndex>1</columnIndex><type>string</type><value>S</value></CellValue><CellValue><rowIndex>11</rowIndex><columnIndex>2</columnIndex><type>string</type><value>4.00</value></CellValue><CellValue><rowIndex>12</rowIndex><columnIndex>0</columnIndex><type>string</type><value>17-Sep-2014</value></CellValue><CellValue><rowIndex>12</rowIndex><columnIndex>1</columnIndex><type>string</type><value>IA</value></CellValue><CellValue><rowIndex>12</rowIndex><columnIndex>2</columnIndex><type>string</type><value>3.00</value></CellValue><CellValue><rowIndex>13</rowIndex><columnIndex>0</columnIndex><type>string</type><value>01-Oct-2014</value></CellValue><CellValue><rowIndex>13</rowIndex><columnIndex>1</columnIndex><type>string</type><value>RC</value></CellValue><CellValue><rowIndex>13</rowIndex><columnIndex>2</columnIndex><type>string</type><value>5.00</value></CellValue><CellValue><rowIndex>14</rowIndex><columnIndex>0</columnIndex><type>string</type><value>14-Oct-2014</value></CellValue><CellValue><rowIndex>14</rowIndex><columnIndex>1</columnIndex><type>string</type><value>IA</value></CellValue><CellValue><rowIndex>14</rowIndex><columnIndex>2</columnIndex><type>string</type><value>3.00</value></CellValue><CellValue><rowIndex>14</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>15</rowIndex><columnIndex>0</columnIndex><type>string</type><value>15-Oct-2014</value></CellValue><CellValue><rowIndex>15</rowIndex><columnIndex>1</columnIndex><type>string</type><value>SP</value></CellValue><CellValue><rowIndex>15</rowIndex><columnIndex>2</columnIndex><type>string</type><value /></CellValue><CellValue><rowIndex>16</rowIndex><columnIndex>0</columnIndex><type>string</type><value>01-Dec-2014</value></CellValue><CellValue><rowIndex>16</rowIndex><columnIndex>1</columnIndex><type>string</type><value>RC</value></CellValue><CellValue><rowIndex>16</rowIndex><columnIndex>2</columnIndex><type>string</type><value>5.00</value></CellValue><CellValue><rowIndex>16</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>17</rowIndex><columnIndex>0</columnIndex><type>string</type><value>03-Feb-2015</value></CellValue><CellValue><rowIndex>17</rowIndex><columnIndex>1</columnIndex><type>string</type><value>S</value></CellValue><CellValue><rowIndex>17</rowIndex><columnIndex>2</columnIndex><type>string</type><value>4.00</value></CellValue><CellValue><rowIndex>17</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>18</rowIndex><columnIndex>0</columnIndex><type>string</type><value>19-Feb-2015</value></CellValue><CellValue><rowIndex>18</rowIndex><columnIndex>1</columnIndex><type>string</type><value>S</value></CellValue><CellValue><rowIndex>18</rowIndex><columnIndex>2</columnIndex><type>string</type><value>4.00</value></CellValue><CellValue><rowIndex>18</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>19</rowIndex><columnIndex>0</columnIndex><type>string</type><value>12-Mar-2015</value></CellValue><CellValue><rowIndex>19</rowIndex><columnIndex>1</columnIndex><type>string</type><value>S</value></CellValue><CellValue><rowIndex>19</rowIndex><columnIndex>2</columnIndex><type>string</type><value>4.00</value></CellValue><CellValue><rowIndex>20</rowIndex><columnIndex>0</columnIndex><type>string</type><value>09-Jun-2015</value></CellValue><CellValue><rowIndex>20</rowIndex><columnIndex>1</columnIndex><type>string</type><value>RC</value></CellValue><CellValue><rowIndex>20</rowIndex><columnIndex>2</columnIndex><type>string</type><value>5.00</value></CellValue><CellValue><rowIndex>22</rowIndex><columnIndex>0</columnIndex><type>string</type><value>Surveillance/Contract Requirement</value></CellValue><CellValue><rowIndex>23</rowIndex><columnIndex>0</columnIndex><type>string</type><value>4 Quality management system</value></CellValue><CellValue><rowIndex>24</rowIndex><columnIndex>0</columnIndex><type>string</type><value>4.1 General requirements</value></CellValue><CellValue><rowIndex>25</rowIndex><columnIndex>0</columnIndex><type>string</type><value>4.2 Documentation requirements</value></CellValue><CellValue><rowIndex>26</rowIndex><columnIndex>0</columnIndex><type>string</type><value>4.2.1 General</value></CellValue><CellValue><rowIndex>27</rowIndex><columnIndex>0</columnIndex><type>string</type><value>4.2.2 Quality manual</value></CellValue><CellValue><rowIndex>28</rowIndex><columnIndex>0</columnIndex><type>string</type><value>4.2.3 Control of documents</value></CellValue><CellValue><rowIndex>29</rowIndex><columnIndex>0</columnIndex><type>string</type><value>4.2.4 Control of quality records</value></CellValue><CellValue><rowIndex>30</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5 Management responsibility</value></CellValue><CellValue><rowIndex>31</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.1 Management commitment</value></CellValue><CellValue><rowIndex>32</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.2 Customer focus</value></CellValue><CellValue><rowIndex>33</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.3 Quality policy</value></CellValue><CellValue><rowIndex>34</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.4 Planning</value></CellValue><CellValue><rowIndex>35</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.4.1 Quality objectives</value></CellValue><CellValue><rowIndex>35</rowIndex><columnIndex>1</columnIndex><type>string</type><value>M</value></CellValue><CellValue><rowIndex>35</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>36</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.4.2 Quality management system planning</value></CellValue><CellValue><rowIndex>37</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.5 Responsibility, authority and communication</value></CellValue><CellValue><rowIndex>38</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.5.1 Responsibility and authority</value></CellValue><CellValue><rowIndex>39</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.5.2 Management representative</value></CellValue><CellValue><rowIndex>40</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.5.3 Internal communication</value></CellValue><CellValue><rowIndex>41</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.6 Management review</value></CellValue><CellValue><rowIndex>41</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>42</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.6.1 General</value></CellValue><CellValue><rowIndex>42</rowIndex><columnIndex>1</columnIndex><type>string</type><value>M</value></CellValue><CellValue><rowIndex>42</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>43</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.6.2 Review input</value></CellValue><CellValue><rowIndex>43</rowIndex><columnIndex>1</columnIndex><type>string</type><value>M</value></CellValue><CellValue><rowIndex>43</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>44</rowIndex><columnIndex>0</columnIndex><type>string</type><value>5.6.3 Review output</value></CellValue><CellValue><rowIndex>44</rowIndex><columnIndex>1</columnIndex><type>string</type><value>M</value></CellValue><CellValue><rowIndex>44</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>45</rowIndex><columnIndex>0</columnIndex><type>string</type><value>6 Resource management</value></CellValue><CellValue><rowIndex>46</rowIndex><columnIndex>0</columnIndex><type>string</type><value>6.1 Provision of resources</value></CellValue><CellValue><rowIndex>47</rowIndex><columnIndex>0</columnIndex><type>string</type><value>6.2 Human resources</value></CellValue><CellValue><rowIndex>48</rowIndex><columnIndex>0</columnIndex><type>string</type><value>6.2.1 General</value></CellValue><CellValue><rowIndex>49</rowIndex><columnIndex>0</columnIndex><type>string</type><value>6.2.2 Competence, training and awareness</value></CellValue><CellValue><rowIndex>50</rowIndex><columnIndex>0</columnIndex><type>string</type><value>6.3 Infrastructure</value></CellValue><CellValue><rowIndex>51</rowIndex><columnIndex>0</columnIndex><type>string</type><value>6.4 Work environment</value></CellValue><CellValue><rowIndex>52</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7 Product realization</value></CellValue><CellValue><rowIndex>53</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.1 Planning of product realization</value></CellValue><CellValue><rowIndex>54</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.2 Customer-related processes</value></CellValue><CellValue><rowIndex>55</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.2.1 Determination of requirements related to the product</value></CellValue><CellValue><rowIndex>56</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.2.2 Review of requirements related to the product</value></CellValue><CellValue><rowIndex>57</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.2.3 Customer communication</value></CellValue><CellValue><rowIndex>58</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.3 Design and development</value></CellValue><CellValue><rowIndex>59</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.3.1 Design and development planning</value></CellValue><CellValue><rowIndex>60</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.3.2 Design and development inputs</value></CellValue><CellValue><rowIndex>61</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.3.3 Design and development outputs</value></CellValue><CellValue><rowIndex>62</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.3.4 Design and development review</value></CellValue><CellValue><rowIndex>63</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.3.5 Design and development verification</value></CellValue><CellValue><rowIndex>64</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.3.6 Design and development validation</value></CellValue><CellValue><rowIndex>65</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.3.7 Control of design and development changes</value></CellValue><CellValue><rowIndex>66</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.4 Purchasing</value></CellValue><CellValue><rowIndex>67</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.4.1 Purchasing processes</value></CellValue><CellValue><rowIndex>68</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.4.2 Purchasing information</value></CellValue><CellValue><rowIndex>69</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.4.3 Verification of purchased product</value></CellValue><CellValue><rowIndex>70</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.5 Production and service provision</value></CellValue><CellValue><rowIndex>71</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.5.1 Control of production and service provision</value></CellValue><CellValue><rowIndex>71</rowIndex><columnIndex>1</columnIndex><type>string</type><value>M</value></CellValue><CellValue><rowIndex>72</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.5.2 Validation of processes for production and service provision</value></CellValue><CellValue><rowIndex>73</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.5.3 Identification and traceability</value></CellValue><CellValue><rowIndex>74</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.5.4 Customer property</value></CellValue><CellValue><rowIndex>75</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.5.5 Preservation of product</value></CellValue><CellValue><rowIndex>76</rowIndex><columnIndex>0</columnIndex><type>string</type><value>7.6 Control of monitoring and measuring equipment</value></CellValue><CellValue><rowIndex>77</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8 Measurement, analysis and improvement</value></CellValue><CellValue><rowIndex>78</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8.1 General</value></CellValue><CellValue><rowIndex>79</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8.2 Measurement and monitoring</value></CellValue><CellValue><rowIndex>80</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8.2.1 Customer satisfaction</value></CellValue><CellValue><rowIndex>80</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>81</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8.2.2 Internal audit</value></CellValue><CellValue><rowIndex>81</rowIndex><columnIndex>1</columnIndex><type>string</type><value>M</value></CellValue><CellValue><rowIndex>82</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8.2.3 Monitoring and measurement of processes</value></CellValue><CellValue><rowIndex>83</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8.2.4 Monitoring and measurement of product</value></CellValue><CellValue><rowIndex>84</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8.3 Control of nonconforming product</value></CellValue><CellValue><rowIndex>85</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8.4 Analysis of data</value></CellValue><CellValue><rowIndex>85</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>86</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8.5.1 Continual improvement</value></CellValue><CellValue><rowIndex>86</rowIndex><columnIndex>13</columnIndex><type>string</type><value>X</value></CellValue><CellValue><rowIndex>87</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8.5.2 Corrective action</value></CellValue><CellValue><rowIndex>87</rowIndex><columnIndex>1</columnIndex><type>string</type><value>M</value></CellValue><CellValue><rowIndex>88</rowIndex><columnIndex>0</columnIndex><type>string</type><value>8.5.3 Preventive action</value></CellValue></BatchData></ImportBatchDataOption>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|