aws-sdk-devopsagent 1.3.0 → 1.5.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.
@@ -102,6 +102,10 @@ module Aws::DevOpsAgent
102
102
  # Pagerduty service details.
103
103
  # @return [Types::RegisteredPagerDutyDetails]
104
104
  #
105
+ # @!attribute [rw] mcpserversigv4
106
+ # SigV4-authenticated MCP server-specific service details.
107
+ # @return [Types::RegisteredMCPServerSigV4Details]
108
+ #
105
109
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AdditionalServiceDetails AWS API Documentation
106
110
  #
107
111
  class AdditionalServiceDetails < Struct.new(
@@ -117,6 +121,7 @@ module Aws::DevOpsAgent
117
121
  :azureidentity,
118
122
  :mcpservergrafana,
119
123
  :pagerduty,
124
+ :mcpserversigv4,
120
125
  :unknown)
121
126
  SENSITIVE = []
122
127
  include Aws::Structure
@@ -134,6 +139,7 @@ module Aws::DevOpsAgent
134
139
  class Azureidentity < AdditionalServiceDetails; end
135
140
  class Mcpservergrafana < AdditionalServiceDetails; end
136
141
  class Pagerduty < AdditionalServiceDetails; end
142
+ class Mcpserversigv4 < AdditionalServiceDetails; end
137
143
  class Unknown < AdditionalServiceDetails; end
138
144
  end
139
145
 
@@ -1996,15 +2002,11 @@ module Aws::DevOpsAgent
1996
2002
  # @return [String]
1997
2003
  #
1998
2004
  # @!attribute [rw] filter
1999
- # Filter criteria to apply when listing tasks
2000
- #
2001
- # Filtering restrictions:
2002
- #
2003
- # * Each filter field list is limited to a single value
2004
- # * Filtering by Priority and Status at the same time when not
2005
- # filtering by Type is not permitted
2006
- # * Timestamp filters (createdAfter, createdBefore) can be combined
2007
- # with other filters when not sorting by priority
2005
+ # Filter criteria to apply when listing tasks Filtering restrictions:
2006
+ # - Each filter field list is limited to a single value - Filtering by
2007
+ # Priority and Status at the same time when not filtering by Type is
2008
+ # not permitted - Timestamp filters (createdAfter, createdBefore) can
2009
+ # be combined with other filters when not sorting by priority
2008
2010
  # @return [Types::TaskFilter]
2009
2011
  #
2010
2012
  # @!attribute [rw] limit
@@ -2017,14 +2019,10 @@ module Aws::DevOpsAgent
2017
2019
  # @return [String]
2018
2020
  #
2019
2021
  # @!attribute [rw] sort_field
2020
- # Field to sort by
2021
- #
2022
- # Sorting restrictions:
2023
- #
2024
- # * Only sorting on createdAt is supported when using priority or
2025
- # status filters alone.
2026
- # * Sorting by priority is not supported when using Timestamp filters
2027
- # (createdAfter, createdBefore)
2022
+ # Field to sort by Sorting restrictions: - Only sorting on createdAt
2023
+ # is supported when using priority or status filters alone. - Sorting
2024
+ # by priority is not supported when using Timestamp filters
2025
+ # (createdAfter, createdBefore)
2028
2026
  # @return [String]
2029
2027
  #
2030
2028
  # @!attribute [rw] order
@@ -2825,6 +2823,80 @@ module Aws::DevOpsAgent
2825
2823
  include Aws::Structure
2826
2824
  end
2827
2825
 
