aws-sdk-devopsagent 1.8.0 → 1.10.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.8.0'
58
+ GEM_VERSION = '1.10.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -90,7 +90,10 @@ module Aws
90
90
  def associate_service: (
91
91
  agent_space_id: ::String,
92
92
  service_id: ::String,
93
- configuration: Params::service_configuration
93
+ configuration: Params::service_configuration,
94
+ ?capabilities: Hash[("RELEASE_READINESS_REVIEW" | "RELEASE_READINESS_REVIEW_AUTOMATED_TESTING"), {
95
+ enabled: bool?
96
+ }]
94
97
  ) -> _AssociateServiceResponseSuccess
95
98
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateServiceResponseSuccess
96
99
 
@@ -158,7 +161,7 @@ module Aws
158
161
  reference_url: ::String,
159
162
  association_id: ::String
160
163
  },
161
- task_type: ("INVESTIGATION" | "EVALUATION"),
164
+ task_type: ("INVESTIGATION" | "EVALUATION" | "RELEASE_READINESS_REVIEW" | "RELEASE_TESTING"),
162
165
  title: ::String,
163
166
  ?description: ::String,
164
167
  priority: ("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL"),
@@ -217,6 +220,26 @@ module Aws
217
220
  ) -> _CreatePrivateConnectionResponseSuccess
218
221
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePrivateConnectionResponseSuccess
219
222
 
223
+ interface _CreateTriggerResponseSuccess
224
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateTriggerResponse]
225
+ def trigger: () -> Types::Trigger
226
+ end
227
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#create_trigger-instance_method
228
+ def create_trigger: (
229
+ agent_space_id: ::String,
230
+ type: ::String,
231
+ condition: {
232
+ schedule: {
233
+ expression: ::String
234
+ }?
235
+ },
236
+ action: {
237
+ },
238
+ ?status: ::String,
239
+ ?client_token: ::String
240
+ ) -> _CreateTriggerResponseSuccess
241
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTriggerResponseSuccess
242
+
220
243
  interface _DeleteAgentSpaceResponseSuccess
221
244
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAgentSpaceOutput]
222
245
  end
@@ -258,6 +281,16 @@ module Aws
258
281
  ) -> _DeletePrivateConnectionResponseSuccess
259
282
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePrivateConnectionResponseSuccess
260
283
 
284
+ interface _DeleteTriggerResponseSuccess
285
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTriggerResponse]
286
+ end
287
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#delete_trigger-instance_method
288
+ def delete_trigger: (
289
+ agent_space_id: ::String,
290
+ trigger_id: ::String
291
+ ) -> _DeleteTriggerResponseSuccess
292
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTriggerResponseSuccess
293
+
261
294
  interface _DeregisterServiceResponseSuccess
262
295
  include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterServiceOutput]
263
296
  end
@@ -446,6 +479,17 @@ module Aws
446
479
  ) -> _GetServiceResponseSuccess
447
480
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetServiceResponseSuccess
448
481
 
482
+ interface _GetTriggerResponseSuccess
483
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTriggerResponse]
484
+ def trigger: () -> Types::Trigger
485
+ end
486
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#get_trigger-instance_method
487
+ def get_trigger: (
488
+ agent_space_id: ::String,
489
+ trigger_id: ::String
490
+ ) -> _GetTriggerResponseSuccess
491
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTriggerResponseSuccess
492
+
449
493
  interface _ListAgentSpacesResponseSuccess
450
494
  include ::Seahorse::Client::_ResponseSuccess[Types::ListAgentSpacesOutput]
451
495
  def next_token: () -> ::String
@@ -542,7 +586,7 @@ module Aws
542
586
  created_before: ::Time?,
543
587
  priority: Array[("CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL")]?,
544
588
  status: Array[("PENDING_TRIAGE" | "LINKED" | "PENDING_START" | "IN_PROGRESS" | "PENDING_CUSTOMER_APPROVAL" | "COMPLETED" | "FAILED" | "TIMED_OUT" | "CANCELED" | "SKIPPED")]?,
545
- task_type: Array[("INVESTIGATION" | "EVALUATION")]?,
589
+ task_type: Array[("INVESTIGATION" | "EVALUATION" | "RELEASE_READINESS_REVIEW" | "RELEASE_TESTING")]?,
546
590
  primary_task_id: ::String?
547
591
  },
548
592
  ?limit: ::Integer,
@@ -660,7 +704,7 @@ module Aws
660
704
  def list_services: (
661
705
  ?max_results: ::Integer,
662
706
  ?next_token: ::String,
663
- ?filter_service_type: ("github" | "slack" | "azure" | "azuredevops" | "dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4")
707
+ ?filter_service_type: ("github" | "slack" | "azure" | "azuredevops" | "dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4" | "remoteagent" | "remoteagentsigv4")
664
708
  ) -> _ListServicesResponseSuccess
665
709
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServicesResponseSuccess
666
710
 
@@ -674,6 +718,20 @@ module Aws
674
718
  ) -> _ListTagsForResourceResponseSuccess
675
719
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
676
720
 
721
+ interface _ListTriggersResponseSuccess
722
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTriggersResponse]
723
+ def items: () -> ::Array[Types::Trigger]
724
+ def next_token: () -> ::String
725
+ end
726
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#list_triggers-instance_method
727
+ def list_triggers: (
728
+ agent_space_id: ::String,
729
+ ?status: ::String,
730
+ ?next_token: ::String,
731
+ ?max_results: ::Integer
732
+ ) -> _ListTriggersResponseSuccess
733
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTriggersResponseSuccess
734
+
677
735
  interface _ListWebhooksResponseSuccess
