Class: Google::Apis::ServicenetworkingV1::AddRolesRequest
- Inherits:
-
Object
- Object
- Google::Apis::ServicenetworkingV1::AddRolesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicenetworking_v1/classes.rb,
generated/google/apis/servicenetworking_v1/representations.rb,
generated/google/apis/servicenetworking_v1/representations.rb
Overview
Request for AddRoles to allow Service Producers to add roles in the shared VPC host project for them to use.
Instance Attribute Summary collapse
-
#consumer_network ⇒ String
Required.
-
#policy_binding ⇒ Array<Google::Apis::ServicenetworkingV1::PolicyBinding>
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AddRolesRequest
constructor
A new instance of AddRolesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AddRolesRequest
Returns a new instance of AddRolesRequest.
183 184 185 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 183 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consumer_network ⇒ String
Required. The network that the consumer is using to connect with services.
Must be in the form of projects/project
/global/networks/network
project
is a project number, as in '12345' network
is a network name.
Corresponds to the JSON property consumerNetwork
176 177 178 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 176 def consumer_network @consumer_network end |
#policy_binding ⇒ Array<Google::Apis::ServicenetworkingV1::PolicyBinding>
Required. List of policy bindings to add to shared VPC host project.
Corresponds to the JSON property policyBinding
181 182 183 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 181 def policy_binding @policy_binding end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
188 189 190 191 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 188 def update!(**args) @consumer_network = args[:consumer_network] if args.key?(:consumer_network) @policy_binding = args[:policy_binding] if args.key?(:policy_binding) end |