2826
+ # Authorization configuration for SigV4-authenticated MCP server.
2827
+ #
2828
+ # @!attribute [rw] region
2829
+ # AWS region for SigV4 signing. Use '*' for SigV4a multi-region
2830
+ # signing.
2831
+ # @return [String]
2832
+ #
2833
+ # @!attribute [rw] service
2834
+ # AWS service name for SigV4 signing.
2835
+ # @return [String]
2836
+ #
2837
+ # @!attribute [rw] role_arn
2838
+ # IAM role ARN to assume for SigV4 signing.
2839
+ # @return [String]
2840
+ #
2841
+ # @!attribute [rw] custom_headers
2842
+ # Custom headers for the SigV4 MCP server.
2843
+ # @return [Hash<String,String>]
2844
+ #
2845
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/MCPServerSigV4AuthorizationConfig AWS API Documentation
2846
+ #
2847
+ class MCPServerSigV4AuthorizationConfig < Struct.new(
2848
+ :region,
2849
+ :service,
2850
+ :role_arn,
2851
+ :custom_headers)
2852
+ SENSITIVE = [:custom_headers]
2853
+ include Aws::Structure
2854
+ end
2855
+
2856
+ # Configuration for SigV4-authenticated MCP server integration.
2857
+ #
2858
+ # @!attribute [rw] tools
2859
+ # List of MCP tools available for the association.
2860
+ # @return [Array<String>]
2861
+ #
2862
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/MCPServerSigV4Configuration AWS API Documentation
2863
+ #
2864
+ class MCPServerSigV4Configuration < Struct.new(
2865
+ :tools)
2866
+ SENSITIVE = []
2867
+ include Aws::Structure
2868
+ end
2869
+
2870
+ # Complete service details for SigV4-authenticated MCP server
2871
+ # integration.
2872
+ #
2873
+ # @!attribute [rw] name
2874
+ # MCP server name.
2875
+ # @return [String]
2876
+ #
2877
+ # @!attribute [rw] endpoint
2878
+ # MCP server endpoint URL.
2879
+ # @return [String]
2880
+ #
2881
+ # @!attribute [rw] description
2882
+ # Optional description for the MCP server.
2883
+ # @return [String]
2884
+ #
2885
+ # @!attribute [rw] authorization_config
2886
+ # MCP Server SigV4 authorization configuration.
2887
+ # @return [Types::MCPServerSigV4AuthorizationConfig]
2888
+ #
2889
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/MCPServerSigV4ServiceDetails AWS API Documentation
2890
+ #
2891
+ class MCPServerSigV4ServiceDetails < Struct.new(
2892
+ :name,
2893
+ :endpoint,
2894
+ :description,
2895
+ :authorization_config)
2896
+ SENSITIVE = [:description]
2897
+ include Aws::Structure
2898
+ end
2899
+
2828
2900
  # Mixin for webhook update support.
2829
2901
  #
2830
2902
  # @api private
@@ -3179,6 +3251,14 @@ module Aws::DevOpsAgent
3179
3251
  # Additional context for recommendation
3180
3252
  # @return [String]
3181
3253
  #
3254
+ # @!attribute [rw] rank_position
3255
+ # Position in ranked list (1 = highest priority)
3256
+ # @return [Integer]
3257
+ #
3258
+ # @!attribute [rw] ranked_at
3259
+ # Timestamp when the recommendation was last ranked
3260
+ # @return [Time]
3261
+ #
3182
3262
  # @!attribute [rw] created_at
3183
3263
  # Timestamp when this recommendation was created
3184
3264
  # @return [Time]
@@ -3204,6 +3284,8 @@ module Aws::DevOpsAgent
3204
3284
  :priority,
3205
3285
  :goal_version,
3206
3286
  :additional_context,
3287
+ :rank_position,
3288
+ :ranked_at,
3207
3289
  :created_at,
3208
3290
  :updated_at,
3209
3291
  :version)
@@ -3523,6 +3605,51 @@ module Aws::DevOpsAgent
3523
3605
  include Aws::Structure
3524
3606
  end
3525
3607
 
