| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- // Code generated by model-api-gen. DO NOT EDIT.
- package ansibleserver
- import (
- time "time"
- "yunion.io/x/onecloud/pkg/apis"
- ansible "yunion.io/x/onecloud/pkg/util/ansible"
- )
- // SAnsiblePlaybook is an autogenerated struct via yunion.io/x/onecloud/pkg/ansibleserver/models.SAnsiblePlaybook.
- type SAnsiblePlaybook struct {
- apis.SVirtualResourceBase
- Playbook *ansible.Playbook `json:"playbook"`
- Output string `json:"output"`
- StartTime time.Time `json:"start_time"`
- EndTime time.Time `json:"end_time"`
- }
- // SAnsiblePlaybookInstance is an autogenerated struct via yunion.io/x/onecloud/pkg/ansibleserver/models.SAnsiblePlaybookInstance.
- type SAnsiblePlaybookInstance struct {
- apis.SStatusStandaloneResourceBase
- ReferenceId string `json:"reference_id"`
- Inventory string `json:"inventory"`
- Output string `json:"output"`
- StartTime time.Time `json:"start_time"`
- EndTime time.Time `json:"end_time"`
- }
- // SAnsiblePlaybookReference is an autogenerated struct via yunion.io/x/onecloud/pkg/ansibleserver/models.SAnsiblePlaybookReference.
- type SAnsiblePlaybookReference struct {
- apis.SSharableVirtualResourceBase
- PlaybookPath string `json:"playbook_path"`
- Method string `json:"method"`
- }
- // SAnsiblePlaybookV2 is an autogenerated struct via yunion.io/x/onecloud/pkg/ansibleserver/models.SAnsiblePlaybookV2.
- type SAnsiblePlaybookV2 struct {
- apis.SVirtualResourceBase
- Playbook string `json:"playbook"`
- Inventory string `json:"inventory"`
- Requirements string `json:"requirements"`
- Files string `json:"files"`
- Output string `json:"output"`
- StartTime time.Time `json:"start_time"`
- EndTime time.Time `json:"end_time"`
- CreatorMark string `json:"creator_mark"`
- }
|