Class: Google::Cloud::Compute::V1::FirewallPolicies::Rest::Client::Configuration
- Inherits:
-
Object
- Object
- Google::Cloud::Compute::V1::FirewallPolicies::Rest::Client::Configuration
- Extended by:
- Gapic::Config
- Defined in:
- lib/google/cloud/compute/v1/firewall_policies/rest/client.rb
Overview
Configuration class for the FirewallPolicies REST API.
This class represents the configuration for FirewallPolicies REST, providing control over credentials, timeouts, retry behavior, logging.
Configuration can be applied globally to all clients, or to a single client on construction.
Examples
To modify the global config, setting the timeout for all calls to 10 seconds:
::Google::Cloud::Compute::V1::FirewallPolicies::Client.configure do |config|
config.timeout = 10.0
end
To apply the above configuration only to a new client:
client = ::Google::Cloud::Compute::V1::FirewallPolicies::Client.new do |config|
config.timeout = 10.0
end
Defined Under Namespace
Classes: Rpcs
Instance Attribute Summary collapse
-
#credentials ⇒ ::Object
Credentials to send with calls.
-
#endpoint ⇒ ::String
The hostname or hostname:port of the service endpoint.
-
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging.
-
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging.
-
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional REST headers to be sent with the call.
-
#scope ⇒ ::Array<::String>
The OAuth scopes.
-
#timeout ⇒ ::Numeric
The call timeout in seconds.
Instance Method Summary collapse
-
#rpcs ⇒ Rpcs
Configurations for individual RPCs.
Instance Attribute Details
#credentials ⇒ ::Object
Credentials to send with calls. You may provide any of the following types:
- (
String) The path to a service account key file in JSON format - (
Hash) A service account key as a Hash - (
Google::Auth::Credentials) A googleauth credentials object (see the googleauth docs) - (
Signet::OAuth2::Client) A signet oauth2 client object (see the signet docs) - (
nil) indicating no credentials
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 |
# File 'lib/google/cloud/compute/v1/firewall_policies/rest/client.rb', line 1473 class Configuration extend ::Gapic::Config config_attr :endpoint, "compute.googleapis.com", ::String config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the FirewallPolicies API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # # there is one other field (`retry_policy`) that can be set # but is currently not supported for REST Gapic libraries. # class Rpcs ## # RPC-specific configuration for `add_association` # @return [::Gapic::Config::Method] # attr_reader :add_association ## # RPC-specific configuration for `add_rule` # @return [::Gapic::Config::Method] # attr_reader :add_rule ## # RPC-specific configuration for `clone_rules` # @return [::Gapic::Config::Method] # attr_reader :clone_rules ## # RPC-specific configuration for `delete` # @return [::Gapic::Config::Method] # attr_reader :delete ## # RPC-specific configuration for `get` # @return [::Gapic::Config::Method] # attr_reader :get ## # RPC-specific configuration for `get_association` # @return [::Gapic::Config::Method] # attr_reader :get_association ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `get_rule` # @return [::Gapic::Config::Method] # attr_reader :get_rule ## # RPC-specific configuration for `insert` # @return [::Gapic::Config::Method] # attr_reader :insert ## # RPC-specific configuration for `list` # @return [::Gapic::Config::Method] # attr_reader :list ## # RPC-specific configuration for `list_associations` # @return [::Gapic::Config::Method] # attr_reader :list_associations ## # RPC-specific configuration for `move` # @return [::Gapic::Config::Method] # attr_reader :move ## # RPC-specific configuration for `patch` # @return [::Gapic::Config::Method] # attr_reader :patch ## # RPC-specific configuration for `patch_rule` # @return [::Gapic::Config::Method] # attr_reader :patch_rule ## # RPC-specific configuration for `remove_association` # @return [::Gapic::Config::Method] # attr_reader :remove_association ## # RPC-specific configuration for `remove_rule` # @return [::Gapic::Config::Method] # attr_reader :remove_rule ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil add_association_config = parent_rpcs.add_association if parent_rpcs.respond_to? :add_association @add_association = ::Gapic::Config::Method.new add_association_config add_rule_config = parent_rpcs.add_rule if parent_rpcs.respond_to? :add_rule @add_rule = ::Gapic::Config::Method.new add_rule_config clone_rules_config = parent_rpcs.clone_rules if parent_rpcs.respond_to? :clone_rules @clone_rules = ::Gapic::Config::Method.new clone_rules_config delete_config = parent_rpcs.delete if parent_rpcs.respond_to? :delete @delete = ::Gapic::Config::Method.new delete_config get_config = parent_rpcs.get if parent_rpcs.respond_to? :get @get = ::Gapic::Config::Method.new get_config get_association_config = parent_rpcs.get_association if parent_rpcs.respond_to? :get_association @get_association = ::Gapic::Config::Method.new get_association_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config get_rule_config = parent_rpcs.get_rule if parent_rpcs.respond_to? :get_rule @get_rule = ::Gapic::Config::Method.new get_rule_config insert_config = parent_rpcs.insert if parent_rpcs.respond_to? :insert @insert = ::Gapic::Config::Method.new insert_config list_config = parent_rpcs.list if parent_rpcs.respond_to? :list @list = ::Gapic::Config::Method.new list_config list_associations_config = parent_rpcs.list_associations if parent_rpcs.respond_to? :list_associations @list_associations = ::Gapic::Config::Method.new list_associations_config move_config = parent_rpcs.move if parent_rpcs.respond_to? :move @move = ::Gapic::Config::Method.new move_config patch_config = parent_rpcs.patch if parent_rpcs.respond_to? :patch @patch = ::Gapic::Config::Method.new patch_config patch_rule_config = parent_rpcs.patch_rule if parent_rpcs.respond_to? :patch_rule @patch_rule = ::Gapic::Config::Method.new patch_rule_config remove_association_config = parent_rpcs.remove_association if parent_rpcs.respond_to? :remove_association @remove_association = ::Gapic::Config::Method.new remove_association_config remove_rule_config = parent_rpcs.remove_rule if parent_rpcs.respond_to? :remove_rule @remove_rule = ::Gapic::Config::Method.new remove_rule_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#endpoint ⇒ ::String
The hostname or hostname:port of the service endpoint.
Defaults to "compute.googleapis.com".
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 |
# File 'lib/google/cloud/compute/v1/firewall_policies/rest/client.rb', line 1473 class Configuration extend ::Gapic::Config config_attr :endpoint, "compute.googleapis.com", ::String config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the FirewallPolicies API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # # there is one other field (`retry_policy`) that can be set # but is currently not supported for REST Gapic libraries. # class Rpcs ## # RPC-specific configuration for `add_association` # @return [::Gapic::Config::Method] # attr_reader :add_association ## # RPC-specific configuration for `add_rule` # @return [::Gapic::Config::Method] # attr_reader :add_rule ## # RPC-specific configuration for `clone_rules` # @return [::Gapic::Config::Method] # attr_reader :clone_rules ## # RPC-specific configuration for `delete` # @return [::Gapic::Config::Method] # attr_reader :delete ## # RPC-specific configuration for `get` # @return [::Gapic::Config::Method] # attr_reader :get ## # RPC-specific configuration for `get_association` # @return [::Gapic::Config::Method] # attr_reader :get_association ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `get_rule` # @return [::Gapic::Config::Method] # attr_reader :get_rule ## # RPC-specific configuration for `insert` # @return [::Gapic::Config::Method] # attr_reader :insert ## # RPC-specific configuration for `list` # @return [::Gapic::Config::Method] # attr_reader :list ## # RPC-specific configuration for `list_associations` # @return [::Gapic::Config::Method] # attr_reader :list_associations ## # RPC-specific configuration for `move` # @return [::Gapic::Config::Method] # attr_reader :move ## # RPC-specific configuration for `patch` # @return [::Gapic::Config::Method] # attr_reader :patch ## # RPC-specific configuration for `patch_rule` # @return [::Gapic::Config::Method] # attr_reader :patch_rule ## # RPC-specific configuration for `remove_association` # @return [::Gapic::Config::Method] # attr_reader :remove_association ## # RPC-specific configuration for `remove_rule` # @return [::Gapic::Config::Method] # attr_reader :remove_rule ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil add_association_config = parent_rpcs.add_association if parent_rpcs.respond_to? :add_association @add_association = ::Gapic::Config::Method.new add_association_config add_rule_config = parent_rpcs.add_rule if parent_rpcs.respond_to? :add_rule @add_rule = ::Gapic::Config::Method.new add_rule_config clone_rules_config = parent_rpcs.clone_rules if parent_rpcs.respond_to? :clone_rules @clone_rules = ::Gapic::Config::Method.new clone_rules_config delete_config = parent_rpcs.delete if parent_rpcs.respond_to? :delete @delete = ::Gapic::Config::Method.new delete_config get_config = parent_rpcs.get if parent_rpcs.respond_to? :get @get = ::Gapic::Config::Method.new get_config get_association_config = parent_rpcs.get_association if parent_rpcs.respond_to? :get_association @get_association = ::Gapic::Config::Method.new get_association_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config get_rule_config = parent_rpcs.get_rule if parent_rpcs.respond_to? :get_rule @get_rule = ::Gapic::Config::Method.new get_rule_config insert_config = parent_rpcs.insert if parent_rpcs.respond_to? :insert @insert = ::Gapic::Config::Method.new insert_config list_config = parent_rpcs.list if parent_rpcs.respond_to? :list @list = ::Gapic::Config::Method.new list_config list_associations_config = parent_rpcs.list_associations if parent_rpcs.respond_to? :list_associations @list_associations = ::Gapic::Config::Method.new list_associations_config move_config = parent_rpcs.move if parent_rpcs.respond_to? :move @move = ::Gapic::Config::Method.new move_config patch_config = parent_rpcs.patch if parent_rpcs.respond_to? :patch @patch = ::Gapic::Config::Method.new patch_config patch_rule_config = parent_rpcs.patch_rule if parent_rpcs.respond_to? :patch_rule @patch_rule = ::Gapic::Config::Method.new patch_rule_config remove_association_config = parent_rpcs.remove_association if parent_rpcs.respond_to? :remove_association @remove_association = ::Gapic::Config::Method.new remove_association_config remove_rule_config = parent_rpcs.remove_rule if parent_rpcs.respond_to? :remove_rule @remove_rule = ::Gapic::Config::Method.new remove_rule_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 |
# File 'lib/google/cloud/compute/v1/firewall_policies/rest/client.rb', line 1473 class Configuration extend ::Gapic::Config config_attr :endpoint, "compute.googleapis.com", ::String config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the FirewallPolicies API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # # there is one other field (`retry_policy`) that can be set # but is currently not supported for REST Gapic libraries. # class Rpcs ## # RPC-specific configuration for `add_association` # @return [::Gapic::Config::Method] # attr_reader :add_association ## # RPC-specific configuration for `add_rule` # @return [::Gapic::Config::Method] # attr_reader :add_rule ## # RPC-specific configuration for `clone_rules` # @return [::Gapic::Config::Method] # attr_reader :clone_rules ## # RPC-specific configuration for `delete` # @return [::Gapic::Config::Method] # attr_reader :delete ## # RPC-specific configuration for `get` # @return [::Gapic::Config::Method] # attr_reader :get ## # RPC-specific configuration for `get_association` # @return [::Gapic::Config::Method] # attr_reader :get_association ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `get_rule` # @return [::Gapic::Config::Method] # attr_reader :get_rule ## # RPC-specific configuration for `insert` # @return [::Gapic::Config::Method] # attr_reader :insert ## # RPC-specific configuration for `list` # @return [::Gapic::Config::Method] # attr_reader :list ## # RPC-specific configuration for `list_associations` # @return [::Gapic::Config::Method] # attr_reader :list_associations ## # RPC-specific configuration for `move` # @return [::Gapic::Config::Method] # attr_reader :move ## # RPC-specific configuration for `patch` # @return [::Gapic::Config::Method] # attr_reader :patch ## # RPC-specific configuration for `patch_rule` # @return [::Gapic::Config::Method] # attr_reader :patch_rule ## # RPC-specific configuration for `remove_association` # @return [::Gapic::Config::Method] # attr_reader :remove_association ## # RPC-specific configuration for `remove_rule` # @return [::Gapic::Config::Method] # attr_reader :remove_rule ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil add_association_config = parent_rpcs.add_association if parent_rpcs.respond_to? :add_association @add_association = ::Gapic::Config::Method.new add_association_config add_rule_config = parent_rpcs.add_rule if parent_rpcs.respond_to? :add_rule @add_rule = ::Gapic::Config::Method.new add_rule_config clone_rules_config = parent_rpcs.clone_rules if parent_rpcs.respond_to? :clone_rules @clone_rules = ::Gapic::Config::Method.new clone_rules_config delete_config = parent_rpcs.delete if parent_rpcs.respond_to? :delete @delete = ::Gapic::Config::Method.new delete_config get_config = parent_rpcs.get if parent_rpcs.respond_to? :get @get = ::Gapic::Config::Method.new get_config get_association_config = parent_rpcs.get_association if parent_rpcs.respond_to? :get_association @get_association = ::Gapic::Config::Method.new get_association_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config get_rule_config = parent_rpcs.get_rule if parent_rpcs.respond_to? :get_rule @get_rule = ::Gapic::Config::Method.new get_rule_config insert_config = parent_rpcs.insert if parent_rpcs.respond_to? :insert @insert = ::Gapic::Config::Method.new insert_config list_config = parent_rpcs.list if parent_rpcs.respond_to? :list @list = ::Gapic::Config::Method.new list_config list_associations_config = parent_rpcs.list_associations if parent_rpcs.respond_to? :list_associations @list_associations = ::Gapic::Config::Method.new list_associations_config move_config = parent_rpcs.move if parent_rpcs.respond_to? :move @move = ::Gapic::Config::Method.new move_config patch_config = parent_rpcs.patch if parent_rpcs.respond_to? :patch @patch = ::Gapic::Config::Method.new patch_config patch_rule_config = parent_rpcs.patch_rule if parent_rpcs.respond_to? :patch_rule @patch_rule = ::Gapic::Config::Method.new patch_rule_config remove_association_config = parent_rpcs.remove_association if parent_rpcs.respond_to? :remove_association @remove_association = ::Gapic::Config::Method.new remove_association_config remove_rule_config = parent_rpcs.remove_rule if parent_rpcs.respond_to? :remove_rule @remove_rule = ::Gapic::Config::Method.new remove_rule_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 |
# File 'lib/google/cloud/compute/v1/firewall_policies/rest/client.rb', line 1473 class Configuration extend ::Gapic::Config config_attr :endpoint, "compute.googleapis.com", ::String config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the FirewallPolicies API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # # there is one other field (`retry_policy`) that can be set # but is currently not supported for REST Gapic libraries. # class Rpcs ## # RPC-specific configuration for `add_association` # @return [::Gapic::Config::Method] # attr_reader :add_association ## # RPC-specific configuration for `add_rule` # @return [::Gapic::Config::Method] # attr_reader :add_rule ## # RPC-specific configuration for `clone_rules` # @return [::Gapic::Config::Method] # attr_reader :clone_rules ## # RPC-specific configuration for `delete` # @return [::Gapic::Config::Method] # attr_reader :delete ## # RPC-specific configuration for `get` # @return [::Gapic::Config::Method] # attr_reader :get ## # RPC-specific configuration for `get_association` # @return [::Gapic::Config::Method] # attr_reader :get_association ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `get_rule` # @return [::Gapic::Config::Method] # attr_reader :get_rule ## # RPC-specific configuration for `insert` # @return [::Gapic::Config::Method] # attr_reader :insert ## # RPC-specific configuration for `list` # @return [::Gapic::Config::Method] # attr_reader :list ## # RPC-specific configuration for `list_associations` # @return [::Gapic::Config::Method] # attr_reader :list_associations ## # RPC-specific configuration for `move` # @return [::Gapic::Config::Method] # attr_reader :move ## # RPC-specific configuration for `patch` # @return [::Gapic::Config::Method] # attr_reader :patch ## # RPC-specific configuration for `patch_rule` # @return [::Gapic::Config::Method] # attr_reader :patch_rule ## # RPC-specific configuration for `remove_association` # @return [::Gapic::Config::Method] # attr_reader :remove_association ## # RPC-specific configuration for `remove_rule` # @return [::Gapic::Config::Method] # attr_reader :remove_rule ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil add_association_config = parent_rpcs.add_association if parent_rpcs.respond_to? :add_association @add_association = ::Gapic::Config::Method.new add_association_config add_rule_config = parent_rpcs.add_rule if parent_rpcs.respond_to? :add_rule @add_rule = ::Gapic::Config::Method.new add_rule_config clone_rules_config = parent_rpcs.clone_rules if parent_rpcs.respond_to? :clone_rules @clone_rules = ::Gapic::Config::Method.new clone_rules_config delete_config = parent_rpcs.delete if parent_rpcs.respond_to? :delete @delete = ::Gapic::Config::Method.new delete_config get_config = parent_rpcs.get if parent_rpcs.respond_to? :get @get = ::Gapic::Config::Method.new get_config get_association_config = parent_rpcs.get_association if parent_rpcs.respond_to? :get_association @get_association = ::Gapic::Config::Method.new get_association_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config get_rule_config = parent_rpcs.get_rule if parent_rpcs.respond_to? :get_rule @get_rule = ::Gapic::Config::Method.new get_rule_config insert_config = parent_rpcs.insert if parent_rpcs.respond_to? :insert @insert = ::Gapic::Config::Method.new insert_config list_config = parent_rpcs.list if parent_rpcs.respond_to? :list @list = ::Gapic::Config::Method.new list_config list_associations_config = parent_rpcs.list_associations if parent_rpcs.respond_to? :list_associations @list_associations = ::Gapic::Config::Method.new list_associations_config move_config = parent_rpcs.move if parent_rpcs.respond_to? :move @move = ::Gapic::Config::Method.new move_config patch_config = parent_rpcs.patch if parent_rpcs.respond_to? :patch @patch = ::Gapic::Config::Method.new patch_config patch_rule_config = parent_rpcs.patch_rule if parent_rpcs.respond_to? :patch_rule @patch_rule = ::Gapic::Config::Method.new patch_rule_config remove_association_config = parent_rpcs.remove_association if parent_rpcs.respond_to? :remove_association @remove_association = ::Gapic::Config::Method.new remove_association_config remove_rule_config = parent_rpcs.remove_rule if parent_rpcs.respond_to? :remove_rule @remove_rule = ::Gapic::Config::Method.new remove_rule_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional REST headers to be sent with the call.
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 |
# File 'lib/google/cloud/compute/v1/firewall_policies/rest/client.rb', line 1473 class Configuration extend ::Gapic::Config config_attr :endpoint, "compute.googleapis.com", ::String config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the FirewallPolicies API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # # there is one other field (`retry_policy`) that can be set # but is currently not supported for REST Gapic libraries. # class Rpcs ## # RPC-specific configuration for `add_association` # @return [::Gapic::Config::Method] # attr_reader :add_association ## # RPC-specific configuration for `add_rule` # @return [::Gapic::Config::Method] # attr_reader :add_rule ## # RPC-specific configuration for `clone_rules` # @return [::Gapic::Config::Method] # attr_reader :clone_rules ## # RPC-specific configuration for `delete` # @return [::Gapic::Config::Method] # attr_reader :delete ## # RPC-specific configuration for `get` # @return [::Gapic::Config::Method] # attr_reader :get ## # RPC-specific configuration for `get_association` # @return [::Gapic::Config::Method] # attr_reader :get_association ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `get_rule` # @return [::Gapic::Config::Method] # attr_reader :get_rule ## # RPC-specific configuration for `insert` # @return [::Gapic::Config::Method] # attr_reader :insert ## # RPC-specific configuration for `list` # @return [::Gapic::Config::Method] # attr_reader :list ## # RPC-specific configuration for `list_associations` # @return [::Gapic::Config::Method] # attr_reader :list_associations ## # RPC-specific configuration for `move` # @return [::Gapic::Config::Method] # attr_reader :move ## # RPC-specific configuration for `patch` # @return [::Gapic::Config::Method] # attr_reader :patch ## # RPC-specific configuration for `patch_rule` # @return [::Gapic::Config::Method] # attr_reader :patch_rule ## # RPC-specific configuration for `remove_association` # @return [::Gapic::Config::Method] # attr_reader :remove_association ## # RPC-specific configuration for `remove_rule` # @return [::Gapic::Config::Method] # attr_reader :remove_rule ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil add_association_config = parent_rpcs.add_association if parent_rpcs.respond_to? :add_association @add_association = ::Gapic::Config::Method.new add_association_config add_rule_config = parent_rpcs.add_rule if parent_rpcs.respond_to? :add_rule @add_rule = ::Gapic::Config::Method.new add_rule_config clone_rules_config = parent_rpcs.clone_rules if parent_rpcs.respond_to? :clone_rules @clone_rules = ::Gapic::Config::Method.new clone_rules_config delete_config = parent_rpcs.delete if parent_rpcs.respond_to? :delete @delete = ::Gapic::Config::Method.new delete_config get_config = parent_rpcs.get if parent_rpcs.respond_to? :get @get = ::Gapic::Config::Method.new get_config get_association_config = parent_rpcs.get_association if parent_rpcs.respond_to? :get_association @get_association = ::Gapic::Config::Method.new get_association_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config get_rule_config = parent_rpcs.get_rule if parent_rpcs.respond_to? :get_rule @get_rule = ::Gapic::Config::Method.new get_rule_config insert_config = parent_rpcs.insert if parent_rpcs.respond_to? :insert @insert = ::Gapic::Config::Method.new insert_config list_config = parent_rpcs.list if parent_rpcs.respond_to? :list @list = ::Gapic::Config::Method.new list_config list_associations_config = parent_rpcs.list_associations if parent_rpcs.respond_to? :list_associations @list_associations = ::Gapic::Config::Method.new list_associations_config move_config = parent_rpcs.move if parent_rpcs.respond_to? :move @move = ::Gapic::Config::Method.new move_config patch_config = parent_rpcs.patch if parent_rpcs.respond_to? :patch @patch = ::Gapic::Config::Method.new patch_config patch_rule_config = parent_rpcs.patch_rule if parent_rpcs.respond_to? :patch_rule @patch_rule = ::Gapic::Config::Method.new patch_rule_config remove_association_config = parent_rpcs.remove_association if parent_rpcs.respond_to? :remove_association @remove_association = ::Gapic::Config::Method.new remove_association_config remove_rule_config = parent_rpcs.remove_rule if parent_rpcs.respond_to? :remove_rule @remove_rule = ::Gapic::Config::Method.new remove_rule_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#scope ⇒ ::Array<::String>
The OAuth scopes
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 |
# File 'lib/google/cloud/compute/v1/firewall_policies/rest/client.rb', line 1473 class Configuration extend ::Gapic::Config config_attr :endpoint, "compute.googleapis.com", ::String config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the FirewallPolicies API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # # there is one other field (`retry_policy`) that can be set # but is currently not supported for REST Gapic libraries. # class Rpcs ## # RPC-specific configuration for `add_association` # @return [::Gapic::Config::Method] # attr_reader :add_association ## # RPC-specific configuration for `add_rule` # @return [::Gapic::Config::Method] # attr_reader :add_rule ## # RPC-specific configuration for `clone_rules` # @return [::Gapic::Config::Method] # attr_reader :clone_rules ## # RPC-specific configuration for `delete` # @return [::Gapic::Config::Method] # attr_reader :delete ## # RPC-specific configuration for `get` # @return [::Gapic::Config::Method] # attr_reader :get ## # RPC-specific configuration for `get_association` # @return [::Gapic::Config::Method] # attr_reader :get_association ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `get_rule` # @return [::Gapic::Config::Method] # attr_reader :get_rule ## # RPC-specific configuration for `insert` # @return [::Gapic::Config::Method] # attr_reader :insert ## # RPC-specific configuration for `list` # @return [::Gapic::Config::Method] # attr_reader :list ## # RPC-specific configuration for `list_associations` # @return [::Gapic::Config::Method] # attr_reader :list_associations ## # RPC-specific configuration for `move` # @return [::Gapic::Config::Method] # attr_reader :move ## # RPC-specific configuration for `patch` # @return [::Gapic::Config::Method] # attr_reader :patch ## # RPC-specific configuration for `patch_rule` # @return [::Gapic::Config::Method] # attr_reader :patch_rule ## # RPC-specific configuration for `remove_association` # @return [::Gapic::Config::Method] # attr_reader :remove_association ## # RPC-specific configuration for `remove_rule` # @return [::Gapic::Config::Method] # attr_reader :remove_rule ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil add_association_config = parent_rpcs.add_association if parent_rpcs.respond_to? :add_association @add_association = ::Gapic::Config::Method.new add_association_config add_rule_config = parent_rpcs.add_rule if parent_rpcs.respond_to? :add_rule @add_rule = ::Gapic::Config::Method.new add_rule_config clone_rules_config = parent_rpcs.clone_rules if parent_rpcs.respond_to? :clone_rules @clone_rules = ::Gapic::Config::Method.new clone_rules_config delete_config = parent_rpcs.delete if parent_rpcs.respond_to? :delete @delete = ::Gapic::Config::Method.new delete_config get_config = parent_rpcs.get if parent_rpcs.respond_to? :get @get = ::Gapic::Config::Method.new get_config get_association_config = parent_rpcs.get_association if parent_rpcs.respond_to? :get_association @get_association = ::Gapic::Config::Method.new get_association_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config get_rule_config = parent_rpcs.get_rule if parent_rpcs.respond_to? :get_rule @get_rule = ::Gapic::Config::Method.new get_rule_config insert_config = parent_rpcs.insert if parent_rpcs.respond_to? :insert @insert = ::Gapic::Config::Method.new insert_config list_config = parent_rpcs.list if parent_rpcs.respond_to? :list @list = ::Gapic::Config::Method.new list_config list_associations_config = parent_rpcs.list_associations if parent_rpcs.respond_to? :list_associations @list_associations = ::Gapic::Config::Method.new list_associations_config move_config = parent_rpcs.move if parent_rpcs.respond_to? :move @move = ::Gapic::Config::Method.new move_config patch_config = parent_rpcs.patch if parent_rpcs.respond_to? :patch @patch = ::Gapic::Config::Method.new patch_config patch_rule_config = parent_rpcs.patch_rule if parent_rpcs.respond_to? :patch_rule @patch_rule = ::Gapic::Config::Method.new patch_rule_config remove_association_config = parent_rpcs.remove_association if parent_rpcs.respond_to? :remove_association @remove_association = ::Gapic::Config::Method.new remove_association_config remove_rule_config = parent_rpcs.remove_rule if parent_rpcs.respond_to? :remove_rule @remove_rule = ::Gapic::Config::Method.new remove_rule_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#timeout ⇒ ::Numeric
The call timeout in seconds.
1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 |
# File 'lib/google/cloud/compute/v1/firewall_policies/rest/client.rb', line 1473 class Configuration extend ::Gapic::Config config_attr :endpoint, "compute.googleapis.com", ::String config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the FirewallPolicies API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # # there is one other field (`retry_policy`) that can be set # but is currently not supported for REST Gapic libraries. # class Rpcs ## # RPC-specific configuration for `add_association` # @return [::Gapic::Config::Method] # attr_reader :add_association ## # RPC-specific configuration for `add_rule` # @return [::Gapic::Config::Method] # attr_reader :add_rule ## # RPC-specific configuration for `clone_rules` # @return [::Gapic::Config::Method] # attr_reader :clone_rules ## # RPC-specific configuration for `delete` # @return [::Gapic::Config::Method] # attr_reader :delete ## # RPC-specific configuration for `get` # @return [::Gapic::Config::Method] # attr_reader :get ## # RPC-specific configuration for `get_association` # @return [::Gapic::Config::Method] # attr_reader :get_association ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `get_rule` # @return [::Gapic::Config::Method] # attr_reader :get_rule ## # RPC-specific configuration for `insert` # @return [::Gapic::Config::Method] # attr_reader :insert ## # RPC-specific configuration for `list` # @return [::Gapic::Config::Method] # attr_reader :list ## # RPC-specific configuration for `list_associations` # @return [::Gapic::Config::Method] # attr_reader :list_associations ## # RPC-specific configuration for `move` # @return [::Gapic::Config::Method] # attr_reader :move ## # RPC-specific configuration for `patch` # @return [::Gapic::Config::Method] # attr_reader :patch ## # RPC-specific configuration for `patch_rule` # @return [::Gapic::Config::Method] # attr_reader :patch_rule ## # RPC-specific configuration for `remove_association` # @return [::Gapic::Config::Method] # attr_reader :remove_association ## # RPC-specific configuration for `remove_rule` # @return [::Gapic::Config::Method] # attr_reader :remove_rule ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil add_association_config = parent_rpcs.add_association if parent_rpcs.respond_to? :add_association @add_association = ::Gapic::Config::Method.new add_association_config add_rule_config = parent_rpcs.add_rule if parent_rpcs.respond_to? :add_rule @add_rule = ::Gapic::Config::Method.new add_rule_config clone_rules_config = parent_rpcs.clone_rules if parent_rpcs.respond_to? :clone_rules @clone_rules = ::Gapic::Config::Method.new clone_rules_config delete_config = parent_rpcs.delete if parent_rpcs.respond_to? :delete @delete = ::Gapic::Config::Method.new delete_config get_config = parent_rpcs.get if parent_rpcs.respond_to? :get @get = ::Gapic::Config::Method.new get_config get_association_config = parent_rpcs.get_association if parent_rpcs.respond_to? :get_association @get_association = ::Gapic::Config::Method.new get_association_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config get_rule_config = parent_rpcs.get_rule if parent_rpcs.respond_to? :get_rule @get_rule = ::Gapic::Config::Method.new get_rule_config insert_config = parent_rpcs.insert if parent_rpcs.respond_to? :insert @insert = ::Gapic::Config::Method.new insert_config list_config = parent_rpcs.list if parent_rpcs.respond_to? :list @list = ::Gapic::Config::Method.new list_config list_associations_config = parent_rpcs.list_associations if parent_rpcs.respond_to? :list_associations @list_associations = ::Gapic::Config::Method.new list_associations_config move_config = parent_rpcs.move if parent_rpcs.respond_to? :move @move = ::Gapic::Config::Method.new move_config patch_config = parent_rpcs.patch if parent_rpcs.respond_to? :patch @patch = ::Gapic::Config::Method.new patch_config patch_rule_config = parent_rpcs.patch_rule if parent_rpcs.respond_to? :patch_rule @patch_rule = ::Gapic::Config::Method.new patch_rule_config remove_association_config = parent_rpcs.remove_association if parent_rpcs.respond_to? :remove_association @remove_association = ::Gapic::Config::Method.new remove_association_config remove_rule_config = parent_rpcs.remove_rule if parent_rpcs.respond_to? :remove_rule @remove_rule = ::Gapic::Config::Method.new remove_rule_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
Instance Method Details
#rpcs ⇒ Rpcs
Configurations for individual RPCs
1498 1499 1500 1501 1502 1503 1504 |
# File 'lib/google/cloud/compute/v1/firewall_policies/rest/client.rb', line 1498 def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end |