azure_mgmt_policy 0.16.0 → 0.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/lib/2015-10-01-preview/generated/azure_mgmt_policy/models/policy_definition.rb +1 -0
  3. data/lib/2015-10-01-preview/generated/azure_mgmt_policy/policy_client.rb +7 -6
  4. data/lib/2016-04-01/generated/azure_mgmt_policy/models/policy_definition.rb +1 -0
  5. data/lib/2016-04-01/generated/azure_mgmt_policy/policy_client.rb +7 -6
  6. data/lib/2016-12-01/generated/azure_mgmt_policy/policy_client.rb +7 -6
  7. data/lib/2017-06-01-preview/generated/azure_mgmt_policy/policy_client.rb +7 -6
  8. data/lib/2018-03-01/generated/azure_mgmt_policy.rb +41 -0
  9. data/lib/2018-03-01/generated/azure_mgmt_policy/models/error_response.rb +69 -0
  10. data/lib/2018-03-01/generated/azure_mgmt_policy/models/policy_assignment.rb +171 -0
  11. data/lib/2018-03-01/generated/azure_mgmt_policy/models/policy_assignment_list_result.rb +98 -0
  12. data/lib/2018-03-01/generated/azure_mgmt_policy/models/policy_definition.rb +153 -0
  13. data/lib/2018-03-01/generated/azure_mgmt_policy/models/policy_definition_list_result.rb +98 -0
  14. data/lib/2018-03-01/generated/azure_mgmt_policy/models/policy_definition_reference.rb +58 -0
  15. data/lib/2018-03-01/generated/azure_mgmt_policy/models/policy_mode.rb +17 -0
  16. data/lib/2018-03-01/generated/azure_mgmt_policy/models/policy_set_definition.rb +151 -0
  17. data/lib/2018-03-01/generated/azure_mgmt_policy/models/policy_set_definition_list_result.rb +99 -0
  18. data/lib/2018-03-01/generated/azure_mgmt_policy/models/policy_sku.rb +59 -0
  19. data/lib/2018-03-01/generated/azure_mgmt_policy/models/policy_type.rb +17 -0
  20. data/lib/2018-03-01/generated/azure_mgmt_policy/module_definition.rb +9 -0
  21. data/lib/2018-03-01/generated/azure_mgmt_policy/policy_assignments.rb +1885 -0
  22. data/lib/2018-03-01/generated/azure_mgmt_policy/policy_client.rb +139 -0
  23. data/lib/2018-03-01/generated/azure_mgmt_policy/policy_definitions.rb +1365 -0
  24. data/lib/2018-03-01/generated/azure_mgmt_policy/policy_set_definitions.rb +1388 -0
  25. data/lib/azure_mgmt_policy.rb +2 -1
  26. data/lib/profiles/latest/modules/policy_profile_module.rb +36 -44
  27. data/lib/version.rb +1 -1
  28. metadata +22 -5