3608
+ # Details specific to a registered SigV4-authenticated MCP server.
3609
+ #
3610
+ # @!attribute [rw] name
3611
+ # MCP server name.
3612
+ # @return [String]
3613
+ #
3614
+ # @!attribute [rw] endpoint
3615
+ # MCP server endpoint URL.
3616
+ # @return [String]
3617
+ #
3618
+ # @!attribute [rw] description
3619
+ # Optional description for the MCP server.
3620
+ # @return [String]
3621
+ #
3622
+ # @!attribute [rw] region
3623
+ # AWS region for SigV4 signing. Use '*' for SigV4a multi-region
3624
+ # signing.
3625
+ # @return [String]
3626
+ #
3627
+ # @!attribute [rw] service
3628
+ # AWS service name for SigV4 signing.
3629
+ # @return [String]
3630
+ #
3631
+ # @!attribute [rw] role_arn
3632
+ # IAM role ARN to assume for SigV4 signing.
3633
+ # @return [String]
3634
+ #
3635
+ # @!attribute [rw] custom_headers
3636
+ # Custom headers for the SigV4 MCP server.
3637
+ # @return [Hash<String,String>]
3638
+ #
3639
+ # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/RegisteredMCPServerSigV4Details AWS API Documentation
3640
+ #
3641
+ class RegisteredMCPServerSigV4Details < Struct.new(
3642
+ :name,
3643
+ :endpoint,
3644
+ :description,
3645
+ :region,
3646
+ :service,
3647
+ :role_arn,
3648
+ :custom_headers)
3649
+ SENSITIVE = [:description, :custom_headers]
3650
+ include Aws::Structure
3651
+ end
3652
+
3526
3653
  # Details specific to a registered NewRelic instance.
3527
3654
  #
3528
3655
  # @!attribute [rw] account_id
@@ -4118,6 +4245,10 @@ module Aws::DevOpsAgent
4118
4245
  # PagerDuty integration configuration
4119
4246
  # @return [Types::PagerDutyConfiguration]
4120
4247
  #
4248
+ # @!attribute [rw] mcpserversigv4
4249
+ # SigV4-authenticated MCP server integration configuration.
4250
+ # @return [Types::MCPServerSigV4Configuration]
4251
+ #
4121
4252
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ServiceConfiguration AWS API Documentation
4122
4253
  #
4123
4254
  class ServiceConfiguration < Struct.new(
@@ -4137,6 +4268,7 @@ module Aws::DevOpsAgent
4137
4268
  :azuredevops,
4138
4269
  :mcpservergrafana,
4139
4270
  :pagerduty,
4271
+ :mcpserversigv4,
4140
4272
  :unknown)
4141
4273
  SENSITIVE = []
4142
4274
  include Aws::Structure
@@ -4158,6 +4290,7 @@ module Aws::DevOpsAgent
4158
4290
  class Azuredevops < ServiceConfiguration; end
4159
4291
  class Mcpservergrafana < ServiceConfiguration; end
4160
4292
  class Pagerduty < ServiceConfiguration; end
4293
+ class Mcpserversigv4 < ServiceConfiguration; end
4161
4294
  class Unknown < ServiceConfiguration; end
4162
4295
  end
4163
4296
 
@@ -4211,6 +4344,10 @@ module Aws::DevOpsAgent
4211
4344
  # service details.
4212
4345
  # @return [Types::RegisteredAzureIdentityDetails]
4213
4346
  #
4347
+ # @!attribute [rw] mcpserversigv4
4348
+ # SigV4-authenticated MCP server-specific service details.
4349
+ # @return [Types::MCPServerSigV4ServiceDetails]
4350
+ #
4214
4351
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ServiceDetails AWS API Documentation
4215
4352
  #
4216
4353
  class ServiceDetails < Struct.new(
@@ -4225,6 +4362,7 @@ module Aws::DevOpsAgent
4225
4362
  :mcpservergrafana,
4226
4363
  :pagerduty,
4227
4364
  :azureidentity,
4365
+ :mcpserversigv4,
4228
4366
  :unknown)
4229
4367
  SENSITIVE = []
4230
4368
  include Aws::Structure
@@ -4241,6 +4379,7 @@ module Aws::DevOpsAgent
4241
4379
  class Mcpservergrafana < ServiceDetails; end
4242
4380
  class Pagerduty < ServiceDetails; end
4243
4381
  class Azureidentity < ServiceDetails; end
4382
+ class Mcpserversigv4 < ServiceDetails; end
4244
4383
  class Unknown < ServiceDetails; end
4245
4384
  end
4246
4385
 
@@ -5119,9 +5258,7 @@ module Aws::DevOpsAgent
5119
5258
  #
5120
5259
  class ValidateAwsAssociationsOutput < Aws::EmptyStructure; end
5121
5260
 
