You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
///<summary>Request options for Snapshot <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
27
+
///<summary>Request options for CleanupRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
///<summary>Explicit operation timeout for connection to master node</summary>
51
+
///<summary>Explicit operation timeout for connection to master node</summary>
33
52
publicTimeSpanMasterTimeout
34
53
{
35
54
get=>Q<TimeSpan>("master_timeout");
36
55
set=>Q("master_timeout",value);
37
56
}
38
57
39
-
///<summary>Should this request wait until the operation has completed before returning</summary>
58
+
///<summary>Should this request wait until the operation has completed before returning</summary>
40
59
publicbool?WaitForCompletion
41
60
{
42
61
get=>Q<bool?>("wait_for_completion");
43
62
set=>Q("wait_for_completion",value);
44
63
}
45
64
}
46
65
47
-
///<summary>Request options for CreateRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
66
+
///<summary>Request options for CreateRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
///<summary>Explicit operation timeout for connection to master node</summary>
98
+
///<summary>Explicit operation timeout for connection to master node</summary>
80
99
publicTimeSpanMasterTimeout
81
100
{
82
101
get=>Q<TimeSpan>("master_timeout");
83
102
set=>Q("master_timeout",value);
84
103
}
85
104
}
86
105
87
-
///<summary>Request options for DeleteRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
106
+
///<summary>Request options for DeleteRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
///<summary>Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown</summary>
131
+
///<summary>Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown</summary>
113
132
publicbool?IgnoreUnavailable
114
133
{
115
134
get=>Q<bool?>("ignore_unavailable");
116
135
set=>Q("ignore_unavailable",value);
117
136
}
118
137
119
-
///<summary>Explicit operation timeout for connection to master node</summary>
138
+
///<summary>Explicit operation timeout for connection to master node</summary>
120
139
publicTimeSpanMasterTimeout
121
140
{
122
141
get=>Q<TimeSpan>("master_timeout");
123
142
set=>Q("master_timeout",value);
124
143
}
125
144
126
-
///<summary>Whether to show verbose snapshot info or only show the basic info found in the repository index blob</summary>
145
+
///<summary>Whether to show verbose snapshot info or only show the basic info found in the repository index blob</summary>
127
146
publicbool?Verbose
128
147
{
129
148
get=>Q<bool?>("verbose");
130
149
set=>Q("verbose",value);
131
150
}
132
151
}
133
152
134
-
///<summary>Request options for GetRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
153
+
///<summary>Request options for GetRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
///<summary>Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown</summary>
198
+
///<summary>Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown</summary>
180
199
publicbool?IgnoreUnavailable
181
200
{
182
201
get=>Q<bool?>("ignore_unavailable");
183
202
set=>Q("ignore_unavailable",value);
184
203
}
185
204
186
-
///<summary>Explicit operation timeout for connection to master node</summary>
205
+
///<summary>Explicit operation timeout for connection to master node</summary>
187
206
publicTimeSpanMasterTimeout
188
207
{
189
208
get=>Q<TimeSpan>("master_timeout");
190
209
set=>Q("master_timeout",value);
191
210
}
192
211
}
193
212
194
-
///<summary>Request options for VerifyRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
213
+
///<summary>Request options for VerifyRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
///<summary>POST on /_snapshot/{repository}/_cleanup <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
47
+
///<param name = "repository">A repository name</param>
48
+
///<param name = "body"></param>
49
+
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>POST on /_snapshot/{repository}/_cleanup <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
53
+
///<param name = "repository">A repository name</param>
54
+
///<param name = "body"></param>
55
+
///<param name = "requestParameters">Request specific configuration such as querystring parameters & request specific connection settings.</param>
///<summary>PUT on /_snapshot/{repository}/{snapshot} <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
47
59
///<param name = "repository">A repository name</param>
48
60
///<param name = "snapshot">A snapshot name</param>
0 commit comments