File tree Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Original file line number Diff line number Diff line change @@ -295,6 +295,24 @@ C:\\WINDOWS\\System32
295295../relative_path
296296```
297297
298+ #### ` Stdlib::Ensure::Service `
299+
300+ サービスリソースの使用可能なensure値と一致します。
301+
302+ 使用可能なインプット例:
303+
304+ ``` shell
305+ 停止済み
306+ 実行中
307+ ```
308+
309+ 使用不可能なインプット例:
310+
311+ ``` shell
312+ true
313+ false
314+ ```
315+
298316#### ` Stdlib::Httpsurl `
299317
300318HTTPS URLに一致します。
@@ -351,6 +369,30 @@ Unixオペレーティングシステムのパスに一致します。
351369C:/whatever
352370` ` `
353371
372+ # ### `Stdlib::Filemode`
373+
374+ 8進数で有効な4桁モードと一致します。
375+
376+ 使用可能なインプット例:
377+
378+ ` ` ` shell
379+ 0644
380+ ` ` `
381+
382+ ` ` ` shell
383+ 1777
384+ ` ` `
385+
386+ 使用不可能なインプット例:
387+
388+ ` ` ` shell
389+ 644
390+ ` ` `
391+
392+ ` ` ` shell
393+ 0999
394+ ` ` `
395+
354396# ### `Stdlib::Windowspath`
355397
356398Windowsオペレーティングシステムのパスに一致します。
@@ -1651,6 +1693,22 @@ shell_split('foo\ bar ba\"z') => ['foo bar', 'ba"z']
16511693
16521694* タイプ* : 右辺値
16531695
1696+ #### ` sprintf_hash `
1697+
1698+ 名前が指定されたテキストのリファレンスでprintfスタイルのフォーマットを実行します。
1699+
1700+ 最初のパラメータは、ハッシュ内での残りのパラメータのフォーマット方法を記述するフォーマット文字列です。詳細については、Rubyの` Kernel::sprintf ` 機能のマニュアルを参照してください。
1701+
1702+ 例:
1703+
1704+ ``` puppet
1705+ $output = sprintf_hash('String: %<foo>s / number converted to binary: %<number>b',
1706+ { 'foo' => 'a string', 'number' => 5 })
1707+ # $output = 'String: a string / number converted to binary: 101'
1708+ ```
1709+
1710+ * Type* : rvalue
1711+
16541712#### ` sort `
16551713
16561714文字列と配列を語彙的に分類します。
You can’t perform that action at this time.
0 commit comments