File: waiters.rbs

package info (click to toggle)
ruby-aws-sdk-cloudformation 1.149.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,716 kB
  • sloc: ruby: 7,185; makefile: 4
file content (122 lines) | stat: -rw-r--r-- 5,212 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# WARNING ABOUT GENERATED CODE
#
# This file is generated. See the contributing guide for more information:
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
#
# WARNING ABOUT GENERATED CODE

module Aws
  module CloudFormation
    module Waiters

      class ChangeSetCreateComplete
        def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
                      | (?Hash[Symbol, untyped]) -> void

        def wait: (
                    change_set_name: ::String,
                    ?stack_name: ::String,
                    ?next_token: ::String,
                    ?include_property_values: bool
                  ) -> Client::_DescribeChangeSetResponseSuccess
                | (Hash[Symbol, untyped]) -> Client::_DescribeChangeSetResponseSuccess
      end

      class StackCreateComplete
        def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
                      | (?Hash[Symbol, untyped]) -> void

        def wait: (
                    ?stack_name: ::String,
                    ?next_token: ::String
                  ) -> Client::_DescribeStacksResponseSuccess
                | (?Hash[Symbol, untyped]) -> Client::_DescribeStacksResponseSuccess
      end

      class StackDeleteComplete
        def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
                      | (?Hash[Symbol, untyped]) -> void

        def wait: (
                    ?stack_name: ::String,
                    ?next_token: ::String
                  ) -> Client::_DescribeStacksResponseSuccess
                | (?Hash[Symbol, untyped]) -> Client::_DescribeStacksResponseSuccess
      end

      class StackExists
        def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
                      | (?Hash[Symbol, untyped]) -> void

        def wait: (
                    ?stack_name: ::String,
                    ?next_token: ::String
                  ) -> Client::_DescribeStacksResponseSuccess
                | (?Hash[Symbol, untyped]) -> Client::_DescribeStacksResponseSuccess
      end

      class StackImportComplete
        def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
                      | (?Hash[Symbol, untyped]) -> void

        def wait: (
                    ?stack_name: ::String,
                    ?next_token: ::String
                  ) -> Client::_DescribeStacksResponseSuccess
                | (?Hash[Symbol, untyped]) -> Client::_DescribeStacksResponseSuccess
      end

      class StackRefactorCreateComplete
        def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
                      | (?Hash[Symbol, untyped]) -> void

        def wait: (
                    stack_refactor_id: ::String
                  ) -> Client::_DescribeStackRefactorResponseSuccess
                | (Hash[Symbol, untyped]) -> Client::_DescribeStackRefactorResponseSuccess
      end

      class StackRefactorExecuteComplete
        def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
                      | (?Hash[Symbol, untyped]) -> void

        def wait: (
                    stack_refactor_id: ::String
                  ) -> Client::_DescribeStackRefactorResponseSuccess
                | (Hash[Symbol, untyped]) -> Client::_DescribeStackRefactorResponseSuccess
      end

      class StackRollbackComplete
        def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
                      | (?Hash[Symbol, untyped]) -> void

        def wait: (
                    ?stack_name: ::String,
                    ?next_token: ::String
                  ) -> Client::_DescribeStacksResponseSuccess
                | (?Hash[Symbol, untyped]) -> Client::_DescribeStacksResponseSuccess
      end

      class StackUpdateComplete
        def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
                      | (?Hash[Symbol, untyped]) -> void

        def wait: (
                    ?stack_name: ::String,
                    ?next_token: ::String
                  ) -> Client::_DescribeStacksResponseSuccess
                | (?Hash[Symbol, untyped]) -> Client::_DescribeStacksResponseSuccess
      end

      class TypeRegistrationComplete
        def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
                      | (?Hash[Symbol, untyped]) -> void

        def wait: (
                    registration_token: ::String
                  ) -> Client::_DescribeTypeRegistrationResponseSuccess
                | (Hash[Symbol, untyped]) -> Client::_DescribeTypeRegistrationResponseSuccess
      end
    end
  end
end