Class: Google::Apis::ContactcenteraiplatformV1alpha1::PrivateAccess
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContactcenteraiplatformV1alpha1::PrivateAccess
 
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb,
 lib/google/apis/contactcenteraiplatform_v1alpha1/representations.rb,
 lib/google/apis/contactcenteraiplatform_v1alpha1/representations.rb
Overview
Defines ingress and egress private traffic settings for CCAIP instances.
Instance Attribute Summary collapse
- 
  
    
      #egress_settings  ⇒ Array<Google::Apis::ContactcenteraiplatformV1alpha1::Component> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of egress components that should not be accessed via the Internet. 
- 
  
    
      #ingress_settings  ⇒ Array<Google::Apis::ContactcenteraiplatformV1alpha1::Component> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of ingress components that should not be accessed via the Internet. 
- 
  
    
      #psc_setting  ⇒ Google::Apis::ContactcenteraiplatformV1alpha1::PscSetting 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Private service connect settings. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PrivateAccess 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of PrivateAccess. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ PrivateAccess
Returns a new instance of PrivateAccess.
| 679 680 681 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 679 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#egress_settings ⇒ Array<Google::Apis::ContactcenteraiplatformV1alpha1::Component>
List of egress components that should not be accessed via the Internet. For
more information see go/ccaip-private-path-v2.
Corresponds to the JSON property egressSettings
| 666 667 668 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 666 def egress_settings @egress_settings end | 
#ingress_settings ⇒ Array<Google::Apis::ContactcenteraiplatformV1alpha1::Component>
List of ingress components that should not be accessed via the Internet. For
more information see go/ccaip-private-path-v2.
Corresponds to the JSON property ingressSettings
| 672 673 674 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 672 def ingress_settings @ingress_settings end | 
#psc_setting ⇒ Google::Apis::ContactcenteraiplatformV1alpha1::PscSetting
Private service connect settings.
Corresponds to the JSON property pscSetting
| 677 678 679 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 677 def psc_setting @psc_setting end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 684 685 686 687 688 | # File 'lib/google/apis/contactcenteraiplatform_v1alpha1/classes.rb', line 684 def update!(**args) @egress_settings = args[:egress_settings] if args.key?(:egress_settings) @ingress_settings = args[:ingress_settings] if args.key?(:ingress_settings) @psc_setting = args[:psc_setting] if args.key?(:psc_setting) end |