@@ -0,0 +1,153 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::Policy::Mgmt::V2018_03_01
7
+ module Models
8
+ #
9
+ # The policy definition.
10
+ #
11
+ class PolicyDefinition
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [PolicyType] The type of policy definition. Possible values are
16
+ # NotSpecified, BuiltIn, and Custom. Possible values include:
17
+ # 'NotSpecified', 'BuiltIn', 'Custom'
18
+ attr_accessor :policy_type
19
+
20
+ # @return [PolicyMode] The policy definition mode. Possible values are
21
+ # NotSpecified, Indexed, and All. Possible values include:
22
+ # 'NotSpecified', 'Indexed', 'All'
23
+ attr_accessor :mode
24
+
25
+ # @return [String] The display name of the policy definition.
26
+ attr_accessor :display_name
27
+
28
+ # @return [String] The policy definition description.
29
+ attr_accessor :description
30
+
31
+ # @return The policy rule.
32
+ attr_accessor :policy_rule
33
+
34
+ # @return The policy definition metadata.
35
+ attr_accessor :metadata
36
+
37
+ # @return Required if a parameter is used in policy rule.
38
+ attr_accessor :parameters
39
+
40
+ # @return [String] The ID of the policy definition.
41
+ attr_accessor :id
42
+
43
+ # @return [String] The name of the policy definition.
44
+ attr_accessor :name
45
+
46
+ # @return [String] The type of the resource
47
+ # (Microsoft.Authorization/policyDefinitions).
48
+ attr_accessor :type
49
+
50
+
51
+ #
52
+ # Mapper for PolicyDefinition class as Ruby Hash.
53
+ # This will be used for serialization/deserialization.
54
+ #
55
+ def self.mapper()
56
+ {
57
+ client_side_validation: true,
58
+ required: false,
59
+ serialized_name: 'PolicyDefinition',
60
+ type: {
61
+ name: 'Composite',
62
+ class_name: 'PolicyDefinition',
63
+ model_properties: {
64
+ policy_type: {
65
+ client_side_validation: true,
66
+ required: false,
67
+ serialized_name: 'properties.policyType',
68
+ type: {
69
+ name: 'String'
70
+ }
71
+ },
72
+ mode: {
73
+ client_side_validation: true,
74
+ required: false,
75
+ serialized_name: 'properties.mode',
76
+ type: {
77
+ name: 'String'
78
+ }
79
+ },
80
+ display_name: {
81
+ client_side_validation: true,
82
+ required: false,
83
+ serialized_name: 'properties.displayName',
84
+ type: {
85
+ name: 'String'
86
+ }
87
+ },
88
+ description: {
89
+ client_side_validation: true,
90
+ required: false,
91
+ serialized_name: 'properties.description',
92
+ type: {
93
+ name: 'String'
94
+ }
95
+ },
96
+ policy_rule: {
97
+ client_side_validation: true,
98
+ required: false,
99
+ serialized_name: 'properties.policyRule',
100
+ type: {
101
+ name: 'Object'
102
+ }
103
+ },
104
+ metadata: {
105
+ client_side_validation: true,
106
+ required: false,
107
+ serialized_name: 'properties.metadata',
108
+ type: {
109
+ name: 'Object'
110
+ }
111
+ },
112
+ parameters: {
113
+ client_side_validation: true,
114
+ required: false,
115
+ serialized_name: 'properties.parameters',
116
+ type: {
117
+ name: 'Object'
118
+ }
119
+ },
120
+ id: {
121
+ client_side_validation: true,
122
+ required: false,
123
+ read_only: true,
124
+ serialized_name: 'id',
125
+ type: {
126
+ name: 'String'
127
+ }
128
+ },
129
+ name: {
130
+ client_side_validation: true,
131
+ required: false,
132
+ read_only: true,
133
+ serialized_name: 'name',
134
+ type: {
135
+ name: 'String'
136
+ }
137
+ },
138
+ type: {
139
+ client_side_validation: true,
140
+ required: false,
141
+ read_only: true,
142
+ serialized_name: 'type',
143
+ type: {
144
+ name: 'String'
145
+ }
146
+ }
147
+ }
148
+ }
149
+ }
150
+ end
151
+ end
152
+ end
153
+ end
@@ -0,0 +1,98 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::Policy::Mgmt::V2018_03_01
7
+ module Models
8
+ #
9
+ # List of policy definitions.
10
+ #
11
+ class PolicyDefinitionListResult
12
+
13
+ include MsRestAzure
14
+
15
+ include MsRest::JSONable
16
+ # @return [Array<PolicyDefinition>] An array of policy definitions.
17
+ attr_accessor :value
18
+
19
+ # @return [String] The URL to use for getting the next set of results.
20
+ attr_accessor :next_link
21
+
22
+ # return [Proc] with next page method call.
23
+ attr_accessor :next_method
24
+
25
+ #
26
+ # Gets the rest of the items for the request, enabling auto-pagination.
27
+ #
28
+ # @return [Array<PolicyDefinition>] operation results.
29
+ #
30
+ def get_all_items
31
+ items = @value
32
+ page = self
33
+ while page.next_link != nil do
34
+ page = page.get_next_page
35
+ items.concat(page.value)
36
+ end
37
+ items
38
+ end
39
+
40
+ #
41
+ # Gets the next page of results.
42
+ #
43
+ # @return [PolicyDefinitionListResult] with next page content.
44
+ #
45
+ def get_next_page
46
+ response = @next_method.call(@next_link).value! unless @next_method.nil?
47
+ unless response.nil?
48
+ @next_link = response.body.next_link
49
+ @value = response.body.value
50
+ self
51
+ end
52
+ end
53
+
54
+ #
55
+ # Mapper for PolicyDefinitionListResult class as Ruby Hash.
56
+ # This will be used for serialization/deserialization.
57
+ #
58
+ def self.mapper()
59
+ {
60
+ client_side_validation: true,
61
+ required: false,
62
+ serialized_name: 'PolicyDefinitionListResult',
63
+ type: {
64
+ name: 'Composite',
65
+ class_name: 'PolicyDefinitionListResult',
66
+ model_properties: {
67
+ value: {
68
+ client_side_validation: true,
69
+ required: false,
70
+ serialized_name: 'value',
71
+ type: {
72
+ name: 'Sequence',
73
+ element: {
74
+ client_side_validation: true,
75
+ required: false,
76
+ serialized_name: 'PolicyDefinitionElementType',
77
+ type: {
78
+ name: 'Composite',
79
+ class_name: 'PolicyDefinition'
80
+ }
81
+ }
82
+ }
83
+ },
84
+ next_link: {
85
+ client_side_validation: true,
86
+ required: false,
87
+ serialized_name: 'nextLink',
88
+ type: {
89
+ name: 'String'
90
+ }
91
+ }
92
+ }
93
+ }
94
+ }
95
+ end
96
+ end
97
+ end
98
+ end
@@ -0,0 +1,58 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::Policy::Mgmt::V2018_03_01
7
+ module Models
8
+ #
9
+ # The policy definition reference.
10
+ #
11
+ class PolicyDefinitionReference
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] The ID of the policy definition or policy set
16
+ # definition.
17
+ attr_accessor :policy_definition_id
18
+
19
+ # @return Required if a parameter is used in policy rule.
20
+ attr_accessor :parameters
21
+
22
+
23
+ #
24
+ # Mapper for PolicyDefinitionReference class as Ruby Hash.
25
+ # This will be used for serialization/deserialization.
26
+ #
27
+ def self.mapper()
28
+ {
29
+ client_side_validation: true,
30
+ required: false,
31
+ serialized_name: 'PolicyDefinitionReference',
32
+ type: {
33
+ name: 'Composite',
34
+ class_name: 'PolicyDefinitionReference',
35
+ model_properties: {
36
+ policy_definition_id: {
37
+ client_side_validation: true,
38
+ required: false,
39
+ serialized_name: 'policyDefinitionId',
40
+ type: {
41
+ name: 'String'
42
+ }
43
+ },
44
+ parameters: {
45
+ client_side_validation: true,
46
+ required: false,
47
+ serialized_name: 'parameters',
48
+ type: {
49
+ name: 'Object'
50
+ }
51
+ }
52
+ }
53
+ }
54
+ }
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,17 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::Policy::Mgmt::V2018_03_01
7
+ module Models
8
+ #
9
+ # Defines values for PolicyMode
10
+ #
11
+ module PolicyMode
12
+ NotSpecified = "NotSpecified"
13
+ Indexed = "Indexed"
14
+ All = "All"
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,151 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::Policy::Mgmt::V2018_03_01
7
+ module Models
8
+ #
9
+ # The policy set definition.
10
+ #
11
+ class PolicySetDefinition
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [PolicyType] The type of policy definition. Possible values are
16
+ # NotSpecified, BuiltIn, and Custom. Possible values include:
17
+ # 'NotSpecified', 'BuiltIn', 'Custom'
18
+ attr_accessor :policy_type
19
+
20
+ # @return [String] The display name of the policy set definition.
21
+ attr_accessor :display_name
22
+
23
+ # @return [String] The policy set definition description.
24
+ attr_accessor :description
25
+
26
+ # @return The policy set definition metadata.
27
+ attr_accessor :metadata
28
+
29
+ # @return The policy set definition parameters that can be used in policy
30
+ # definition references.
31
+ attr_accessor :parameters
32
+
33
+ # @return [Array<PolicyDefinitionReference>] An array of policy
34
+ # definition references.
35
+ attr_accessor :policy_definitions
36
+
37
+ # @return [String] The ID of the policy set definition.
38
+ attr_accessor :id
39
+
40
+ # @return [String] The name of the policy set definition.
41
+ attr_accessor :name
42
+
43
+ # @return [String] The type of the resource
44
+ # (Microsoft.Authorization/policySetDefinitions).
45
+ attr_accessor :type
46
+
47
+
48
+ #
49
+ # Mapper for PolicySetDefinition class as Ruby Hash.
50
+ # This will be used for serialization/deserialization.
51
+ #
52
+ def self.mapper()
53
+ {
54
+ client_side_validation: true,
55
+ required: false,
56
+ serialized_name: 'PolicySetDefinition',
57
+ type: {
58
+ name: 'Composite',
59
+ class_name: 'PolicySetDefinition',
60
+ model_properties: {
61
+ policy_type: {
62
+ client_side_validation: true,
63
+ required: false,
64
+ serialized_name: 'properties.policyType',
65
+ type: {
66
+ name: 'String'
67
+ }
68
+ },
69
+ display_name: {
70
+ client_side_validation: true,
71
+ required: false,
72
+ serialized_name: 'properties.displayName',
73
+ type: {
74
+ name: 'String'
75
+ }
76
+ },
77
+ description: {
78
+ client_side_validation: true,
79
+ required: false,
80
+ serialized_name: 'properties.description',
81
+ type: {
82
+ name: 'String'
83
+ }
84
+ },
85
+ metadata: {
86
+ client_side_validation: true,
87
+ required: false,
88
+ serialized_name: 'properties.metadata',
89
+ type: {
90
+ name: 'Object'
91
+ }
92
+ },
93
+ parameters: {
94
+ client_side_validation: true,
95
+ required: false,
96
+ serialized_name: 'properties.parameters',
97
+ type: {
98
+ name: 'Object'
99
+ }
100
+ },
101
+ policy_definitions: {
102
+ client_side_validation: true,
103
+ required: true,
104
+ serialized_name: 'properties.policyDefinitions',
105
+ type: {
106
+ name: 'Sequence',
107
+ element: {
108
+ client_side_validation: true,
109
+ required: false,
110
+ serialized_name: 'PolicyDefinitionReferenceElementType',
111
+ type: {
112
+ name: 'Composite',
113
+ class_name: 'PolicyDefinitionReference'
114
+ }
115
+ }
116
+ }
117
+ },
118
+ id: {
119
+ client_side_validation: true,
120
+ required: false,
121
+ read_only: true,
122
+ serialized_name: 'id',
123
+ type: {
124
+ name: 'String'
125
+ }
126
+ },
127
+ name: {
128
+ client_side_validation: true,
129
+ required: false,
130
+ read_only: true,
131
+ serialized_name: 'name',
132
+ type: {
133
+ name: 'String'
134
+ }
135
+ },
136
+ type: {
137
+ client_side_validation: true,
138
+ required: false,
139
+ read_only: true,
140
+ serialized_name: 'type',
141
+ type: {
142
+ name: 'String'
143
+ }
144
+ }
145
+ }
146
+ }
147
+ }
148
+ end
149
+ end
150
+ end
151
+ end