Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR network/resource-manager] Model ContainerNic refs under ContainerNicConfig as sub resources #3794

Merged
merged 1 commit into from
Nov 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ContainerNetworkInterfaceConfiguration(SubResource):
:param container_network_interfaces: A list of container network
interfaces created from this container network interface configuration.
:type container_network_interfaces:
list[~azure.mgmt.network.v2018_08_01.models.ContainerNetworkInterface]
list[~azure.mgmt.network.v2018_08_01.models.SubResource]
:ivar provisioning_state: The provisioning state of the resource.
:vartype provisioning_state: str
:param name: The name of the resource. This name can be used to access the
Expand All @@ -48,7 +48,7 @@ class ContainerNetworkInterfaceConfiguration(SubResource):
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[IPConfigurationProfile]'},
'container_network_interfaces': {'key': 'properties.containerNetworkInterfaces', 'type': '[ContainerNetworkInterface]'},
'container_network_interfaces': {'key': 'properties.containerNetworkInterfaces', 'type': '[SubResource]'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class ContainerNetworkInterfaceConfiguration(SubResource):
:param container_network_interfaces: A list of container network
interfaces created from this container network interface configuration.
:type container_network_interfaces:
list[~azure.mgmt.network.v2018_08_01.models.ContainerNetworkInterface]
list[~azure.mgmt.network.v2018_08_01.models.SubResource]
:ivar provisioning_state: The provisioning state of the resource.
:vartype provisioning_state: str
:param name: The name of the resource. This name can be used to access the
Expand All @@ -48,7 +48,7 @@ class ContainerNetworkInterfaceConfiguration(SubResource):
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'ip_configurations': {'key': 'properties.ipConfigurations', 'type': '[IPConfigurationProfile]'},
'container_network_interfaces': {'key': 'properties.containerNetworkInterfaces', 'type': '[ContainerNetworkInterface]'},
'container_network_interfaces': {'key': 'properties.containerNetworkInterfaces', 'type': '[SubResource]'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
Expand Down