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>
50
+
///<summary>Explicit operation timeout for connection to master node</summary>
32
51
publicTimeSpanMasterTimeout
33
52
{
34
53
get=>Q<TimeSpan>("master_timeout");
35
54
set=>Q("master_timeout",value);
36
55
}
37
56
38
-
///<summary>Should this request wait until the operation has completed before returning</summary>
57
+
///<summary>Should this request wait until the operation has completed before returning</summary>
39
58
publicbool?WaitForCompletion
40
59
{
41
60
get=>Q<bool?>("wait_for_completion");
42
61
set=>Q("wait_for_completion",value);
43
62
}
44
63
}
45
64
46
-
///<summary>Request options for CreateRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
65
+
///<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>
95
+
///<summary>Explicit operation timeout for connection to master node</summary>
77
96
publicTimeSpanMasterTimeout
78
97
{
79
98
get=>Q<TimeSpan>("master_timeout");
80
99
set=>Q("master_timeout",value);
81
100
}
82
101
}
83
102
84
-
///<summary>Request options for DeleteRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
103
+
///<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>
126
+
///<summary>Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown</summary>
108
127
publicbool?IgnoreUnavailable
109
128
{
110
129
get=>Q<bool?>("ignore_unavailable");
111
130
set=>Q("ignore_unavailable",value);
112
131
}
113
132
114
-
///<summary>Explicit operation timeout for connection to master node</summary>
133
+
///<summary>Explicit operation timeout for connection to master node</summary>
115
134
publicTimeSpanMasterTimeout
116
135
{
117
136
get=>Q<TimeSpan>("master_timeout");
118
137
set=>Q("master_timeout",value);
119
138
}
120
139
121
-
///<summary>Whether to show verbose snapshot info or only show the basic info found in the repository index blob</summary>
140
+
///<summary>Whether to show verbose snapshot info or only show the basic info found in the repository index blob</summary>
122
141
publicbool?Verbose
123
142
{
124
143
get=>Q<bool?>("verbose");
125
144
set=>Q("verbose",value);
126
145
}
127
146
}
128
147
129
-
///<summary>Request options for GetRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
148
+
///<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>
190
+
///<summary>Whether to ignore unavailable snapshots, defaults to false which means a SnapshotMissingException is thrown</summary>
172
191
publicbool?IgnoreUnavailable
173
192
{
174
193
get=>Q<bool?>("ignore_unavailable");
175
194
set=>Q("ignore_unavailable",value);
176
195
}
177
196
178
-
///<summary>Explicit operation timeout for connection to master node</summary>
197
+
///<summary>Explicit operation timeout for connection to master node</summary>
179
198
publicTimeSpanMasterTimeout
180
199
{
181
200
get=>Q<TimeSpan>("master_timeout");
182
201
set=>Q("master_timeout",value);
183
202
}
184
203
}
185
204
186
-
///<summary>Request options for VerifyRepository <para>https://www.elastic.co/guide/en/elasticsearch/reference/master/modules-snapshots.html</para></summary>
205
+
///<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