aws-sdk-synthetics 1.27.0 → 1.29.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.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +10 -0
 - data/VERSION +1 -1
 - data/lib/aws-sdk-synthetics/client.rb +399 -31
 - data/lib/aws-sdk-synthetics/client_api.rb +249 -12
 - data/lib/aws-sdk-synthetics/endpoint_parameters.rb +66 -0
 - data/lib/aws-sdk-synthetics/endpoint_provider.rb +112 -0
 - data/lib/aws-sdk-synthetics/endpoints.rb +309 -0
 - data/lib/aws-sdk-synthetics/errors.rb +80 -0
 - data/lib/aws-sdk-synthetics/plugins/endpoints.rb +110 -0
 - data/lib/aws-sdk-synthetics/types.rb +497 -21
 - data/lib/aws-sdk-synthetics.rb +6 -2
 - metadata +8 -4
 
| 
         @@ -0,0 +1,309 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            # WARNING ABOUT GENERATED CODE
         
     | 
| 
      
 4 
     | 
    
         
            +
            #
         
     | 
| 
      
 5 
     | 
    
         
            +
            # This file is generated. See the contributing guide for more information:
         
     | 
| 
      
 6 
     | 
    
         
            +
            # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
         
     | 
| 
      
 7 
     | 
    
         
            +
            #
         
     | 
| 
      
 8 
     | 
    
         
            +
            # WARNING ABOUT GENERATED CODE
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            module Aws::Synthetics
         
     | 
| 
      
 12 
     | 
    
         
            +
              module Endpoints
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
                class AssociateResource
         
     | 
| 
      
 15 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 16 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 17 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 18 
     | 
    
         
            +
                    end
         
     | 
| 
      
 19 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 20 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 21 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 22 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 23 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 24 
     | 
    
         
            +
                    )
         
     | 
| 
      
 25 
     | 
    
         
            +
                  end
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
                class CreateCanary
         
     | 
| 
      
 29 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 30 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 31 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 32 
     | 
    
         
            +
                    end
         
     | 
| 
      
 33 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 34 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 35 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 36 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 37 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 38 
     | 
    
         
            +
                    )
         
     | 
| 
      
 39 
     | 
    
         
            +
                  end
         
     | 
| 
      
 40 
     | 
    
         
            +
                end
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
                class CreateGroup
         
     | 
| 
      
 43 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 44 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 45 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 46 
     | 
    
         
            +
                    end
         
     | 
| 
      
 47 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 48 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 49 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 50 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 51 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 52 
     | 
    
         
            +
                    )
         
     | 
| 
      
 53 
     | 
    
         
            +
                  end
         
     | 
| 
      
 54 
     | 
    
         
            +
                end
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
                class DeleteCanary
         
     | 
| 
      
 57 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 58 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 59 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 60 
     | 
    
         
            +
                    end
         
     | 
| 
      
 61 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 62 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 63 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 64 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 65 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 66 
     | 
    
         
            +
                    )
         
     | 
| 
      
 67 
     | 
    
         
            +
                  end
         
     | 
| 
      
 68 
     | 
    
         
            +
                end
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
                class DeleteGroup
         
     | 
| 
      
 71 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 72 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 73 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 74 
     | 
    
         
            +
                    end
         
     | 
| 
      
 75 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 76 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 77 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 78 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 79 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 80 
     | 
    
         
            +
                    )
         
     | 
| 
      
 81 
     | 
    
         
            +
                  end
         
     | 
| 
      
 82 
     | 
    
         
            +
                end
         
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
                class DescribeCanaries
         
     | 
| 
      
 85 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 86 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 87 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 88 
     | 
    
         
            +
                    end
         
     | 
| 
      
 89 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 90 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 91 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 92 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 93 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 94 
     | 
    
         
            +
                    )
         
     | 
| 
      
 95 
     | 
    
         
            +
                  end
         
     | 
| 
      
 96 
     | 
    
         
            +
                end
         
     | 
| 
      
 97 
     | 
    
         
            +
             
     | 
| 
      
 98 
     | 
    
         
            +
                class DescribeCanariesLastRun
         
     | 
| 
      
 99 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 100 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 101 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 102 
     | 
    
         
            +
                    end
         
     | 
| 
      
 103 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 104 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 105 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 106 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 107 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 108 
     | 
    
         
            +
                    )
         
     | 