5122
- # A standard error for input validation failures. This should be thrown
5123
- # by services when a member of the input structure falls outside of the
5124
- # modeled or documented constraints.
5261
+ # The input fails to satisfy the constraints specified by the service.
5125
5262
  #
5126
5263
  # @!attribute [rw] message
5127
5264
  # A summary of the validation failure.
@@ -5190,10 +5327,9 @@ module Aws::DevOpsAgent
5190
5327
  # Event stream for chat message responses using the content block model.
5191
5328
  # Events follow a lifecycle: responseCreated -&gt; responseInProgress
5192
5329
  # -&gt; (contentBlockStart/contentBlockDelta/contentBlockStop events)
5193
- # -&gt; responseCompleted\|responseFailed
5194
- #
5195
- # SendMessage always uses content block mode — legacy per-field events
5196
- # (outputTextDelta, functionCallArgumentsDelta, etc.) are not emitted.
5330
+ # -&gt; responseCompleted\|responseFailed SendMessage always uses
5331
+ # content block mode — legacy per-field events (outputTextDelta,
5332
+ # functionCallArgumentsDelta, etc.) are not emitted.
5197
5333
  #
5198
5334
  # EventStream is an Enumerator of Events.
5199
5335
  # #event_types #=> Array, returns all modeled event types in the stream
@@ -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.3.0'
58
+ GEM_VERSION = '1.5.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -90,83 +90,7 @@ module Aws
90
90
  def associate_service: (
91
91
  agent_space_id: ::String,
92
92
  service_id: ::String,
93
- configuration: {
94
- source_aws: {
95
- account_id: ::String,
96
- account_type: ("source"),
97
- assumable_role_arn: ::String,
98
- external_id: ::String?
99
- }?,
100
- aws: {
101
- assumable_role_arn: ::String,
102
- account_id: ::String,
103
- account_type: ("monitor")
104
- }?,
105
- github: {
106
- repo_name: ::String,
107
- repo_id: ::String,
108
- owner: ::String,
109
- owner_type: ("organization" | "user"),
110
- instance_identifier: ::String?
111
- }?,
112
- slack: {
113
- workspace_id: ::String,
114
- workspace_name: ::String,
115
- transmission_target: {
116
- ops_oncall_target: {
117
- channel_name: ::String?,
118
- channel_id: ::String
119
- },
120
- ops_sre_target: {
121
- channel_name: ::String?,
122
- channel_id: ::String
123
- }?
124
- }
125
- }?,
126
- dynatrace: {
127
- env_id: ::String,
128
- resources: Array[::String]?
129
- }?,
130
- servicenow: {
131
- instance_id: ::String?,
132
- auth_scopes: Array[::String]?
133
- }?,
134
- mcpservernewrelic: {
135
- account_id: ::String,
136
- endpoint: ::String
137
- }?,
138
- mcpserverdatadog: {
139
- }?,
140
- mcpserver: {
141
- tools: Array[::String]
142
- }?,
143
- gitlab: {
144
- project_id: ::String,
145
- project_path: ::String,
146
- instance_identifier: ::String?
147
- }?,
148
- mcpserversplunk: {
149
- }?,
150
- event_channel: {
151
- }?,
152
- azure: {
153
- subscription_id: ::String
154
- }?,
155
- azuredevops: {
156
- organization_name: ::String,
157
- project_id: ::String,
158
- project_name: ::String
159
- }?,
160
- mcpservergrafana: {
161
- endpoint: ::String,
162
- organization_id: ::String?,
163
- tools: Array[::String]?
164
- }?,
165
- pagerduty: {
166
- services: Array[::String],
167
- customer_email: ::String
168
- }?
169
- }
93
+ configuration: Params::service_configuration
170
94
  ) -> _AssociateServiceResponseSuccess
171
95
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateServiceResponseSuccess
172
96
 
@@ -579,7 +503,7 @@ module Aws
579
503
  def list_services: (
580
504
  ?max_results: ::Integer,
581
505
  ?next_token: ::String,
582
- ?filter_service_type: ("github" | "slack" | "azure" | "azuredevops" | "dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity")
506
+ ?filter_service_type: ("github" | "slack" | "azure" | "azuredevops" | "dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4")
583
507
  ) -> _ListServicesResponseSuccess
