Sha256: cb32659266bc1938fb5812e773830aaed7e914c9120805a713cf3ea5cd151d3f
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
# frozen_string_literal: true # Code generated for API Clients. DO NOT EDIT. require 'uri' module NgrokAPI module Models class IPPolicy attr_reader :client, :attrs, :id, :uri, :created_at, :description, :metadata, :action def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @id = @attrs['id'] unless @attrs['uri'].nil? @uri = URI(@attrs['uri']) end @created_at = @attrs['created_at'] @description = @attrs['description'] @metadata = @attrs['metadata'] @action = @attrs['action'] end def ==(other) @attrs == other.attrs end def to_s @attrs.to_s end def to_h @attrs.to_h end ## # Delete an IP policy. If the IP policy is referenced by another object for the # purposes of traffic restriction it will be treated as if the IP policy remains # but has zero rules. # # https://ngrok.com/docs/api#api-ip-policies-delete def delete @client.delete( id: @id ) end ## # Update attributes of an IP policy by ID # # https://ngrok.com/docs/api#api-ip-policies-update def update( description: nil, metadata: nil ) @description = description if description @metadata = metadata if metadata @client.update( id: @id, description: description, metadata: metadata ) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ngrok-api-0.21.0 | lib/ngrokapi/models/ip_policy.rb |