| 
      
 109 
     | 
    
         
            +
                  end
         
     | 
| 
      
 110 
     | 
    
         
            +
                end
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
                class DescribeRuntimeVersions
         
     | 
| 
      
 113 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 114 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 115 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 116 
     | 
    
         
            +
                    end
         
     | 
| 
      
 117 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 118 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 119 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 120 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 121 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 122 
     | 
    
         
            +
                    )
         
     | 
| 
      
 123 
     | 
    
         
            +
                  end
         
     | 
| 
      
 124 
     | 
    
         
            +
                end
         
     | 
| 
      
 125 
     | 
    
         
            +
             
     | 
| 
      
 126 
     | 
    
         
            +
                class DisassociateResource
         
     | 
| 
      
 127 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 128 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 129 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 130 
     | 
    
         
            +
                    end
         
     | 
| 
      
 131 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 132 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 133 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 134 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 135 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 136 
     | 
    
         
            +
                    )
         
     | 
| 
      
 137 
     | 
    
         
            +
                  end
         
     | 
| 
      
 138 
     | 
    
         
            +
                end
         
     | 
| 
      
 139 
     | 
    
         
            +
             
     | 
| 
      
 140 
     | 
    
         
            +
                class GetCanary
         
     | 
| 
      
 141 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 142 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 143 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 144 
     | 
    
         
            +
                    end
         
     | 
| 
      
 145 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 146 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 147 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 148 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 149 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 150 
     | 
    
         
            +
                    )
         
     | 
| 
      
 151 
     | 
    
         
            +
                  end
         
     | 
| 
      
 152 
     | 
    
         
            +
                end
         
     | 
| 
      
 153 
     | 
    
         
            +
             
     | 
| 
      
 154 
     | 
    
         
            +
                class GetCanaryRuns
         
     | 
| 
      
 155 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 156 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 157 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 158 
     | 
    
         
            +
                    end
         
     | 
| 
      
 159 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 160 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 161 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 162 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 163 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 164 
     | 
    
         
            +
                    )
         
     | 
| 
      
 165 
     | 
    
         
            +
                  end
         
     | 
| 
      
 166 
     | 
    
         
            +
                end
         
     | 
| 
      
 167 
     | 
    
         
            +
             
     | 
| 
      
 168 
     | 
    
         
            +
                class GetGroup
         
     | 
| 
      
 169 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 170 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 171 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 172 
     | 
    
         
            +
                    end
         
     | 
| 
      
 173 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 174 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 175 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 176 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 177 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 178 
     | 
    
         
            +
                    )
         
     | 
| 
      
 179 
     | 
    
         
            +
                  end
         
     | 
| 
      
 180 
     | 
    
         
            +
                end
         
     | 
| 
      
 181 
     | 
    
         
            +
             
     | 
| 
      
 182 
     | 
    
         
            +
                class ListAssociatedGroups
         
     | 
| 
      
 183 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 184 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 185 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 186 
     | 
    
         
            +
                    end
         
     | 
| 
      
 187 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 188 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 189 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 190 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 191 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 192 
     | 
    
         
            +
                    )
         
     | 
| 
      
 193 
     | 
    
         
            +
                  end
         
     | 
| 
      
 194 
     | 
    
         
            +
                end
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
                class ListGroupResources
         
     | 
| 
      
 197 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 198 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 199 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 200 
     | 
    
         
            +
                    end
         
     | 
| 
      
 201 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 202 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 203 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 204 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 205 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 206 
     | 
    
         
            +
                    )
         
     | 
| 
      
 207 
     | 
    
         
            +
                  end
         
     | 
| 
      
 208 
     | 
    
         
            +
                end
         
     | 
| 
      
 209 
     | 
    
         
            +
             
     | 
| 
      
 210 
     | 
    
         
            +
                class ListGroups
         
     | 
| 
      
 211 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 212 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 213 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 214 
     | 
    
         
            +
                    end
         
     | 
| 
      
 215 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 216 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 217 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 218 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 219 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 220 
     | 
    
         
            +
                    )
         
     | 
| 
      
 221 
     | 
    
         
            +
                  end
         
     | 
| 
      
 222 
     | 
    
         
            +
                end
         
     | 
| 
      
 223 
     | 
    
         
            +
             
     | 
| 
      
 224 
     | 
    
         
            +
                class ListTagsForResource
         
     | 