584
508
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServicesResponseSuccess
585
509
 
@@ -613,7 +537,7 @@ module Aws
613
537
  end
614
538
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#register_service-instance_method
615
539
  def register_service: (
616
- service: ("dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity"),
540
+ service: ("dynatrace" | "servicenow" | "pagerduty" | "gitlab" | "eventChannel" | "mcpservernewrelic" | "mcpservergrafana" | "mcpserverdatadog" | "mcpserver" | "mcpserversplunk" | "azureidentity" | "mcpserversigv4"),
617
541
  service_details: {
618
542
  dynatrace: {
619
543
  account_urn: ::String,
@@ -647,90 +571,14 @@ module Aws
647
571
  }?
648
572
  }
649
573
  }?,
650
- mcpserver: {
651
- name: ::String,
652
- endpoint: ::String,
653
- description: ::String?,
654
- authorization_config: {
655
- o_auth_client_credentials: {
656
- client_name: ::String?,
657
- client_id: ::String,
658
- exchange_parameters: Hash[::String, ::String]?,
659
- client_secret: ::String,
660
- exchange_url: ::String,
661
- scopes: Array[::String]?
662
- }?,
663
- o_auth_3_lo: {
664
- client_name: ::String?,
665
- client_id: ::String,
666
- exchange_parameters: Hash[::String, ::String]?,
667
- return_to_endpoint: ::String,
668
- authorization_url: ::String,
669
- exchange_url: ::String,
670
- client_secret: ::String?,
671
- support_code_challenge: bool?,
672
- scopes: Array[::String]?
673
- }?,
674
- api_key: {
675
- api_key_name: ::String,
676
- api_key_value: ::String,
677
- api_key_header: ::String
678
- }?,
679
- bearer_token: {
680
- token_name: ::String,
681
- token_value: ::String,
682
- authorization_header: ::String?
683
- }?,
684
- authorization_discovery: {
685
- return_to_endpoint: ::String
686
- }?
687
- }
688
- }?,
574
+ mcpserver: Params::mcp_server_details?,
689
575
  gitlab: {
690
576
  target_url: ::String,
691
577
  token_type: ("personal" | "group"),
692
578
  token_value: ::String,
693
579
  group_id: ::String?
694
580
  }?,
