Class: TencentCloud::Vod::V20240718::Client

Inherits:
Common::AbstractClient
  • Object
show all
Defined in:
lib/v20240718/client.rb

Instance Method Summary collapse

Constructor Details

#initialize(credential, region, profile = nil) ⇒ Client

Returns a new instance of Client.



24
25
26
27
28
29
# File 'lib/v20240718/client.rb', line 24

def initialize(credential, region, profile = nil)
    api_version = '2024-07-18'
    api_endpoint = 'vod.tencentcloudapi.com'
    sdk_version = 'VOD_' + File.read(File.expand_path('../VERSION', __dir__)).strip
    super(credential, region, api_version, api_endpoint, sdk_version, profile)
end

Instance Method Details

#CreateIncrementalMigrationStrategy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::vod::V20240718::CreateIncrementalMigrationStrategyResponse`

Parameters:

  • request:

    Request instance for CreateIncrementalMigrationStrategy.



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/v20240718/client.rb', line 37

def CreateIncrementalMigrationStrategy(request)
  body = send_request('CreateIncrementalMigrationStrategy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateIncrementalMigrationStrategyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateStorage(request) ⇒ Object

@rtype: :class:‘Tencentcloud::vod::V20240718::CreateStorageResponse`

Parameters:

  • request:

    Request instance for CreateStorage.



66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/v20240718/client.rb', line 66

def CreateStorage(request)
  body = send_request('CreateStorage', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateStorageResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#CreateStorageCredentials(request) ⇒ Object

@rtype: :class:‘Tencentcloud::vod::V20240718::CreateStorageCredentialsResponse`

Parameters:

  • request:

    Request instance for CreateStorageCredentials.



90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'lib/v20240718/client.rb', line 90

def CreateStorageCredentials(request)
  body = send_request('CreateStorageCredentials', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = CreateStorageCredentialsResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DeleteIncrementalMigrationStrategy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::vod::V20240718::DeleteIncrementalMigrationStrategyResponse`

Parameters:

  • request:

    Request instance for DeleteIncrementalMigrationStrategy.



114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/v20240718/client.rb', line 114

def DeleteIncrementalMigrationStrategy(request)
  body = send_request('DeleteIncrementalMigrationStrategy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DeleteIncrementalMigrationStrategyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeIncrementalMigrationStrategyInfos(request) ⇒ Object

@rtype: :class:‘Tencentcloud::vod::V20240718::DescribeIncrementalMigrationStrategyInfosResponse`

Parameters:

  • request:

    Request instance for DescribeIncrementalMigrationStrategyInfos.



138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# File 'lib/v20240718/client.rb', line 138

def DescribeIncrementalMigrationStrategyInfos(request)
  body = send_request('DescribeIncrementalMigrationStrategyInfos', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeIncrementalMigrationStrategyInfosResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#DescribeStorage(request) ⇒ Object

@rtype: :class:‘Tencentcloud::vod::V20240718::DescribeStorageResponse`

Parameters:

  • request:

    Request instance for DescribeStorage.



165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# File 'lib/v20240718/client.rb', line 165

def DescribeStorage(request)
  body = send_request('DescribeStorage', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = DescribeStorageResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end

#ModifyIncrementalMigrationStrategy(request) ⇒ Object

@rtype: :class:‘Tencentcloud::vod::V20240718::ModifyIncrementalMigrationStrategyResponse`

Parameters:

  • request:

    Request instance for ModifyIncrementalMigrationStrategy.



189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# File 'lib/v20240718/client.rb', line 189

def ModifyIncrementalMigrationStrategy(request)
  body = send_request('ModifyIncrementalMigrationStrategy', request.serialize)
  response = JSON.parse(body)
  if response['Response'].key?('Error') == false
    model = ModifyIncrementalMigrationStrategyResponse.new
    model.deserialize(response['Response'])
    model
  else
    code = response['Response']['Error']['Code']
    message = response['Response']['Error']['Message']
    reqid = response['Response']['RequestId']
    raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
  end
rescue TencentCloud::Common::TencentCloudSDKException => e
  raise e
rescue StandardError => e
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end