| 
      
 225 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 226 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 227 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 228 
     | 
    
         
            +
                    end
         
     | 
| 
      
 229 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 230 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 231 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 232 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 233 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 234 
     | 
    
         
            +
                    )
         
     | 
| 
      
 235 
     | 
    
         
            +
                  end
         
     | 
| 
      
 236 
     | 
    
         
            +
                end
         
     | 
| 
      
 237 
     | 
    
         
            +
             
     | 
| 
      
 238 
     | 
    
         
            +
                class StartCanary
         
     | 
| 
      
 239 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 240 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 241 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 242 
     | 
    
         
            +
                    end
         
     | 
| 
      
 243 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 244 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 245 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 246 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 247 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 248 
     | 
    
         
            +
                    )
         
     | 
| 
      
 249 
     | 
    
         
            +
                  end
         
     | 
| 
      
 250 
     | 
    
         
            +
                end
         
     | 
| 
      
 251 
     | 
    
         
            +
             
     | 
| 
      
 252 
     | 
    
         
            +
                class StopCanary
         
     | 
| 
      
 253 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 254 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 255 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 256 
     | 
    
         
            +
                    end
         
     | 
| 
      
 257 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 258 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 259 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 260 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 261 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 262 
     | 
    
         
            +
                    )
         
     | 
| 
      
 263 
     | 
    
         
            +
                  end
         
     | 
| 
      
 264 
     | 
    
         
            +
                end
         
     | 
| 
      
 265 
     | 
    
         
            +
             
     | 
| 
      
 266 
     | 
    
         
            +
                class TagResource
         
     | 
| 
      
 267 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 268 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 269 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 270 
     | 
    
         
            +
                    end
         
     | 
| 
      
 271 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 272 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 273 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 274 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 275 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 276 
     | 
    
         
            +
                    )
         
     | 
| 
      
 277 
     | 
    
         
            +
                  end
         
     | 
| 
      
 278 
     | 
    
         
            +
                end
         
     | 
| 
      
 279 
     | 
    
         
            +
             
     | 
| 
      
 280 
     | 
    
         
            +
                class UntagResource
         
     | 
| 
      
 281 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 282 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 283 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 284 
     | 
    
         
            +
                    end
         
     | 
| 
      
 285 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 286 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 287 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 288 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 289 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 290 
     | 
    
         
            +
                    )
         
     | 
| 
      
 291 
     | 
    
         
            +
                  end
         
     | 
| 
      
 292 
     | 
    
         
            +
                end
         
     | 
| 
      
 293 
     | 
    
         
            +
             
     | 
| 
      
 294 
     | 
    
         
            +
                class UpdateCanary
         
     | 
| 
      
 295 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 296 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 297 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 298 
     | 
    
         
            +
                    end
         
     | 
| 
      
 299 
     | 
    
         
            +
                    Aws::Synthetics::EndpointParameters.new(
         
     | 
| 
      
 300 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 301 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 302 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 303 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 304 
     | 
    
         
            +
                    )
         
     | 
| 
      
 305 
     | 
    
         
            +
                  end
         
     | 
| 
      
 306 
     | 
    
         
            +
                end
         
     | 
| 
      
 307 
     | 
    
         
            +
             
     | 
| 
      
 308 
     | 
    
         
            +
              end
         
     | 
| 
      
 309 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -27,10 +27,15 @@ module Aws::Synthetics 
     | 
|
| 
       27 
27 
     | 
    
         
             
              # See {Seahorse::Client::RequestContext} for more information.
         
     | 
| 
       28 
28 
     | 
    
         
             
              #
         
     | 
| 
       29 
29 
     | 
    
         
             
              # ## Error Classes
         
     | 
| 
      
 30 
     | 
    
         
            +
              # * {BadRequestException}
         
     | 
| 
       30 
31 
     | 
    
         
             
              # * {ConflictException}
         
     | 
| 
      
 32 
     | 
    
         
            +
              # * {InternalFailureException}
         
     | 
| 
       31 
33 
     | 
    
         
             
              # * {InternalServerException}
         
     | 
| 
      
 34 
     | 
    
         
            +
              # * {NotFoundException}
         
     | 
| 
       32 
35 
     | 
    
         
             
              # * {RequestEntityTooLargeException}
         
     | 
| 
       33 
36 
     | 
    
         
             
              # * {ResourceNotFoundException}
         
     | 
