Class: Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroup
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroup
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networksecurity_v1beta1/classes.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb
Overview
Message describing InterceptDeploymentGroup object NEXT ID: 10
Instance Attribute Summary collapse
-
#connected_endpoint_groups ⇒ Array<Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroupConnectedEndpointGroup>
Output only.
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Immutable.
-
#network ⇒ String
Required.
-
#reconciling ⇒ Boolean
(also: #reconciling?)
Output only.
-
#state ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterceptDeploymentGroup
constructor
A new instance of InterceptDeploymentGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterceptDeploymentGroup
Returns a new instance of InterceptDeploymentGroup.
1880 1881 1882 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1880 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connected_endpoint_groups ⇒ Array<Google::Apis::NetworksecurityV1beta1::InterceptDeploymentGroupConnectedEndpointGroup>
Output only. The list of Intercept Endpoint Groups that are connected to this
resource.
Corresponds to the JSON property connectedEndpointGroups
1834 1835 1836 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1834 def connected_endpoint_groups @connected_endpoint_groups end |
#create_time ⇒ String
Output only. [Output only] Create time stamp
Corresponds to the JSON property createTime
1839 1840 1841 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1839 def create_time @create_time end |
#description ⇒ String
Optional. User-provided description of the deployment group. Used as
additional context for the deployment group.
Corresponds to the JSON property description
1845 1846 1847 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1845 def description @description end |
#labels ⇒ Hash<String,String>
Optional. Labels as key value pairs
Corresponds to the JSON property labels
1850 1851 1852 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1850 def labels @labels end |
#name ⇒ String
Immutable. Identifier. Then name of the InterceptDeploymentGroup.
Corresponds to the JSON property name
1855 1856 1857 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1855 def name @name end |
#network ⇒ String
Required. Immutable. The network that is being used for the deployment. Format
is: projects/project/global/networks/network.
Corresponds to the JSON property network
1861 1862 1863 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1861 def network @network end |
#reconciling ⇒ Boolean Also known as: reconciling?
Output only. Whether reconciling is in progress, recommended per https://
google.aip.dev/128.
Corresponds to the JSON property reconciling
1867 1868 1869 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1867 def reconciling @reconciling end |
#state ⇒ String
Output only. Current state of the deployment group.
Corresponds to the JSON property state
1873 1874 1875 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1873 def state @state end |
#update_time ⇒ String
Output only. [Output only] Update time stamp
Corresponds to the JSON property updateTime
1878 1879 1880 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1878 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1885 def update!(**args) @connected_endpoint_groups = args[:connected_endpoint_groups] if args.key?(:connected_endpoint_groups) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @network = args[:network] if args.key?(:network) @reconciling = args[:reconciling] if args.key?(:reconciling) @state = args[:state] if args.key?(:state) @update_time = args[:update_time] if args.key?(:update_time) end |