678
736
  include ::Seahorse::Client::_ResponseSuccess[Types::ListWebhooksOutput]
679
737
  def webhooks: () -> ::Array[Types::Webhook]
@@ -694,7 +752,7 @@ module Aws
694
752
  end
695
753
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#register_service-instance_method
696
754
  def register_service: (
697
- service: ("dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4"),
755
+ service: ("dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4" | "remoteagent" | "remoteagentsigv4"),
698
756
  service_details: {
699
757
  dynatrace: {
700
758
  account_urn: ::String,
@@ -785,6 +843,41 @@ module Aws
785
843
  mcp_role_arn: ::String?,
786
844
  custom_headers: Hash[::String, ::String]?
787
845
  }
846
+ }?,
847
+ remoteagent: {
848
+ name: ::String,
849
+ endpoint: ::String,
850
+ description: ::String?,
851
+ authorization_config: {
852
+ api_key: {
853
+ api_key_name: ::String,
854
+ api_key_value: ::String,
855
+ api_key_header: ::String
856
+ }?,
857
+ o_auth_client_credentials: {
858
+ client_name: ::String?,
859
+ client_id: ::String,
860
+ exchange_parameters: Hash[::String, ::String]?,
861
+ client_secret: ::String,
862
+ exchange_url: ::String,
863
+ scopes: Array[::String]?
864
+ }?,
865
+ bearer_token: {
866
+ token_name: ::String,
867
+ token_value: ::String,
868
+ authorization_header: ::String?
869
+ }?
870
+ }
871
+ }?,
872
+ remoteagentsigv4: {
873
+ name: ::String,
874
+ endpoint: ::String,
875
+ description: ::String?,
876
+ authorization_config: {
877
+ region: ::String,
878
+ service: ::String,
879
+ role_arn: ::String?
880
+ }
788
881
  }?
789
882
  },
790
883
  ?kms_key_arn: ::String,
@@ -891,7 +984,10 @@ module Aws
891
984
  def update_association: (
892
985
  agent_space_id: ::String,
893
986
  association_id: ::String,
894
- configuration: Params::service_configuration
987
+ configuration: Params::service_configuration,
988
+ ?capabilities: Hash[("RELEASE_READINESS_REVIEW" | "RELEASE_READINESS_REVIEW_AUTOMATED_TESTING"), {
989
+ enabled: bool?
990
+ }]
895
991
  ) -> _UpdateAssociationResponseSuccess
896
992
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssociationResponseSuccess
897
993
 
@@ -969,6 +1065,19 @@ module Aws
969
1065
  ) -> _UpdateRecommendationResponseSuccess
970
1066
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRecommendationResponseSuccess
971
1067
 
1068
+ interface _UpdateTriggerResponseSuccess
1069
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTriggerResponse]
1070
+ def trigger: () -> Types::Trigger
1071
+ end
1072
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#update_trigger-instance_method
1073
+ def update_trigger: (
1074
+ agent_space_id: ::String,
1075
+ trigger_id: ::String,
1076
+ ?status: ::String,
1077
+ ?client_token: ::String
1078
+ ) -> _UpdateTriggerResponseSuccess
1079
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTriggerResponseSuccess
1080
+
972
1081
  interface _ValidateAwsAssociationsResponseSuccess
973
1082
  include ::Seahorse::Client::_ResponseSuccess[Types::ValidateAwsAssociationsOutput]
974
1083
  end
data/sig/params.rbs CHANGED
@@ -8,6 +8,15 @@
8
8
  module Aws
9
9
  module DevOpsAgent
10
10
  module Params
11
+ type git_hub_configuration = {
12
+ repo_name: ::String,
13
+ repo_id: ::String,
14
+ owner: ::String,
15
+ owner_type: ("organization" | "user"),
16
+ instance_identifier: ::String?,
17
+ runtime_role_arn: ::String?
18
+ }
19
+
11
20
  type slack_transmission_target = {
12
21
  ops_oncall_target: {
13
22
  channel_name: ::String?,
@@ -37,13 +46,7 @@ module Aws
37
46
  account_id: ::String,
38
47
  account_type: ("monitor")
39
48
  }?,
40
- github: {
41
- repo_name: ::String,
42
- repo_id: ::String,
43
- owner: ::String,
44
- owner_type: ("organization" | "user"),
45
- instance_identifier: ::String?
46
- }?,
49
+ github: Params::git_hub_configuration?,
47
50
  slack: Params::slack_configuration?,
48
51
  dynatrace: {
49
52
  env_id: ::String,
@@ -65,7 +68,8 @@ module Aws
65
68
  gitlab: {
66
69
  project_id: ::String,
67
70
  project_path: ::String,
68
- instance_identifier: ::String?
71
+ instance_identifier: ::String?,
72
+ runtime_role_arn: ::String?
69
73
  }?,
70
74
  mcpserversplunk: {
71
75
  }?,
@@ -90,6 +94,10 @@ module Aws
90
94
  }?,
91
95
  mcpserversigv4: {
92
96
  tools: Array[::String]
97
+ }?,
98
+ remoteagent: {
99
+ }?,
100
+ remoteagentsigv4: {
93
101
  }?
94
102
  }
95
103
 
@@ -107,6 +115,9 @@ module Aws
107
115
  file: Params::asset_file_content?,
108
116
  zip: {
109
117
  zip_file: ::String
118
+ }?,
119
+ source_url: {
120
+ url: ::String
110
121
  }?
111
122
  }
112
123