| 
      
 37 
     | 
    
         
            +
              # * {ServiceQuotaExceededException}
         
     | 
| 
      
 38 
     | 
    
         
            +
              # * {TooManyRequestsException}
         
     | 
| 
       34 
39 
     | 
    
         
             
              # * {ValidationException}
         
     | 
| 
       35 
40 
     | 
    
         
             
              #
         
     | 
| 
       36 
41 
     | 
    
         
             
              # Additionally, error classes are dynamically generated for service errors based on the error code
         
     | 
| 
         @@ -39,6 +44,21 @@ module Aws::Synthetics 
     | 
|
| 
       39 
44 
     | 
    
         | 
| 
       40 
45 
     | 
    
         
             
                extend Aws::Errors::DynamicErrors
         
     | 
| 
       41 
46 
     | 
    
         | 
| 
      
 47 
     | 
    
         
            +
                class BadRequestException < ServiceError
         
     | 
| 
      
 48 
     | 
    
         
            +
             
     | 
| 
      
 49 
     | 
    
         
            +
                  # @param [Seahorse::Client::RequestContext] context
         
     | 
| 
      
 50 
     | 
    
         
            +
                  # @param [String] message
         
     | 
| 
      
 51 
     | 
    
         
            +
                  # @param [Aws::Synthetics::Types::BadRequestException] data
         
     | 
| 
      
 52 
     | 
    
         
            +
                  def initialize(context, message, data = Aws::EmptyStructure.new)
         
     | 
| 
      
 53 
     | 
    
         
            +
                    super(context, message, data)
         
     | 
| 
      
 54 
     | 
    
         
            +
                  end
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
                  # @return [String]
         
     | 
| 
      
 57 
     | 
    
         
            +
                  def message
         
     | 
| 
      
 58 
     | 
    
         
            +
                    @message || @data[:message]
         
     | 
| 
      
 59 
     | 
    
         
            +
                  end
         
     | 
| 
      
 60 
     | 
    
         
            +
                end
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
       42 
62 
     | 
    
         
             
                class ConflictException < ServiceError
         
     | 
| 
       43 
63 
     | 
    
         | 
| 
       44 
64 
     | 
    
         
             
                  # @param [Seahorse::Client::RequestContext] context
         
     | 
| 
         @@ -54,6 +74,21 @@ module Aws::Synthetics 
     | 
|
| 
       54 
74 
     | 
    
         
             
                  end
         
     | 
| 
       55 
75 
     | 
    
         
             
                end
         
     | 
| 
       56 
76 
     | 
    
         | 
| 
      
 77 
     | 
    
         
            +
                class InternalFailureException < ServiceError
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
                  # @param [Seahorse::Client::RequestContext] context
         
     | 
| 
      
 80 
     | 
    
         
            +
                  # @param [String] message
         
     | 
| 
      
 81 
     | 
    
         
            +
                  # @param [Aws::Synthetics::Types::InternalFailureException] data
         
     | 
| 
      
 82 
     | 
    
         
            +
                  def initialize(context, message, data = Aws::EmptyStructure.new)
         
     | 
| 
      
 83 
     | 
    
         
            +
                    super(context, message, data)
         
     | 
| 
      
 84 
     | 
    
         
            +
                  end
         
     | 
| 
      
 85 
     | 
    
         
            +
             
     | 
| 
      
 86 
     | 
    
         
            +
                  # @return [String]
         
     | 
| 
      
 87 
     | 
    
         
            +
                  def message
         
     | 
| 
      
 88 
     | 
    
         
            +
                    @message || @data[:message]
         
     | 
| 
      
 89 
     | 
    
         
            +
                  end
         
     | 
| 
      
 90 
     | 
    
         
            +
                end
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
       57 
92 
     | 
    
         
             
                class InternalServerException < ServiceError
         
     | 
| 
       58 
93 
     | 
    
         | 
| 
       59 
94 
     | 
    
         
             
                  # @param [Seahorse::Client::RequestContext] context
         
     | 
| 
         @@ -69,6 +104,21 @@ module Aws::Synthetics 
     | 
|
| 
       69 
104 
     | 
    
         
             
                  end
         
     | 
| 
       70 
105 
     | 
    
         
             
                end
         
     | 
| 
       71 
106 
     | 
    
         | 
| 
      
 107 
     | 
    
         
            +
                class NotFoundException < ServiceError
         
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
                  # @param [Seahorse::Client::RequestContext] context
         
     | 
