Class Feature

  • All Implemented Interfaces:
    FeatureOrBuilder, com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Serializable

    public final class Feature
    extends com.google.protobuf.GeneratedMessageV3
    implements FeatureOrBuilder
     Feature represents the settings and status of any Hub Feature.
     
    Protobuf type google.cloud.gkehub.v1.Feature
    See Also:
    Serialized Form
    • Method Detail

      • newInstance

        protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        Overrides:
        newInstance in class com.google.protobuf.GeneratedMessageV3
      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetMapField

        protected com.google.protobuf.MapField internalGetMapField​(int number)
        Overrides:
        internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      • getName

        public String getName()
         Output only. The full, unique name of this Feature resource in the format
         `projects/*/locations/*/features/*`.
         
        string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getName in interface FeatureOrBuilder
        Returns:
        The name.
      • getNameBytes

        public com.google.protobuf.ByteString getNameBytes()
         Output only. The full, unique name of this Feature resource in the format
         `projects/*/locations/*/features/*`.
         
        string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getNameBytes in interface FeatureOrBuilder
        Returns:
        The bytes for name.
      • containsLabels

        public boolean containsLabels​(String key)
         GCP labels for this Feature.
         
        map<string, string> labels = 2;
        Specified by:
        containsLabels in interface FeatureOrBuilder
      • hasResourceState

        public boolean hasResourceState()
         Output only. State of the Feature resource itself.
         
        .google.cloud.gkehub.v1.FeatureResourceState resource_state = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        hasResourceState in interface FeatureOrBuilder
        Returns:
        Whether the resourceState field is set.
      • getResourceState

        public FeatureResourceState getResourceState()
         Output only. State of the Feature resource itself.
         
        .google.cloud.gkehub.v1.FeatureResourceState resource_state = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getResourceState in interface FeatureOrBuilder
        Returns:
        The resourceState.
      • hasSpec

        public boolean hasSpec()
         Optional. Hub-wide Feature configuration. If this Feature does not support any
         Hub-wide configuration, this field may be unused.
         
        .google.cloud.gkehub.v1.CommonFeatureSpec spec = 4 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        hasSpec in interface FeatureOrBuilder
        Returns:
        Whether the spec field is set.
      • getSpec

        public CommonFeatureSpec getSpec()
         Optional. Hub-wide Feature configuration. If this Feature does not support any
         Hub-wide configuration, this field may be unused.
         
        .google.cloud.gkehub.v1.CommonFeatureSpec spec = 4 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getSpec in interface FeatureOrBuilder
        Returns:
        The spec.
      • getSpecOrBuilder

        public CommonFeatureSpecOrBuilder getSpecOrBuilder()
         Optional. Hub-wide Feature configuration. If this Feature does not support any
         Hub-wide configuration, this field may be unused.
         
        .google.cloud.gkehub.v1.CommonFeatureSpec spec = 4 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getSpecOrBuilder in interface FeatureOrBuilder
      • getMembershipSpecsCount

        public int getMembershipSpecsCount()
        Description copied from interface: FeatureOrBuilder
         Optional. Membership-specific configuration for this Feature. If this Feature does
         not support any per-Membership configuration, this field may be unused.
        
         The keys indicate which Membership the configuration is for, in the form:
        
             projects/{p}/locations/{l}/memberships/{m}
        
         Where {p} is the project, {l} is a valid location and {m} is a valid
         Membership in this project at that location. {p} WILL match the Feature's
         project.
        
         {p} will always be returned as the project number, but the project ID is
         also accepted during input. If the same Membership is specified in the map
         twice (using the project ID form, and the project number form), exactly
         ONE of the entries will be saved, with no guarantees as to which. For this
         reason, it is recommended the same format be used for all entries when
         mutating a Feature.
         
        map<string, .google.cloud.gkehub.v1.MembershipFeatureSpec> membership_specs = 5 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getMembershipSpecsCount in interface FeatureOrBuilder
      • containsMembershipSpecs

        public boolean containsMembershipSpecs​(String key)
         Optional. Membership-specific configuration for this Feature. If this Feature does
         not support any per-Membership configuration, this field may be unused.
        
         The keys indicate which Membership the configuration is for, in the form:
        
             projects/{p}/locations/{l}/memberships/{m}
        
         Where {p} is the project, {l} is a valid location and {m} is a valid
         Membership in this project at that location. {p} WILL match the Feature's
         project.
        
         {p} will always be returned as the project number, but the project ID is
         also accepted during input. If the same Membership is specified in the map
         twice (using the project ID form, and the project number form), exactly
         ONE of the entries will be saved, with no guarantees as to which. For this
         reason, it is recommended the same format be used for all entries when
         mutating a Feature.
         
        map<string, .google.cloud.gkehub.v1.MembershipFeatureSpec> membership_specs = 5 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        containsMembershipSpecs in interface FeatureOrBuilder
      • getMembershipSpecsMap

        public Map<String,​MembershipFeatureSpec> getMembershipSpecsMap()
         Optional. Membership-specific configuration for this Feature. If this Feature does
         not support any per-Membership configuration, this field may be unused.
        
         The keys indicate which Membership the configuration is for, in the form:
        
             projects/{p}/locations/{l}/memberships/{m}
        
         Where {p} is the project, {l} is a valid location and {m} is a valid
         Membership in this project at that location. {p} WILL match the Feature's
         project.
        
         {p} will always be returned as the project number, but the project ID is
         also accepted during input. If the same Membership is specified in the map
         twice (using the project ID form, and the project number form), exactly
         ONE of the entries will be saved, with no guarantees as to which. For this
         reason, it is recommended the same format be used for all entries when
         mutating a Feature.
         
        map<string, .google.cloud.gkehub.v1.MembershipFeatureSpec> membership_specs = 5 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getMembershipSpecsMap in interface FeatureOrBuilder
      • getMembershipSpecsOrDefault

        public MembershipFeatureSpec getMembershipSpecsOrDefault​(String key,
                                                                 MembershipFeatureSpec defaultValue)
         Optional. Membership-specific configuration for this Feature. If this Feature does
         not support any per-Membership configuration, this field may be unused.
        
         The keys indicate which Membership the configuration is for, in the form:
        
             projects/{p}/locations/{l}/memberships/{m}
        
         Where {p} is the project, {l} is a valid location and {m} is a valid
         Membership in this project at that location. {p} WILL match the Feature's
         project.
        
         {p} will always be returned as the project number, but the project ID is
         also accepted during input. If the same Membership is specified in the map
         twice (using the project ID form, and the project number form), exactly
         ONE of the entries will be saved, with no guarantees as to which. For this
         reason, it is recommended the same format be used for all entries when
         mutating a Feature.
         
        map<string, .google.cloud.gkehub.v1.MembershipFeatureSpec> membership_specs = 5 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getMembershipSpecsOrDefault in interface FeatureOrBuilder
      • getMembershipSpecsOrThrow

        public MembershipFeatureSpec getMembershipSpecsOrThrow​(String key)
         Optional. Membership-specific configuration for this Feature. If this Feature does
         not support any per-Membership configuration, this field may be unused.
        
         The keys indicate which Membership the configuration is for, in the form:
        
             projects/{p}/locations/{l}/memberships/{m}
        
         Where {p} is the project, {l} is a valid location and {m} is a valid
         Membership in this project at that location. {p} WILL match the Feature's
         project.
        
         {p} will always be returned as the project number, but the project ID is
         also accepted during input. If the same Membership is specified in the map
         twice (using the project ID form, and the project number form), exactly
         ONE of the entries will be saved, with no guarantees as to which. For this
         reason, it is recommended the same format be used for all entries when
         mutating a Feature.
         
        map<string, .google.cloud.gkehub.v1.MembershipFeatureSpec> membership_specs = 5 [(.google.api.field_behavior) = OPTIONAL];
        Specified by:
        getMembershipSpecsOrThrow in interface FeatureOrBuilder
      • hasState

        public boolean hasState()
         Output only. The Hub-wide Feature state.
         
        .google.cloud.gkehub.v1.CommonFeatureState state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        hasState in interface FeatureOrBuilder
        Returns:
        Whether the state field is set.
      • getState

        public CommonFeatureState getState()
         Output only. The Hub-wide Feature state.
         
        .google.cloud.gkehub.v1.CommonFeatureState state = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getState in interface FeatureOrBuilder
        Returns:
        The state.
      • getMembershipStatesCount

        public int getMembershipStatesCount()
        Description copied from interface: FeatureOrBuilder
         Output only. Membership-specific Feature status. If this Feature does
         report any per-Membership status, this field may be unused.
        
         The keys indicate which Membership the state is for, in the form:
        
             projects/{p}/locations/{l}/memberships/{m}
        
         Where {p} is the project number, {l} is a valid location and {m} is a valid
         Membership in this project at that location. {p} MUST match the Feature's
         project number.
         
        map<string, .google.cloud.gkehub.v1.MembershipFeatureState> membership_states = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getMembershipStatesCount in interface FeatureOrBuilder
      • containsMembershipStates

        public boolean containsMembershipStates​(String key)
         Output only. Membership-specific Feature status. If this Feature does
         report any per-Membership status, this field may be unused.
        
         The keys indicate which Membership the state is for, in the form:
        
             projects/{p}/locations/{l}/memberships/{m}
        
         Where {p} is the project number, {l} is a valid location and {m} is a valid
         Membership in this project at that location. {p} MUST match the Feature's
         project number.
         
        map<string, .google.cloud.gkehub.v1.MembershipFeatureState> membership_states = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        containsMembershipStates in interface FeatureOrBuilder
      • getMembershipStatesMap

        public Map<String,​MembershipFeatureState> getMembershipStatesMap()
         Output only. Membership-specific Feature status. If this Feature does
         report any per-Membership status, this field may be unused.
        
         The keys indicate which Membership the state is for, in the form:
        
             projects/{p}/locations/{l}/memberships/{m}
        
         Where {p} is the project number, {l} is a valid location and {m} is a valid
         Membership in this project at that location. {p} MUST match the Feature's
         project number.
         
        map<string, .google.cloud.gkehub.v1.MembershipFeatureState> membership_states = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getMembershipStatesMap in interface FeatureOrBuilder
      • getMembershipStatesOrDefault

        public MembershipFeatureState getMembershipStatesOrDefault​(String key,
                                                                   MembershipFeatureState defaultValue)
         Output only. Membership-specific Feature status. If this Feature does
         report any per-Membership status, this field may be unused.
        
         The keys indicate which Membership the state is for, in the form:
        
             projects/{p}/locations/{l}/memberships/{m}
        
         Where {p} is the project number, {l} is a valid location and {m} is a valid
         Membership in this project at that location. {p} MUST match the Feature's
         project number.
         
        map<string, .google.cloud.gkehub.v1.MembershipFeatureState> membership_states = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getMembershipStatesOrDefault in interface FeatureOrBuilder
      • getMembershipStatesOrThrow

        public MembershipFeatureState getMembershipStatesOrThrow​(String key)
         Output only. Membership-specific Feature status. If this Feature does
         report any per-Membership status, this field may be unused.
        
         The keys indicate which Membership the state is for, in the form:
        
             projects/{p}/locations/{l}/memberships/{m}
        
         Where {p} is the project number, {l} is a valid location and {m} is a valid
         Membership in this project at that location. {p} MUST match the Feature's
         project number.
         
        map<string, .google.cloud.gkehub.v1.MembershipFeatureState> membership_states = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getMembershipStatesOrThrow in interface FeatureOrBuilder
      • hasCreateTime

        public boolean hasCreateTime()
         Output only. When the Feature resource was created.
         
        .google.protobuf.Timestamp create_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        hasCreateTime in interface FeatureOrBuilder
        Returns:
        Whether the createTime field is set.
      • getCreateTime

        public com.google.protobuf.Timestamp getCreateTime()
         Output only. When the Feature resource was created.
         
        .google.protobuf.Timestamp create_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getCreateTime in interface FeatureOrBuilder
        Returns:
        The createTime.
      • getCreateTimeOrBuilder

        public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
         Output only. When the Feature resource was created.
         
        .google.protobuf.Timestamp create_time = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getCreateTimeOrBuilder in interface FeatureOrBuilder
      • hasUpdateTime

        public boolean hasUpdateTime()
         Output only. When the Feature resource was last updated.
         
        .google.protobuf.Timestamp update_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        hasUpdateTime in interface FeatureOrBuilder
        Returns:
        Whether the updateTime field is set.
      • getUpdateTime

        public com.google.protobuf.Timestamp getUpdateTime()
         Output only. When the Feature resource was last updated.
         
        .google.protobuf.Timestamp update_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getUpdateTime in interface FeatureOrBuilder
        Returns:
        The updateTime.
      • getUpdateTimeOrBuilder

        public com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
         Output only. When the Feature resource was last updated.
         
        .google.protobuf.Timestamp update_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getUpdateTimeOrBuilder in interface FeatureOrBuilder
      • hasDeleteTime

        public boolean hasDeleteTime()
         Output only. When the Feature resource was deleted.
         
        .google.protobuf.Timestamp delete_time = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        hasDeleteTime in interface FeatureOrBuilder
        Returns:
        Whether the deleteTime field is set.
      • getDeleteTime

        public com.google.protobuf.Timestamp getDeleteTime()
         Output only. When the Feature resource was deleted.
         
        .google.protobuf.Timestamp delete_time = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getDeleteTime in interface FeatureOrBuilder
        Returns:
        The deleteTime.
      • getDeleteTimeOrBuilder

        public com.google.protobuf.TimestampOrBuilder getDeleteTimeOrBuilder()
         Output only. When the Feature resource was deleted.
         
        .google.protobuf.Timestamp delete_time = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Specified by:
        getDeleteTimeOrBuilder in interface FeatureOrBuilder
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3
      • writeTo

        public void writeTo​(com.google.protobuf.CodedOutputStream output)
                     throws IOException
        Specified by:
        writeTo in interface com.google.protobuf.MessageLite
        Overrides:
        writeTo in class com.google.protobuf.GeneratedMessageV3
        Throws:
        IOException
      • getSerializedSize

        public int getSerializedSize()
        Specified by:
        getSerializedSize in interface com.google.protobuf.MessageLite
        Overrides:
        getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      • equals

        public boolean equals​(Object obj)
        Specified by:
        equals in interface com.google.protobuf.Message
        Overrides:
        equals in class com.google.protobuf.AbstractMessage
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in interface com.google.protobuf.Message
        Overrides:
        hashCode in class com.google.protobuf.AbstractMessage
      • parseFrom

        public static Feature parseFrom​(ByteBuffer data)
                                 throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Feature parseFrom​(ByteBuffer data,
                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                 throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Feature parseFrom​(com.google.protobuf.ByteString data)
                                 throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Feature parseFrom​(com.google.protobuf.ByteString data,
                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                 throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Feature parseFrom​(byte[] data)
                                 throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Feature parseFrom​(byte[] data,
                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                 throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static Feature parseFrom​(com.google.protobuf.CodedInputStream input,
                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                 throws IOException
        Throws:
        IOException
      • newBuilderForType

        public Feature.Builder newBuilderForType()
        Specified by:
        newBuilderForType in interface com.google.protobuf.Message
        Specified by:
        newBuilderForType in interface com.google.protobuf.MessageLite
      • toBuilder

        public Feature.Builder toBuilder()
        Specified by:
        toBuilder in interface com.google.protobuf.Message
        Specified by:
        toBuilder in interface com.google.protobuf.MessageLite
      • newBuilderForType

        protected Feature.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
        Specified by:
        newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      • getDefaultInstance

        public static Feature getDefaultInstance()
      • parser

        public static com.google.protobuf.Parser<Feature> parser()
      • getParserForType

        public com.google.protobuf.Parser<Feature> getParserForType()
        Specified by:
        getParserForType in interface com.google.protobuf.Message
        Specified by:
        getParserForType in interface com.google.protobuf.MessageLite
        Overrides:
        getParserForType in class com.google.protobuf.GeneratedMessageV3
      • getDefaultInstanceForType

        public Feature getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder