Class: Azure::Network::Mgmt::V2016_12_01::Models::PatchRouteFilterRule

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-12-01/generated/azure_mgmt_network/models/patch_route_filter_rule.rb

Overview

Route Filter Rule Resource

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#accessAccess

‘Allow’, ‘Deny’. Possible values include: ‘Allow’, ‘Deny’

Returns:

  • (Access)

    The access type of the rule. Valid values are:



17
18
19
# File 'lib/2016-12-01/generated/azure_mgmt_network/models/patch_route_filter_rule.rb', line 17

def access
  @access
end

#communitiesArray<String>

filter on. e.g. [‘12076:5010’,‘12076:5020’]

Returns:

  • (Array<String>)

    The collection for bgp community values to



25
26
27
# File 'lib/2016-12-01/generated/azure_mgmt_network/models/patch_route_filter_rule.rb', line 25

def communities
  @communities
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



37
38
39
# File 'lib/2016-12-01/generated/azure_mgmt_network/models/patch_route_filter_rule.rb', line 37

def etag
  @etag
end

#nameString

resource group. This name can be used to access the resource.

Returns:

  • (String)

    The name of the resource that is unique within a



33
34
35
# File 'lib/2016-12-01/generated/azure_mgmt_network/models/patch_route_filter_rule.rb', line 33

def name
  @name
end

#provisioning_stateString

values are: ‘Updating’, ‘Deleting’, ‘Succeeded’ and ‘Failed’.

Returns:

  • (String)

    The provisioning state of the resource. Possible



29
30
31
# File 'lib/2016-12-01/generated/azure_mgmt_network/models/patch_route_filter_rule.rb', line 29

def provisioning_state
  @provisioning_state
end

#route_filter_rule_typeString

‘Community’. Default value: ‘Community’ .

Returns:

  • (String)

    The rule type of the rule. Valid value is:



21
22
23
# File 'lib/2016-12-01/generated/azure_mgmt_network/models/patch_route_filter_rule.rb', line 21

def route_filter_rule_type
  @route_filter_rule_type
end

#tagsHash{String => String}

Returns Resource tags.

Returns:

  • (Hash{String => String})

    Resource tags.



40
41
42
# File 'lib/2016-12-01/generated/azure_mgmt_network/models/patch_route_filter_rule.rb', line 40

def tags
  @tags
end

Class Method Details

.mapperObject

Mapper for PatchRouteFilterRule class as Ruby Hash. This will be used for serialization/deserialization.



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/2016-12-01/generated/azure_mgmt_network/models/patch_route_filter_rule.rb', line 47

def self.mapper()
  {
    required: false,
    serialized_name: 'PatchRouteFilterRule',
    type: {
      name: 'Composite',
      class_name: 'PatchRouteFilterRule',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        access: {
          required: true,
          serialized_name: 'properties.access',
          type: {
            name: 'String'
          }
        },
        route_filter_rule_type: {
          required: true,
          is_constant: true,
          serialized_name: 'properties.routeFilterRuleType',
          default_value: 'Community',
          type: {
            name: 'String'
          }
        },
        communities: {
          required: true,
          serialized_name: 'properties.communities',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        provisioning_state: {
          required: false,
          read_only: true,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        name: {
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          required: false,
          read_only: true,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        },
        tags: {
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end