| 
      
 110 
     | 
    
         
            +
                  # @param [String] message
         
     | 
| 
      
 111 
     | 
    
         
            +
                  # @param [Aws::Synthetics::Types::NotFoundException] data
         
     | 
| 
      
 112 
     | 
    
         
            +
                  def initialize(context, message, data = Aws::EmptyStructure.new)
         
     | 
| 
      
 113 
     | 
    
         
            +
                    super(context, message, data)
         
     | 
| 
      
 114 
     | 
    
         
            +
                  end
         
     | 
| 
      
 115 
     | 
    
         
            +
             
     | 
| 
      
 116 
     | 
    
         
            +
                  # @return [String]
         
     | 
| 
      
 117 
     | 
    
         
            +
                  def message
         
     | 
| 
      
 118 
     | 
    
         
            +
                    @message || @data[:message]
         
     | 
| 
      
 119 
     | 
    
         
            +
                  end
         
     | 
| 
      
 120 
     | 
    
         
            +
                end
         
     | 
| 
      
 121 
     | 
    
         
            +
             
     | 
| 
       72 
122 
     | 
    
         
             
                class RequestEntityTooLargeException < ServiceError
         
     | 
| 
       73 
123 
     | 
    
         | 
| 
       74 
124 
     | 
    
         
             
                  # @param [Seahorse::Client::RequestContext] context
         
     | 
| 
         @@ -99,6 +149,36 @@ module Aws::Synthetics 
     | 
|
| 
       99 
149 
     | 
    
         
             
                  end
         
     | 
| 
       100 
150 
     | 
    
         
             
                end
         
     | 
| 
       101 
151 
     | 
    
         | 
| 
      
 152 
     | 
    
         
            +
                class ServiceQuotaExceededException < ServiceError
         
     | 
| 
      
 153 
     | 
    
         
            +
             
     | 
| 
      
 154 
     | 
    
         
            +
                  # @param [Seahorse::Client::RequestContext] context
         
     | 
| 
      
 155 
     | 
    
         
            +
                  # @param [String] message
         
     | 
| 
      
 156 
     | 
    
         
            +
                  # @param [Aws::Synthetics::Types::ServiceQuotaExceededException] data
         
     | 
| 
      
 157 
     | 
    
         
            +
                  def initialize(context, message, data = Aws::EmptyStructure.new)
         
     | 
| 
      
 158 
     | 
    
         
            +
                    super(context, message, data)
         
     | 
| 
      
 159 
     | 
    
         
            +
                  end
         
     | 
| 
      
 160 
     | 
    
         
            +
             
     | 
| 
      
 161 
     | 
    
         
            +
                  # @return [String]
         
     | 
| 
      
 162 
     | 
    
         
            +
                  def message
         
     | 
| 
      
 163 
     | 
    
         
            +
                    @message || @data[:message]
         
     | 
| 
      
 164 
     | 
    
         
            +
                  end
         
     | 
| 
      
 165 
     | 
    
         
            +
                end
         
     | 
| 
      
 166 
     | 
    
         
            +
             
     | 
| 
      
 167 
     | 
    
         
            +
                class TooManyRequestsException < ServiceError
         
     | 
| 
      
 168 
     | 
    
         
            +
             
     | 
| 
      
 169 
     | 
    
         
            +
                  # @param [Seahorse::Client::RequestContext] context
         
     | 
| 
      
 170 
     | 
    
         
            +
                  # @param [String] message
         
     | 
| 
      
 171 
     | 
    
         
            +
                  # @param [Aws::Synthetics::Types::TooManyRequestsException] data
         
     | 
| 
      
 172 
     | 
    
         
            +
                  def initialize(context, message, data = Aws::EmptyStructure.new)
         
     | 
| 
      
 173 
     | 
    
         
            +
                    super(context, message, data)
         
     | 
| 
      
 174 
     | 
    
         
            +
                  end
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
                  # @return [String]
         
     | 
| 
      
 177 
     | 
    
         
            +
                  def message
         
     | 
| 
      
 178 
     | 
    
         
            +
                    @message || @data[:message]
         
     | 
| 
      
 179 
     | 
    
         
            +
                  end
         
     | 
| 
      
 180 
     | 
    
         
            +
                end
         
     | 
