aws-sdk-devopsagent 1.7.0 → 1.9.0

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.
@@ -55,7 +55,7 @@ module Aws::DevOpsAgent
55
55
  autoload :Endpoints, 'aws-sdk-devopsagent/endpoints'
56
56
  autoload :EventStreams, 'aws-sdk-devopsagent/event_streams'
57
57
 
58
- GEM_VERSION = '1.7.0'
58
+ GEM_VERSION = '1.9.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -110,6 +110,40 @@ module Aws
110
110
  ) -> _CreateAgentSpaceResponseSuccess
111
111
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentSpaceResponseSuccess
112
112
 
113
+ interface _CreateAssetResponseSuccess
114
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAssetResponse]
115
+ def asset: () -> Types::Asset
116
+ end
117
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#create_asset-instance_method
118
+ def create_asset: (
119
+ agent_space_id: ::String,
120
+ asset_type: ::String,
121
+ ?metadata: {
122
+ },
123
+ content: Params::asset_content,
124
+ ?client_token: ::String
125
+ ) -> _CreateAssetResponseSuccess
126
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetResponseSuccess
127
+
128
+ interface _CreateAssetFileResponseSuccess
129
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAssetFileResponse]
130
+ def file: () -> Types::AssetFile
131
+ end
132
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#create_asset_file-instance_method
133
+ def create_asset_file: (
134
+ agent_space_id: ::String,
135
+ asset_id: ::String,
136
+ path: ::String,
137
+ content: {
138
+ bytes: ::String?,
139
+ text: ::String?
140
+ },
141
+ ?metadata: {
142
+ },
143
+ ?client_token: ::String
144
+ ) -> _CreateAssetFileResponseSuccess
145
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAssetFileResponseSuccess
146
+
113
147
  interface _CreateBacklogTaskResponseSuccess
114
148
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateBacklogTaskResponse]
115
149
  def task: () -> Types::Task
@@ -155,6 +189,8 @@ module Aws
155
189
  def resource_configuration_id: () -> ::String
156
190
  def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
157
191
  def certificate_expiry_time: () -> ::Time
192
+ def dns_resolution: () -> ("PUBLIC" | "IN_VPC")
193
+ def failure_message: () -> ::String
158
194
  def tags: () -> ::Hash[::String, ::String]
159
195
  end
160
196
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#create_private_connection-instance_method
@@ -169,7 +205,8 @@ module Aws
169
205
  ip_address_type: ("IPV4" | "IPV6" | "DUAL_STACK")?,
170
206
  ipv4_addresses_per_eni: ::Integer?,
171
207
  port_ranges: Array[::String]?,
172
- certificate: ::String?
208
+ certificate: ::String?,
209
+ dns_resolution: ("PUBLIC" | "IN_VPC")?
173
210
  }?,
174
211
  self_managed: {
175
212
  resource_configuration_id: ::String,
@@ -180,6 +217,26 @@ module Aws
180
217
  ) -> _CreatePrivateConnectionResponseSuccess
181
218
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePrivateConnectionResponseSuccess
182
219
 
220
+ interface _CreateTriggerResponseSuccess
221
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTriggerResponse]
222
+ def trigger: () -> Types::Trigger
223
+ end
224
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#create_trigger-instance_method
225
+ def create_trigger: (
226
+ agent_space_id: ::String,
227
+ type: ::String,
228
+ condition: {
229
+ schedule: {
230
+ expression: ::String
231
+ }?
232
+ },
233
+ action: {
234
+ },
235
+ ?status: ::String,
236
+ ?client_token: ::String
237
+ ) -> _CreateTriggerResponseSuccess
238
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTriggerResponseSuccess
239
+
183
240
  interface _DeleteAgentSpaceResponseSuccess
184
241
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAgentSpaceOutput]
185
242
  end
@@ -189,6 +246,27 @@ module Aws
189
246
  ) -> _DeleteAgentSpaceResponseSuccess
190
247
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAgentSpaceResponseSuccess
191
248
 
249
+ interface _DeleteAssetResponseSuccess
250
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAssetResponse]
251
+ end
252
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#delete_asset-instance_method
253
+ def delete_asset: (
254
+ agent_space_id: ::String,
255
+ asset_id: ::String
256
+ ) -> _DeleteAssetResponseSuccess
257
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetResponseSuccess
258
+
259
+ interface _DeleteAssetFileResponseSuccess
260
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAssetFileResponse]
261
+ end
262
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#delete_asset_file-instance_method
263
+ def delete_asset_file: (
264
+ agent_space_id: ::String,
265
+ asset_id: ::String,
266
+ path: ::String
267
+ ) -> _DeleteAssetFileResponseSuccess
268
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAssetFileResponseSuccess
269
+
192
270
  interface _DeletePrivateConnectionResponseSuccess
