Class: Schematic::Dataexports::Client
- Inherits:
-
Object
- Object
- Schematic::Dataexports::Client
- Defined in:
- lib/schematic/dataexports/client.rb
Instance Method Summary collapse
- #create_data_export(request_options: {}, **params) ⇒ Schematic::Dataexports::Types::CreateDataExportResponse
- #get_data_export(request_options: {}, **params) ⇒ Schematic::Dataexports::Types::GetDataExportResponse
- #get_data_export_artifact(request_options: {}, **params) ⇒ untyped
- #initialize(client:) ⇒ void constructor
- #list_data_exports(request_options: {}, **params) ⇒ Schematic::Dataexports::Types::ListDataExportsResponse
Constructor Details
#initialize(client:) ⇒ void
9 10 11 |
# File 'lib/schematic/dataexports/client.rb', line 9 def initialize(client:) @client = client end |
Instance Method Details
#create_data_export(request_options: {}, **params) ⇒ Schematic::Dataexports::Types::CreateDataExportResponse
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/schematic/dataexports/client.rb', line 66 def create_data_export(request_options: {}, **params) params = Schematic::Internal::Types::Utils.normalize_keys(params) request = Schematic::Internal::JSON::Request.new( base_url: [:base_url], method: "POST", path: "data-exports", body: Schematic::Dataexports::Types::CreateDataExportRequestBody.new(params).to_h, request_options: ) begin response = @client.send(request) rescue Net::HTTPRequestTimeout raise Schematic::Errors::TimeoutError end code = response.code.to_i if code.between?(200, 299) Schematic::Dataexports::Types::CreateDataExportResponse.load(response.body) else error_class = Schematic::Errors::ResponseError.subclass_for_code(code) raise error_class.new(response.body, code: code) end end |
#get_data_export(request_options: {}, **params) ⇒ Schematic::Dataexports::Types::GetDataExportResponse
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'lib/schematic/dataexports/client.rb', line 99 def get_data_export(request_options: {}, **params) params = Schematic::Internal::Types::Utils.normalize_keys(params) request = Schematic::Internal::JSON::Request.new( base_url: [:base_url], method: "GET", path: "data-exports/#{URI.encode_uri_component(params[:data_export_id].to_s)}", request_options: ) begin response = @client.send(request) rescue Net::HTTPRequestTimeout raise Schematic::Errors::TimeoutError end code = response.code.to_i if code.between?(200, 299) Schematic::Dataexports::Types::GetDataExportResponse.load(response.body) else error_class = Schematic::Errors::ResponseError.subclass_for_code(code) raise error_class.new(response.body, code: code) end end |
#get_data_export_artifact(request_options: {}, **params) ⇒ untyped
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/schematic/dataexports/client.rb', line 131 def get_data_export_artifact(request_options: {}, **params) params = Schematic::Internal::Types::Utils.normalize_keys(params) request = Schematic::Internal::JSON::Request.new( base_url: [:base_url], method: "GET", path: "data-exports/#{URI.encode_uri_component(params[:data_export_id].to_s)}/artifact", request_options: ) begin response = @client.send(request) rescue Net::HTTPRequestTimeout raise Schematic::Errors::TimeoutError end code = response.code.to_i return if code.between?(200, 299) error_class = Schematic::Errors::ResponseError.subclass_for_code(code) raise error_class.new(response.body, code: code) end |
#list_data_exports(request_options: {}, **params) ⇒ Schematic::Dataexports::Types::ListDataExportsResponse
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/schematic/dataexports/client.rb', line 26 def list_data_exports(request_options: {}, **params) params = Schematic::Internal::Types::Utils.normalize_keys(params) query_param_names = %i[export_type status limit offset] query_params = {} query_params["export_type"] = params[:export_type] if params.key?(:export_type) query_params["status"] = params[:status] if params.key?(:status) query_params["limit"] = params[:limit] if params.key?(:limit) query_params["offset"] = params[:offset] if params.key?(:offset) params.except(*query_param_names) request = Schematic::Internal::JSON::Request.new( base_url: [:base_url], method: "GET", path: "data-exports", query: query_params, request_options: ) begin response = @client.send(request) rescue Net::HTTPRequestTimeout raise Schematic::Errors::TimeoutError end code = response.code.to_i if code.between?(200, 299) Schematic::Dataexports::Types::ListDataExportsResponse.load(response.body) else error_class = Schematic::Errors::ResponseError.subclass_for_code(code) raise error_class.new(response.body, code: code) end end |