| 
      
 181 
     | 
    
         
            +
             
     | 
| 
       102 
182 
     | 
    
         
             
                class ValidationException < ServiceError
         
     | 
| 
       103 
183 
     | 
    
         | 
| 
       104 
184 
     | 
    
         
             
                  # @param [Seahorse::Client::RequestContext] context
         
     | 
| 
         @@ -0,0 +1,110 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # frozen_string_literal: true
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            # WARNING ABOUT GENERATED CODE
         
     | 
| 
      
 4 
     | 
    
         
            +
            #
         
     | 
| 
      
 5 
     | 
    
         
            +
            # This file is generated. See the contributing guide for more information:
         
     | 
| 
      
 6 
     | 
    
         
            +
            # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
         
     | 
| 
      
 7 
     | 
    
         
            +
            #
         
     | 
| 
      
 8 
     | 
    
         
            +
            # WARNING ABOUT GENERATED CODE
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            module Aws::Synthetics
         
     | 
| 
      
 12 
     | 
    
         
            +
              module Plugins
         
     | 
| 
      
 13 
     | 
    
         
            +
                class Endpoints < Seahorse::Client::Plugin
         
     | 
| 
      
 14 
     | 
    
         
            +
                  option(
         
     | 
| 
      
 15 
     | 
    
         
            +
                    :endpoint_provider,
         
     | 
| 
      
 16 
     | 
    
         
            +
                    doc_type: 'Aws::Synthetics::EndpointProvider',
         
     | 
| 
      
 17 
     | 
    
         
            +
                    docstring: 'The endpoint provider used to resolve endpoints. Any '\
         
     | 
| 
      
 18 
     | 
    
         
            +
                               'object that responds to `#resolve_endpoint(parameters)` '\
         
     | 
| 
      
 19 
     | 
    
         
            +
                               'where `parameters` is a Struct similar to '\
         
     | 
| 
      
 20 
     | 
    
         
            +
                               '`Aws::Synthetics::EndpointParameters`'
         
     | 
| 
      
 21 
     | 
    
         
            +
                  ) do |cfg|
         
     | 
| 
      
 22 
     | 
    
         
            +
                    Aws::Synthetics::EndpointProvider.new
         
     | 
| 
      
 23 
     | 
    
         
            +
                  end
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
                  # @api private
         
     | 
| 
      
 26 
     | 
    
         
            +
                  class Handler < Seahorse::Client::Handler
         
     | 
| 
      
 27 
     | 
    
         
            +
                    def call(context)
         
     | 
| 
      
 28 
     | 
    
         
            +
                      # If endpoint was discovered, do not resolve or apply the endpoint.
         
     | 
| 
      
 29 
     | 
    
         
            +
                      unless context[:discovered_endpoint]
         
     | 
| 
      
 30 
     | 
    
         
            +
                        params = parameters_for_operation(context)
         
     | 
| 
      
 31 
     | 
    
         
            +
                        endpoint = context.config.endpoint_provider.resolve_endpoint(params)
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
                        context.http_request.endpoint = endpoint.url
         
     | 
| 
      
 34 
     | 
    
         
            +
                        apply_endpoint_headers(context, endpoint.headers)
         
     | 
| 
      
 35 
     | 
    
         
            +
                      end
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
                      context[:endpoint_params] = params
         
     | 
| 
      
 38 
     | 
    
         
            +
                      context[:auth_scheme] =
         
     | 
| 
      
 39 
     | 
    
         
            +
                        Aws::Endpoints.resolve_auth_scheme(context, endpoint)
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                      @handler.call(context)
         
     | 
| 
      
 42 
     | 
    
         
            +
                    end
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
                    private
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
                    def apply_endpoint_headers(context, headers)
         
     | 
| 
      
 47 
     | 
    
         
            +
                      headers.each do |key, values|
         
     | 
| 
      
 48 
     | 
    
         
            +
                        value = values
         
     | 
| 
      
 49 
     | 
    
         
            +
                          .compact
         
     | 
| 
      
 50 
     | 
    
         
            +
                          .map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
         
     | 
| 
      
 51 
     | 
    
         
            +
                          .join(',')
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
      
 53 
     | 
    
         
            +
                        context.http_request.headers[key] = value
         
     | 
| 
      
 54 
     | 
    
         
            +
                      end
         
     | 
| 
      
 55 
     | 
    
         
            +
                    end
         
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
                    def parameters_for_operation(context)
         
     | 
| 
      
 58 
     | 
    
         
            +
                      case context.operation_name
         
     | 
| 
      
 59 
     | 
    
         
            +
                      when :associate_resource
         
     | 
| 
      
 60 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::AssociateResource.build(context)
         
     | 
| 
      
 61 
     | 
    
         
            +
                      when :create_canary
         
     | 
| 
      
 62 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::CreateCanary.build(context)
         
     | 
| 
      
 63 
     | 
    
         
            +
                      when :create_group
         
     | 
| 
      
 64 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::CreateGroup.build(context)
         
     | 
| 
      
 65 
     | 
    
         
            +
                      when :delete_canary
         
     | 
| 
      
 66 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::DeleteCanary.build(context)
         
     | 
| 
      
 67 
     | 
    
         
            +
                      when :delete_group
         
     | 
| 
      
 68 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::DeleteGroup.build(context)
         
     | 
| 
      
 69 
     | 
    
         
            +
                      when :describe_canaries
         
     | 
| 
      
 70 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::DescribeCanaries.build(context)
         
     | 
| 
      
 71 
     | 
    
         
            +
                      when :describe_canaries_last_run
         
     | 
| 
      
 72 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::DescribeCanariesLastRun.build(context)
         
     | 
| 
      
 73 
     | 
    
         
            +
                      when :describe_runtime_versions
         
     | 
| 
      
 74 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::DescribeRuntimeVersions.build(context)
         
     | 
| 
      
 75 
     | 
    
         
            +
                      when :disassociate_resource
         
     | 
| 
      
 76 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::DisassociateResource.build(context)
         
     | 
| 
      
 77 
     | 
    
         
            +
                      when :get_canary
         
     | 
| 
      
 78 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::GetCanary.build(context)
         
     | 
| 
      
 79 
     | 
    
         
            +
                      when :get_canary_runs
         
     | 
| 
      
 80 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::GetCanaryRuns.build(context)
         
     | 
| 
      
 81 
     | 
    
         
            +
                      when :get_group
         
     | 
| 
      
 82 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::GetGroup.build(context)
         
     | 
| 
      
 83 
     | 
    
         
            +
                      when :list_associated_groups
         
     | 
| 
      
 84 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::ListAssociatedGroups.build(context)
         
     | 
| 
      
 85 
     | 
    
         
            +
                      when :list_group_resources
         
     | 
| 
      
 86 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::ListGroupResources.build(context)
         
     | 
| 
      
 87 
     | 
    
         
            +
                      when :list_groups
         
     | 
| 
      
 88 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::ListGroups.build(context)
         
     | 
| 
      
 89 
     | 
    
         
            +
                      when :list_tags_for_resource
         
     | 
| 
      
 90 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::ListTagsForResource.build(context)
         
     | 
| 
      
 91 
     | 
    
         
            +
                      when :start_canary
         
     | 
| 
      
 92 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::StartCanary.build(context)
         
     | 
| 
      
 93 
     | 
    
         
            +
                      when :stop_canary
         
     | 
| 
      
 94 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::StopCanary.build(context)
         
     | 
| 
      
 95 
     | 
    
         
            +
                      when :tag_resource
         
     | 
| 
      
 96 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::TagResource.build(context)
         
     | 
| 
      
 97 
     | 
    
         
            +
                      when :untag_resource
         
     | 
| 
      
 98 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::UntagResource.build(context)
         
     | 
| 
      
 99 
     | 
    
         
            +
                      when :update_canary
         
     | 
| 
      
 100 
     | 
    
         
            +
                        Aws::Synthetics::Endpoints::UpdateCanary.build(context)
         
     | 
| 
      
 101 
     | 
    
         
            +
                      end
         
     | 
| 
      
 102 
     | 
    
         
            +
                    end
         
     | 
| 
      
 103 
     | 
    
         
            +
                  end
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
                  def add_handlers(handlers, _config)
         
     | 
| 
      
 106 
     | 
    
         
            +
                    handlers.add(Handler, step: :build, priority: 75)
         
     | 
| 
      
 107 
     | 
    
         
            +
                  end
         
     | 
| 
      
 108 
     | 
    
         
            +
                end
         
     | 
| 
      
 109 
     | 
    
         
            +
              end
         
     | 
| 
      
 110 
     | 
    
         
            +
            end
         
     |