193
271
  include ::Seahorse::Client::_ResponseSuccess[Types::DeletePrivateConnectionOutput]
194
272
  def name: () -> ::String
@@ -200,6 +278,16 @@ module Aws
200
278
  ) -> _DeletePrivateConnectionResponseSuccess
201
279
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePrivateConnectionResponseSuccess
202
280
 
281
+ interface _DeleteTriggerResponseSuccess
282
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTriggerResponse]
283
+ end
284
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#delete_trigger-instance_method
285
+ def delete_trigger: (
286
+ agent_space_id: ::String,
287
+ trigger_id: ::String
288
+ ) -> _DeleteTriggerResponseSuccess
289
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTriggerResponseSuccess
290
+
203
291
  interface _DeregisterServiceResponseSuccess
204
292
  include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterServiceOutput]
205
293
  end
@@ -219,6 +307,8 @@ module Aws
219
307
  def resource_configuration_id: () -> ::String
220
308
  def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
221
309
  def certificate_expiry_time: () -> ::Time
310
+ def dns_resolution: () -> ("PUBLIC" | "IN_VPC")
311
+ def failure_message: () -> ::String
222
312
  def tags: () -> ::Hash[::String, ::String]
223
313
  end
224
314
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#describe_private_connection-instance_method
@@ -247,6 +337,7 @@ module Aws
247
337
  interface _EnableOperatorAppResponseSuccess
248
338
  include ::Seahorse::Client::_ResponseSuccess[Types::EnableOperatorAppOutput]
249
339
  def agent_space_id: () -> ::String
340
+ def operator_app_url: () -> ::String
250
341
  def iam: () -> Types::IamAuthConfiguration
251
342
  def idc: () -> Types::IdcAuthConfiguration
252
343
  def idp: () -> Types::IdpAuthConfiguration
@@ -289,6 +380,44 @@ module Aws
289
380
  ) -> _GetAgentSpaceResponseSuccess
290
381
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAgentSpaceResponseSuccess
291
382
 
383
+ interface _GetAssetResponseSuccess
384
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetResponse]
385
+ def asset: () -> Types::Asset
386
+ end
387
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#get_asset-instance_method
388
+ def get_asset: (
389
+ agent_space_id: ::String,
390
+ asset_id: ::String,
391
+ ?asset_version: ::Integer
392
+ ) -> _GetAssetResponseSuccess
393
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetResponseSuccess
394
+
395
+ interface _GetAssetContentResponseSuccess
396
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetContentResponse]
397
+ def content: () -> Types::AssetZipContent
398
+ def version: () -> ::Integer
399
+ end
400
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#get_asset_content-instance_method
401
+ def get_asset_content: (
402
+ agent_space_id: ::String,
403
+ asset_id: ::String,
404
+ ?asset_version: ::Integer
405
+ ) -> _GetAssetContentResponseSuccess
406
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetContentResponseSuccess
407
+
408
+ interface _GetAssetFileResponseSuccess
409
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAssetFileResponse]
410
+ def file: () -> Types::AssetFile
411
+ end
412
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#get_asset_file-instance_method
413
+ def get_asset_file: (
414
+ agent_space_id: ::String,
415
+ asset_id: ::String,
416
+ path: ::String,
417
+ ?asset_version: ::Integer
418
+ ) -> _GetAssetFileResponseSuccess
419
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAssetFileResponseSuccess
420
+
292
421
  interface _GetAssociationResponseSuccess
293
422
  include ::Seahorse::Client::_ResponseSuccess[Types::GetAssociationOutput]
294
423
  def association: () -> Types::Association
@@ -313,6 +442,7 @@ module Aws
313
442
 
314
443
  interface _GetOperatorAppResponseSuccess
315
444
  include ::Seahorse::Client::_ResponseSuccess[Types::GetOperatorAppOutput]
445
+ def operator_app_url: () -> ::String
316
446
  def iam: () -> Types::IamAuthConfiguration
317
447
  def idc: () -> Types::IdcAuthConfiguration
318
448
  def idp: () -> Types::IdpAuthConfiguration
@@ -346,6 +476,17 @@ module Aws
346
476
  ) -> _GetServiceResponseSuccess
347
477
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceResponseSuccess
348
478
 
479
+ interface _GetTriggerResponseSuccess
480
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTriggerResponse]
481
+ def trigger: () -> Types::Trigger
482
+ end
483
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#get_trigger-instance_method
484
+ def get_trigger: (
485
+ agent_space_id: ::String,
486
+ trigger_id: ::String
487
+ ) -> _GetTriggerResponseSuccess
488
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTriggerResponseSuccess
489
+
349
490
  interface _ListAgentSpacesResponseSuccess