695
- mcpserversplunk: {
696
- name: ::String,
697
- endpoint: ::String,
698
- description: ::String?,
699
- authorization_config: {
700
- o_auth_client_credentials: {
701
- client_name: ::String?,
702
- client_id: ::String,
703
- exchange_parameters: Hash[::String, ::String]?,
704
- client_secret: ::String,
705
- exchange_url: ::String,
706
- scopes: Array[::String]?
707
- }?,
708
- o_auth_3_lo: {
709
- client_name: ::String?,
710
- client_id: ::String,
711
- exchange_parameters: Hash[::String, ::String]?,
712
- return_to_endpoint: ::String,
713
- authorization_url: ::String,
714
- exchange_url: ::String,
715
- client_secret: ::String?,
716
- support_code_challenge: bool?,
717
- scopes: Array[::String]?
718
- }?,
719
- api_key: {
720
- api_key_name: ::String,
721
- api_key_value: ::String,
722
- api_key_header: ::String
723
- }?,
724
- bearer_token: {
725
- token_name: ::String,
726
- token_value: ::String,
727
- authorization_header: ::String?
728
- }?,
729
- authorization_discovery: {
730
- return_to_endpoint: ::String
731
- }?
732
- }
733
- }?,
581
+ mcpserversplunk: Params::mcp_server_details?,
734
582
  mcpservernewrelic: {
735
583
  authorization_config: {
736
584
  api_key: {
@@ -750,40 +598,7 @@ module Aws
750
598
  name: ::String,
751
599
  endpoint: ::String,
752
600
  description: ::String?,
753
- authorization_config: {
754
- o_auth_client_credentials: {
755
- client_name: ::String?,
756
- client_id: ::String,
757
- exchange_parameters: Hash[::String, ::String]?,
758
- client_secret: ::String,
759
- exchange_url: ::String,
760
- scopes: Array[::String]?
761
- }?,
762
- o_auth_3_lo: {
763
- client_name: ::String?,
764
- client_id: ::String,
765
- exchange_parameters: Hash[::String, ::String]?,
766
- return_to_endpoint: ::String,
767
- authorization_url: ::String,
768
- exchange_url: ::String,
769
- client_secret: ::String?,
770
- support_code_challenge: bool?,
771
- scopes: Array[::String]?
772
- }?,
773
- api_key: {
774
- api_key_name: ::String,
775
- api_key_value: ::String,
776
- api_key_header: ::String
777
- }?,
778
- bearer_token: {
779
- token_name: ::String,
780
- token_value: ::String,
781
- authorization_header: ::String?
782
- }?,
783
- authorization_discovery: {
784
- return_to_endpoint: ::String
785
- }?
786
- }
601
+ authorization_config: Params::mcp_server_authorization_config
787
602
  }?,
788
603
  pagerduty: {
789
604
  scopes: Array[::String],
@@ -801,6 +616,17 @@ module Aws
801
616
  client_id: ::String,
802
617
  web_identity_role_arn: ::String,
803
618
  web_identity_token_audiences: Array[::String]
619
+ }?,
620
+ mcpserversigv4: {
621
+ name: ::String,
622
+ endpoint: ::String,
623
+ description: ::String?,
624
+ authorization_config: {
625
+ region: ::String,
626
+ service: ::String,
627
+ role_arn: ::String,
628
+ custom_headers: Hash[::String, ::String]?
629
+ }
804
630
  }?
805
631
  },
806
632
  ?kms_key_arn: ::String,
@@ -870,83 +696,7 @@ module Aws
870
696
  def update_association: (
871
697
  agent_space_id: ::String,
872
698
  association_id: ::String,
873
- configuration: {
874
- source_aws: {
875
- account_id: ::String,
876
- account_type: ("source"),
877
- assumable_role_arn: ::String,
878
- external_id: ::String?
879
- }?,
880
- aws: {
881
- assumable_role_arn: ::String,
882
- account_id: ::String,
883
- account_type: ("monitor")
884
- }?,
885
- github: {
886
- repo_name: ::String,
887
- repo_id: ::String,
888
- owner: ::String,
889
- owner_type: ("organization" | "user"),
890
- instance_identifier: ::String?
891
- }?,
892
- slack: {
893
- workspace_id: ::String,
894
- workspace_name: ::String,
895
- transmission_target: {
896
- ops_oncall_target: {
897
- channel_name: ::String?,
898
- channel_id: ::String
899
- },
900
- ops_sre_target: {
901
- channel_name: ::String?,
902
- channel_id: ::String
903
- }?
904
- }
905
- }?,
906
- dynatrace: {
907
- env_id: ::String,
908
- resources: Array[::String]?
909
- }?,
910
- servicenow: {
911
- instance_id: ::String?,
912
- auth_scopes: Array[::String]?
913
- }?,
914
- mcpservernewrelic: {
915
- account_id: ::String,
916
- endpoint: ::String
917
- }?,
918
- mcpserverdatadog: {
919
- }?,
920
- mcpserver: {
921
- tools: Array[::String]
922
- }?,
923
- gitlab: {
924
- project_id: ::String,
925
- project_path: ::String,
926
- instance_identifier: ::String?
927
- }?,
928
- mcpserversplunk: {
929
- }?,
930
- event_channel: {
931
- }?,
932
- azure: {
933
- subscription_id: ::String
934
- }?,
935
- azuredevops: {
936
- organization_name: ::String,
937
- project_id: ::String,
938
- project_name: ::String
939
- }?,
940
- mcpservergrafana: {
941
- endpoint: ::String,
942
- organization_id: ::String?,
943
- tools: Array[::String]?
944
- }?,
945
- pagerduty: {
946
- services: Array[::String],
947
- customer_email: ::String
948
- }?
949
- }
699
+ configuration: Params::service_configuration
950
700
  ) -> _UpdateAssociationResponseSuccess
951
701
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAssociationResponseSuccess
952
702