350
491
  include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentSpacesOutput]
351
492
  def next_token: () -> ::String
@@ -358,6 +499,63 @@ module Aws
358
499
  ) -> _ListAgentSpacesResponseSuccess
359
500
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAgentSpacesResponseSuccess
360
501
 
502
+ interface _ListAssetFilesResponseSuccess
503
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetFilesResponse]
504
+ def items: () -> ::Array[Types::AssetFileSummary]
505
+ def next_token: () -> ::String
506
+ end
507
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#list_asset_files-instance_method
508
+ def list_asset_files: (
509
+ agent_space_id: ::String,
510
+ asset_id: ::String,
511
+ ?asset_version: ::Integer,
512
+ ?next_token: ::String,
513
+ ?max_results: ::Integer
514
+ ) -> _ListAssetFilesResponseSuccess
515
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetFilesResponseSuccess
516
+
517
+ interface _ListAssetTypesResponseSuccess
518
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetTypesResponse]
519
+ def items: () -> ::Array[Types::AssetTypeSummary]
520
+ def next_token: () -> ::String
521
+ end
522
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#list_asset_types-instance_method
523
+ def list_asset_types: (
524
+ ?next_token: ::String,
525
+ ?max_results: ::Integer
526
+ ) -> _ListAssetTypesResponseSuccess
527
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetTypesResponseSuccess
528
+
529
+ interface _ListAssetVersionsResponseSuccess
530
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetVersionsResponse]
531
+ def items: () -> ::Array[Types::AssetVersionMetadata]
532
+ def next_token: () -> ::String
533
+ end
534
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#list_asset_versions-instance_method
535
+ def list_asset_versions: (
536
+ agent_space_id: ::String,
537
+ asset_id: ::String,
538
+ ?max_results: ::Integer,
539
+ ?next_token: ::String
540
+ ) -> _ListAssetVersionsResponseSuccess
541
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetVersionsResponseSuccess
542
+
543
+ interface _ListAssetsResponseSuccess
544
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListAssetsResponse]
545
+ def items: () -> ::Array[Types::Asset]
546
+ def next_token: () -> ::String
547
+ end
548
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#list_assets-instance_method
549
+ def list_assets: (
550
+ agent_space_id: ::String,
551
+ ?asset_type: ::String,
552
+ ?updated_after: ::Time,
553
+ ?updated_before: ::Time,
554
+ ?next_token: ::String,
555
+ ?max_results: ::Integer
556
+ ) -> _ListAssetsResponseSuccess
557
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssetsResponseSuccess
558
+
361
559
  interface _ListAssociationsResponseSuccess
362
560
  include ::Seahorse::Client::_ResponseSuccess[Types::ListAssociationsOutput]
363
561
  def next_token: () -> ::String
@@ -384,7 +582,7 @@ module Aws
384
582
  created_after: ::Time?,
385
583
  created_before: ::Time?,
386
584
  priority: Array[("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL")]?,
387
- status: Array[("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED")]?,
585
+ status: Array[("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED")]?,
388
586
  task_type: Array[("INVESTIGATION" | "EVALUATION")]?,
389
587
  primary_task_id: ::String?
390
588
  },
@@ -517,6 +715,20 @@ module Aws
517
715
  ) -> _ListTagsForResourceResponseSuccess
518
716
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
519
717
 
718
+ interface _ListTriggersResponseSuccess
719
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTriggersResponse]
720
+ def items: () -> ::Array[Types::Trigger]
721
+ def next_token: () -> ::String
722
+ end
723
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#list_triggers-instance_method
724
+ def list_triggers: (
725
+ agent_space_id: ::String,
726
+ ?status: ::String,
727
+ ?next_token: ::String,
728
+ ?max_results: ::Integer
729
+ ) -> _ListTriggersResponseSuccess
730
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTriggersResponseSuccess
731
+
520
732
  interface _ListWebhooksResponseSuccess
521
733
  include ::Seahorse::Client::_ResponseSuccess[Types::ListWebhooksOutput]
522
734
  def webhooks: () -> ::Array[Types::Webhook]
@@ -624,13 +836,16 @@ module Aws
624
836
  authorization_config: {
625
837
  region: ::String,
626
838
  service: ::String,
627
- role_arn: ::String,
839
+ role_arn: ::String?,
840
+ mcp_role_arn: ::String?,
628
841
  custom_headers: Hash[::String, ::String]?
629
842
  }
630
843
  }?
631
844
  },
632
845
  ?kms_key_arn: ::String,
633
846
  ?private_connection_name: ::String,
847
+ ?target_url_private_connection_name: ::String,
848
+ ?exchange_url_private_connection_name: ::String,
634
849
  ?name: ::String,
635
850
  ?tags: Hash[::String, ::String]
636
851
  ) -> _RegisterServiceResponseSuccess
@@ -650,7 +865,8 @@ module Aws
650
865
  last_message: ::String?,
651
866
  user_action_response: ::String?
652
867
  },
653
- ?user_id: ::String
868
+ ?user_id: ::String,
869
+ ?asset_ids: Array[::String]
654
870
  ) ?{ (*untyped) -> void } -> _SendMessageResponseSuccess
655
871
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _SendMessageResponseSuccess
656
872
 
@@ -687,6 +903,40 @@ module Aws
687
903
  ) -> _UpdateAgentSpaceResponseSuccess
688
904
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgentSpaceResponseSuccess
689
905
 
906
+ interface _UpdateAssetResponseSuccess
907
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAssetResponse]
908
+ def asset: () -> Types::Asset
909
+ end
910
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#update_asset-instance_method
911
+ def update_asset: (
912
+ agent_space_id: ::String,
913
+ asset_id: ::String,
914
+ ?metadata: {
915
+ },
916
+ ?content: Params::asset_content,
917
+ ?client_token: ::String
918
+ ) -> _UpdateAssetResponseSuccess
919
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssetResponseSuccess
920
+
921
+ interface _UpdateAssetFileResponseSuccess
922
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAssetFileResponse]
923
+ def file: () -> Types::AssetFile
924
+ end
925
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#update_asset_file-instance_method
926
+ def update_asset_file: (
927
+ agent_space_id: ::String,
928
+ asset_id: ::String,
929
+ path: ::String,
930
+ ?content: {
931
+ bytes: ::String?,
932
+ text: ::String?
933
+ },
934
+ ?metadata: {
935
+ },
936
+ ?client_token: ::String
937
+ ) -> _UpdateAssetFileResponseSuccess
938
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssetFileResponseSuccess
939
+
690
940
  interface _UpdateAssociationResponseSuccess
691
941
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAssociationOutput]
692
942
  def association: () -> Types::Association
@@ -708,7 +958,7 @@ module Aws
708
958
  def update_backlog_task: (
709
959
  agent_space_id: ::String,
710
960
  task_id: ::String,
711
- ?task_status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED"),
961
+ ?task_status: ("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED"),
712
962
  ?client_token: ::String
713
963
  ) -> _UpdateBacklogTaskResponseSuccess
714
964
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBacklogTaskResponseSuccess
@@ -750,6 +1000,8 @@ module Aws
750
1000
  def resource_configuration_id: () -> ::String
751
1001
  def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_IN_PROGRESS" | "DELETE_FAILED")
752
1002
  def certificate_expiry_time: () -> ::Time
1003
+ def dns_resolution: () -> ("PUBLIC" | "IN_VPC")
1004
+ def failure_message: () -> ::String
753
1005
  end
754
1006
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#update_private_connection_certificate-instance_method
755
1007
  def update_private_connection_certificate: (
@@ -772,6 +1024,19 @@ module Aws
772
1024
  ) -> _UpdateRecommendationResponseSuccess
773
1025
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRecommendationResponseSuccess
774
1026
 
1027
+ interface _UpdateTriggerResponseSuccess
1028
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTriggerResponse]
1029
+ def trigger: () -> Types::Trigger
1030
+ end
1031
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#update_trigger-instance_method
1032
+ def update_trigger: (
1033
+ agent_space_id: ::String,
1034
+ trigger_id: ::String,
1035
+ ?status: ::String,
1036
+ ?client_token: ::String
1037
+ ) -> _UpdateTriggerResponseSuccess
1038
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTriggerResponseSuccess
1039
+
775
1040
  interface _ValidateAwsAssociationsResponseSuccess
776
1041
  include ::Seahorse::Client::_ResponseSuccess[Types::ValidateAwsAssociationsOutput]
777
1042
  end
data/sig/params.rbs CHANGED
@@ -93,6 +93,23 @@ module Aws
93
93
  }?
94
94
  }
95
95
 
96
+ type asset_file_content = {
97
+ path: ::String,
98
+ body: {
99
+ bytes: ::String?,
100
+ text: ::String?
101
+ },
102
+ metadata: {
103
+ }?
104
+ }
105
+
106
+ type asset_content = {
107
+ file: Params::asset_file_content?,
108
+ zip: {
109
+ zip_file: ::String
110
+ }?
111
+ }
112
+
96
113
  type mcp_server_o_auth_client_credentials_config = {
97
114
  client_name: ::String?,
98
115
  client_id: ::String,